diff options
Diffstat (limited to 'net-ftp/curl/curl-7.9.7.ebuild')
-rw-r--r-- | net-ftp/curl/curl-7.9.7.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-ftp/curl/curl-7.9.7.ebuild b/net-ftp/curl/curl-7.9.7.ebuild new file mode 100644 index 000000000000..35f15e5b822d --- /dev/null +++ b/net-ftp/curl/curl-7.9.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.9.7.ebuild,v 1.1 2002/05/18 01:59:16 g2boojum Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A Client that groks URLs" +SRC_URI="http://curl.haxx.se/download/${P}.tar.gz" +HOMEPAGE="http://curl.haxx.se" + +DEPEND=">=sys-libs/glibc-2.1.3 >=sys-libs/pam-0.75 ssl? ( >=dev-libs/openssl-0.9.6a )" + +src_compile() { + local myconf + if [ "`use ssl`" ] + then + myconf="--with-ssl" + else + myconf="--without-ssl" + fi + cd ${S} + ./configure --prefix=/usr --mandir=/usr/share/man $myconf || die + emake || die + +} + +src_install () { + cd ${S} + make install DESTDIR=${D} || die + dodoc LEGAL CHANGES README + dodoc docs/FEATURES docs/INSTALL docs/INTERNALS docs/LIBCURL + dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE +} |