diff options
author | Graham Forest <vladimir@gentoo.org> | 2003-03-27 05:07:30 +0000 |
---|---|---|
committer | Graham Forest <vladimir@gentoo.org> | 2003-03-27 05:07:30 +0000 |
commit | de5aa7c7f48db70393be09a6e7039a9ed1db0d46 (patch) | |
tree | 2e49d09584638bce9f5875875a8fc6de63374b33 /net-ftp/lftp | |
parent | New upstream release, marked ~x86 (diff) | |
download | gentoo-2-de5aa7c7f48db70393be09a6e7039a9ed1db0d46.tar.gz gentoo-2-de5aa7c7f48db70393be09a6e7039a9ed1db0d46.tar.bz2 gentoo-2-de5aa7c7f48db70393be09a6e7039a9ed1db0d46.zip |
Version bump
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 7 | ||||
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.6.5 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.5.ebuild | 54 |
3 files changed, 61 insertions, 1 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index 3ecd9d442ede..94483b1e1730 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-ftp/lftp # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.22 2003/03/24 02:02:37 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.23 2003/03/27 05:07:30 vladimir Exp $ + +*lftp-2.6.5 (26 Mar 2003) + + 26 Mar 2003; Graham Forest <vladimir@gentoo.org> lftp-2.6.5.ebuild: + Version bump 06 March 2003; Jon Portnoy <avenj@gentoo.org> lftp-2.6.4.ebuild : Fixed SRC_URI. diff --git a/net-ftp/lftp/files/digest-lftp-2.6.5 b/net-ftp/lftp/files/digest-lftp-2.6.5 new file mode 100644 index 000000000000..500f4a0e6940 --- /dev/null +++ b/net-ftp/lftp/files/digest-lftp-2.6.5 @@ -0,0 +1 @@ +MD5 8f09fbf5dd7b048ae3abbbc9d9c83a50 lftp-2.6.5.tar.bz2 1135329 diff --git a/net-ftp/lftp/lftp-2.6.5.ebuild b/net-ftp/lftp/lftp-2.6.5.ebuild new file mode 100644 index 000000000000..e82abe35e483 --- /dev/null +++ b/net-ftp/lftp/lftp-2.6.5.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.5.ebuild,v 1.1 2003/03/27 05:07:30 vladimir Exp $ + +inherit eutils + +IUSE="ssl socks5 nls" +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 ) + nls? ( sys-devel/gettext )" +RDEPEND="nls? ( sys-devel/gettext )" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc -sparc ~alpha" + + + +src_unpack() { + unpack ${A} + cd ${S} + #epatch ${FILESDIR}/configure-lftp-2.6.2.diff +} + +src_compile() { + local myconf + use nls && myconf="--enable-nls" \ + || myconf="--disable-nls" + use ssl && myconf="${myconf} --with-ssl=/usr" \ + || myconf="${myconf} --without-ssl" + use socks5 && myconf="${myconf} --with-socksdante=/usr" \ + || myconf="${myconf} --without-socksdante" + + econf \ + --sysconfdir=/etc/lftp \ + --without-modules \ + ${myconf} + + 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 +} |