diff options
author | Daniel Black <dragonheart@gentoo.org> | 2006-04-25 22:24:49 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2006-04-25 22:24:49 +0000 |
commit | ce58b0dfde8fd27b19f5da9974acac3779251290 (patch) | |
tree | 32b1cd7d51a8c0649b149af78dd994bcf082f26e | |
parent | * cosmetics (diff) | |
download | gentoo-2-ce58b0dfde8fd27b19f5da9974acac3779251290.tar.gz gentoo-2-ce58b0dfde8fd27b19f5da9974acac3779251290.tar.bz2 gentoo-2-ce58b0dfde8fd27b19f5da9974acac3779251290.zip |
version bump. removed stay patches and older version
(Portage version: 2.1_pre9-r4)
-rw-r--r-- | net-ftp/lftp/ChangeLog | 10 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-3.4.6 | 3 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-3.4.6.ebuild | 66 |
3 files changed, 78 insertions, 1 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index f3069330e541..c120c038970d 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-ftp/lftp # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.98 2006/04/11 21:39:11 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.99 2006/04/25 22:24:48 dragonheart Exp $ + +*lftp-3.4.6 (25 Apr 2006) + + 25 Apr 2006; Daniel Black <dragonheart@gentoo.org> + -files/lftp-3.3.4-blocking-ssl-transfer.patch, + -files/lftp-3.4.0-remote-completion-false.patch, -lftp-3.4.2.ebuild, + +lftp-3.4.6.ebuild: + version bump. removed stay patches and older version *lftp-3.4.4 (11 Apr 2006) diff --git a/net-ftp/lftp/files/digest-lftp-3.4.6 b/net-ftp/lftp/files/digest-lftp-3.4.6 new file mode 100644 index 000000000000..c98eaece67a0 --- /dev/null +++ b/net-ftp/lftp/files/digest-lftp-3.4.6 @@ -0,0 +1,3 @@ +MD5 ea74ff2bcda30a76f1aced71eed490a3 lftp-3.4.6.tar.gz 1735847 +RMD160 801b1c0f8b68e3f5917fd59ba6d80f3f64c38a8f lftp-3.4.6.tar.gz 1735847 +SHA256 6731d4b40ca694a8505d16004575ff74205e83d7456c828915cf94e7b73aa8d3 lftp-3.4.6.tar.gz 1735847 diff --git a/net-ftp/lftp/lftp-3.4.6.ebuild b/net-ftp/lftp/lftp-3.4.6.ebuild new file mode 100644 index 000000000000..1f093b7b10ff --- /dev/null +++ b/net-ftp/lftp/lftp-3.4.6.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.4.6.ebuild,v 1.1 2006/04/25 22:24:49 dragonheart Exp $ + +DESCRIPTION="A sophisticated ftp/http client, file transfer program" +HOMEPAGE="http://lftp.yar.ru/" + +#SRC_URI="http://the.wiretapped.net/mirrors/lftp/${P}.tar.bz2" +# Was a bit too slow and unreliable last time I tried (dragonheart) +SRC_URI="ftp://lftp.yar.ru/lftp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sparc ~x86" +IUSE="ssl gnutls socks5 nls" + +RDEPEND=">=sys-libs/ncurses-5.1 + socks5? ( >=net-proxy/dante-1.1.12 ) + socks5? ( virtual/pam ) + ssl? ( + gnutls? ( >=net-libs/gnutls-1.2.3 ) + !gnutls? ( >=dev-libs/openssl-0.9.6 ) + ) + virtual/libc + !ppc-macos? ( >=sys-libs/readline-5.1 )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + dev-lang/perl + >=sys-apps/sed-4 + sys-apps/gawk + sys-devel/bison + sys-devel/libtool" + +src_compile() { + local myconf="$(use_enable nls)" + + 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" + + use ppc-macos && myconf="${myconf} --with-included-readline" + econf \ + --sysconfdir=/etc/lftp \ + --without-modules \ + ${myconf} || die "econf failed" + + emake || die "compile problem" +} + +src_install() { + emake install DESTDIR=${D} || die + + # hrmph, empty.. + rm -rf ${D}/usr/lib + + dodoc BUGS ChangeLog FAQ FEATURES MIRRORS \ + NEWS README* THANKS TODO +} |