blob: 28fee323b82fbfb38a30df68cdaa2068d05a8e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Prakash Shetty (Crux) <ps@gnuos.org>
# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.8.ebuild,v 1.3 2001/08/11 09:26:12 hallski Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="A Client that groks URLs"
SRC_URI="http://curl.haxx.se/download/${A}"
HOMEPAGE="http://curl.haxx.de"
DEPEND=">=sys-libs/glibc-2.1.3
>=sys-libs/pam-0.75
>=dev-libs/openssl-0.9.6a"
src_compile() {
cd ${S}
try ./configure --prefix=/usr --with-ssl
try make
}
src_install () {
cd ${S}
try make install DESTDIR=${D}
dodoc LEGAL CHANGES README
dodoc docs/FEATURES docs/INSTALL docs/INTERNALS docs/LIBCURL
dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}
|