diff options
author | 2007-09-02 11:15:24 +0000 | |
---|---|---|
committer | 2007-09-02 11:15:24 +0000 | |
commit | c27930a2c924028f557808058fce20ab4b7841aa (patch) | |
tree | 65f77863db16690f03b692baff386a199ab211e6 /net-ftp | |
parent | Stable on amd64 (diff) | |
download | gentoo-2-c27930a2c924028f557808058fce20ab4b7841aa.tar.gz gentoo-2-c27930a2c924028f557808058fce20ab4b7841aa.tar.bz2 gentoo-2-c27930a2c924028f557808058fce20ab4b7841aa.zip |
cleanout
(Portage version: 2.1.2.12)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-3.5.11 | 3 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-3.5.12 | 3 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-3.5.11.ebuild | 56 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-3.5.12.ebuild | 56 |
5 files changed, 5 insertions, 119 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index f578073c747f..27bffb3cff32 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/lftp # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.138 2007/09/01 09:07:27 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.139 2007/09/02 11:15:24 dragonheart Exp $ + + 02 Sep 2007; Daniel Black <dragonheart@gentoo.org> -lftp-3.5.11.ebuild, + -lftp-3.5.12.ebuild: + cleanout *lftp-3.5.14 (01 Sep 2007) diff --git a/net-ftp/lftp/files/digest-lftp-3.5.11 b/net-ftp/lftp/files/digest-lftp-3.5.11 deleted file mode 100644 index d4443e707632..000000000000 --- a/net-ftp/lftp/files/digest-lftp-3.5.11 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 a1691cc0b6f0045a61e9f3d4f668fe13 lftp-3.5.11.tar.bz2 1330090 -RMD160 a8c905073fcf13d50af11357662271985abcd220 lftp-3.5.11.tar.bz2 1330090 -SHA256 f98d16dc4fbdb83dcd03a781d4f51d1de33b10d54d99cc209bc1c905db38d45d lftp-3.5.11.tar.bz2 1330090 diff --git a/net-ftp/lftp/files/digest-lftp-3.5.12 b/net-ftp/lftp/files/digest-lftp-3.5.12 deleted file mode 100644 index f3bddda59a55..000000000000 --- a/net-ftp/lftp/files/digest-lftp-3.5.12 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 08c8d03cfd93d1d49122654bedad16d1 lftp-3.5.12.tar.bz2 1330058 -RMD160 3d2e0db1b7af6011a849f4ea60a200b9e125b667 lftp-3.5.12.tar.bz2 1330058 -SHA256 080f6a48b6c771f93915e9b4588d44ad12ddab8000b9399993bfc07d99910ff0 lftp-3.5.12.tar.bz2 1330058 diff --git a/net-ftp/lftp/lftp-3.5.11.ebuild b/net-ftp/lftp/lftp-3.5.11.ebuild deleted file mode 100644 index 7a2e5d3bde0c..000000000000 --- a/net-ftp/lftp/lftp-3.5.11.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.5.11.ebuild,v 1.5 2007/09/01 09:07:27 phreak Exp $ - -DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program" -HOMEPAGE="http://lftp.yar.ru/" -SRC_URI="ftp://lftp.yar.ru/lftp/old/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="ssl gnutls socks5 nls" - -RDEPEND=">=sys-libs/ncurses-5.1 - socks5? ( - >=net-proxy/dante-1.1.12 - virtual/pam ) - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.3 ) - !gnutls? ( >=dev-libs/openssl-0.9.6 ) - ) - virtual/libc - >=sys-libs/readline-5.1" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - dev-lang/perl" - -src_compile() { - local myconf="$(use_enable nls) --enable-packager-mode" - - if use ssl && use gnutls ; then - myconf="${myconf} --without-openssl" - elif use ssl && ! use gnutls ; then - myconf="${myconf} --without-gnutls --with-openssl=/usr" - else - myconf="${myconf} --without-gnutls --without-openssl" - fi - - use socks5 && myconf="${myconf} --with-socksdante=/usr" \ - || myconf="${myconf} --without-socksdante" - - econf \ - --sysconfdir=/etc/lftp \ - --with-modules \ - ${myconf} || die "econf failed" - - emake || die "compile problem" -} - -src_install() { - emake install DESTDIR="${D}" || die - - dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO -} diff --git a/net-ftp/lftp/lftp-3.5.12.ebuild b/net-ftp/lftp/lftp-3.5.12.ebuild deleted file mode 100644 index 237c00b2998d..000000000000 --- a/net-ftp/lftp/lftp-3.5.12.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.5.12.ebuild,v 1.2 2007/09/01 09:07:27 phreak Exp $ - -DESCRIPTION="A sophisticated ftp/sftp/http/https client and file transfer program" -HOMEPAGE="http://lftp.yar.ru/" -SRC_URI="http://ftp.yars.free.net/pub/source/lftp/old/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="ssl gnutls socks5 nls" - -RDEPEND=">=sys-libs/ncurses-5.1 - socks5? ( - >=net-proxy/dante-1.1.12 - virtual/pam ) - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.3 ) - !gnutls? ( >=dev-libs/openssl-0.9.6 ) - ) - virtual/libc - >=sys-libs/readline-5.1" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - dev-lang/perl" - -src_compile() { - local myconf="$(use_enable nls) --enable-packager-mode" - - if use ssl && use gnutls ; then - myconf="${myconf} --without-openssl" - elif use ssl && ! use gnutls ; then - myconf="${myconf} --without-gnutls --with-openssl=/usr" - else - myconf="${myconf} --without-gnutls --without-openssl" - fi - - use socks5 && myconf="${myconf} --with-socksdante=/usr" \ - || myconf="${myconf} --without-socksdante" - - econf \ - --sysconfdir=/etc/lftp \ - --with-modules \ - ${myconf} || die "econf failed" - - emake || die "compile problem" -} - -src_install() { - emake install DESTDIR="${D}" || die - - dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO -} |