diff options
author | 2002-11-19 19:43:31 +0000 | |
---|---|---|
committer | 2002-11-19 19:43:31 +0000 | |
commit | da13149e34336c6402619cbe02640975f69dfee5 (patch) | |
tree | 66f328858c996a99a633df0f1f8eb62386003830 /net-ftp/curl | |
parent | 3.1 ebuild (diff) | |
download | historical-da13149e34336c6402619cbe02640975f69dfee5.tar.gz historical-da13149e34336c6402619cbe02640975f69dfee5.tar.bz2 historical-da13149e34336c6402619cbe02640975f69dfee5.zip |
version bump + support for more USE flags
Diffstat (limited to 'net-ftp/curl')
-rw-r--r-- | net-ftp/curl/ChangeLog | 9 | ||||
-rw-r--r-- | net-ftp/curl/curl-7.10.2.ebuild | 34 | ||||
-rw-r--r-- | net-ftp/curl/curl-7.9.7.ebuild | 30 | ||||
-rw-r--r-- | net-ftp/curl/files/digest-curl-7.10.2 | 1 |
4 files changed, 53 insertions, 21 deletions
diff --git a/net-ftp/curl/ChangeLog b/net-ftp/curl/ChangeLog index ce333cba5b0a..e74516b1a529 100644 --- a/net-ftp/curl/ChangeLog +++ b/net-ftp/curl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-ftp/curl # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/ChangeLog,v 1.3 2002/08/06 18:15:29 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/ChangeLog,v 1.4 2002/11/19 19:43:31 vapier Exp $ + +*curl-7.10.2 (19 Nov 2002) + + 19 Nov 2002; Mike Frysinger <vapier@gentoo.org> : + Version bump + more USE flag support *curl-7.9.7 (17 May 2002) @@ -8,13 +13,11 @@ Added ppc to keywords 17 May 2002; Grant Goodyear <g2boojum@gentoo.org> : - Version bump. Seems to work better when compiled w/ gcc 3.0.4. *curl-7.9.3 (1 Feb 2002) 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - Added initial ChangeLog which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about diff --git a/net-ftp/curl/curl-7.10.2.ebuild b/net-ftp/curl/curl-7.10.2.ebuild new file mode 100644 index 000000000000..a05aa6680509 --- /dev/null +++ b/net-ftp/curl/curl-7.10.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.10.2.ebuild,v 1.1 2002/11/19 19:43:31 vapier Exp $ + +DESCRIPTION="A Client that groks URLs" +SRC_URI="http://curl.haxx.se/download/${P}.tar.gz" +HOMEPAGE="http://curl.haxx.se/" + +SLOT="0" +LICENSE="MPL X11" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" +IUSE="ssl pic ipv6 ldap" + +DEPEND=">=sys-libs/pam-0.75 + ssl? ( >=dev-libs/openssl-0.9.6a )" + +src_compile() { + local myconf="--with-gnu-ld --enable-http --enable-ftp --enable-gopher --enable-file \ + --enable-dict --enable-telnet --enable-nonblocking" + use ipv6 && myconf="${myconf} --enable-ipv6" + use ldap && myconf="${myconf} --enable-ldap" + use pic && myconf="${myconf} --with-pic" + use ssl && myconf="${myconf} --with-ssl" + + econf ${myconf} + emake || die +} + +src_install() { + 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 +} diff --git a/net-ftp/curl/curl-7.9.7.ebuild b/net-ftp/curl/curl-7.9.7.ebuild index 81d4bf504fab..ce717124620d 100644 --- a/net-ftp/curl/curl-7.9.7.ebuild +++ b/net-ftp/curl/curl-7.9.7.ebuild @@ -1,38 +1,32 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.9.7.ebuild,v 1.8 2002/10/05 05:39:18 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.9.7.ebuild,v 1.9 2002/11/19 19:43:31 vapier Exp $ -IUSE="ssl" - -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/pam-0.75 - ssl? ( >=dev-libs/openssl-0.9.6a )" - SLOT="0" LICENSE="MPL X11" KEYWORDS="x86 ppc sparc sparc64" +IUSE="ssl" -src_compile() { +DEPEND=">=sys-libs/pam-0.75 + ssl? ( >=dev-libs/openssl-0.9.6a )" +src_compile() { local myconf use ssl \ && myconf="--with-ssl" \ || myconf="--without-ssl" - cd ${S} - econf ${myconf} || die - emake || die - + econf ${myconf} + 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 +src_install() { + 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 } diff --git a/net-ftp/curl/files/digest-curl-7.10.2 b/net-ftp/curl/files/digest-curl-7.10.2 new file mode 100644 index 000000000000..89468dd4c75c --- /dev/null +++ b/net-ftp/curl/files/digest-curl-7.10.2 @@ -0,0 +1 @@ +MD5 ee4e35a371106b947a8bb7aecffa2689 curl-7.10.2.tar.gz 1010911 |