diff options
Diffstat (limited to 'net-ftp/curl/curl-7.10.5-r1.ebuild')
-rw-r--r-- | net-ftp/curl/curl-7.10.5-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/net-ftp/curl/curl-7.10.5-r1.ebuild b/net-ftp/curl/curl-7.10.5-r1.ebuild deleted file mode 100644 index 3deb60398bb9..000000000000 --- a/net-ftp/curl/curl-7.10.5-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2003 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.5-r1.ebuild,v 1.8 2003/12/09 23:38:57 liquidx Exp $ - -DESCRIPTION="A Client that groks URLs" -SRC_URI="http://curl.haxx.se/download/${P}.tar.bz2" -HOMEPAGE="http://curl.haxx.se/" - -SLOT="0" -LICENSE="MIT X11" -KEYWORDS="x86 ppc ~sparc ~alpha hppa amd64" -IUSE="ssl ipv6 ldap" - -DEPEND="ssl? ( >=dev-libs/openssl-0.9.6a ) - ldap? ( net-nds/openldap )" - -src_unpack() { - unpack ${A} - epatch ${FILESDIR}/${P}-badssl.patch -} - -src_compile() { - local myconf="--with-gnu-ld --enable-http - --enable-ftp --enable-gopher - --enable-file --enable-dict - --enable-telnet --enable-nonblocking" - - econf ${myconf} \ - `use_enable ipv6` \ - `use_enable ldap` \ - `use_with ssl` || die - - 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 -} |