diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-09-17 21:02:51 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-09-17 21:02:51 +0000 |
commit | b117f4a027699bc8cda7d9526368d883e5d87fa9 (patch) | |
tree | 991eefa7a59f1883cf410ae55a7b25d93aaf80f2 /net-ftp | |
parent | Added "ldap net-nds/openldap" to all use.defaults (diff) | |
download | historical-b117f4a027699bc8cda7d9526368d883e5d87fa9.tar.gz historical-b117f4a027699bc8cda7d9526368d883e5d87fa9.tar.bz2 historical-b117f4a027699bc8cda7d9526368d883e5d87fa9.zip |
Removed stale version of software. 2.5.4 is still available in portage
if 2.6.2 doesn't work for you.
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.6.0 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.6.1 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.0.ebuild | 48 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.1.ebuild | 66 |
4 files changed, 0 insertions, 116 deletions
diff --git a/net-ftp/lftp/files/digest-lftp-2.6.0 b/net-ftp/lftp/files/digest-lftp-2.6.0 deleted file mode 100644 index 9d907930f946..000000000000 --- a/net-ftp/lftp/files/digest-lftp-2.6.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 c52aaca87c2a9fbc71cc9fd027af0b32 lftp-2.6.0.tar.bz2 1124131 diff --git a/net-ftp/lftp/files/digest-lftp-2.6.1 b/net-ftp/lftp/files/digest-lftp-2.6.1 deleted file mode 100644 index 2afac5490656..000000000000 --- a/net-ftp/lftp/files/digest-lftp-2.6.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 340d2be820f9ca102483c6e788549d61 lftp-2.6.1.tar.bz2 1127246 diff --git a/net-ftp/lftp/lftp-2.6.0.ebuild b/net-ftp/lftp/lftp-2.6.0.ebuild deleted file mode 100644 index dc72c9e13efe..000000000000 --- a/net-ftp/lftp/lftp-2.6.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.0.ebuild,v 1.2 2002/08/13 21:02:25 raker Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="LFTP is a sophisticated ftp/http client, file transfer program." -HOMEPAGE="http://ftp.yars.free.net/projects/lftp/" -SRC_URI="http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/${P}.tar.bz2" - -DEPEND=">=sys-libs/ncurses-5.1 - ssl? ( >=dev-libs/openssl-0.9.6 )" - -RDEPEND="nls? ( sys-devel/gettext )" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc -sparc -sparc64" - -src_compile() { - - local myconf - use nls || myconf="--disable-nls" - use ssl || myconf="${myconf} --without-ssl" - - export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}" - export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc/lftp \ - --without-modules \ - --mandir=/usr/share/man \ - --host=${CHOST} ${myconf} || die "bad ./configure" - - emake || die "compile problem" -} - -src_install() { - - make install DESTDIR=${D} || die - - # hrmph, empty.. - rm -rf ${D}/usr/lib - - dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO - -} diff --git a/net-ftp/lftp/lftp-2.6.1.ebuild b/net-ftp/lftp/lftp-2.6.1.ebuild deleted file mode 100644 index 775bb0a51ad7..000000000000 --- a/net-ftp/lftp/lftp-2.6.1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.1.ebuild,v 1.5 2002/08/25 16:51:53 raker Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="LFTP is a sophisticated ftp/http client, file transfer program." -HOMEPAGE="http://ftp.yars.free.net/projects/lftp/" -SRC_URI="http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/${P}.tar.bz2" - -DEPEND=">=sys-libs/ncurses-5.1 - ssl? ( >=dev-libs/openssl-0.9.6 ) - socks5? ( >=net-misc/dante-1.1.12 ) - sys-devel/gettext" - -# 15 Aug 2002 -# temporarily forcing nls -#RDEPEND="nls? ( sys-devel/gettext )" -RDEPEND="sys-devel/gettext" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc -sparc -sparc64" - -src_compile() { - - local myconf - - # 15 Aug 2002 - # --disable-nls b0rks compile - # temporarily forcing --enable-nls - # - # use nls && myconf="--enable-nls" \ - # || myconf="--disable-nls" - # - myconf="--enable-nls" - - use ssl && myconf="${myconf} --with-ssl=/usr" \ - || myconf="${myconf} --without-ssl" - - use socks5 && myconf="${myconf} --with-socks5" \ - || myconf="${myconf} --without-socks5" - - export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}" - export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc/lftp \ - --without-modules \ - --mandir=/usr/share/man \ - --host=${CHOST} ${myconf} || die "bad ./configure" - - make || die "compile problem" -} - -src_install() { - - make install DESTDIR=${D} || die - - # hrmph, empty.. - rm -rf ${D}/usr/lib - - dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO - -} |