diff options
-rw-r--r-- | net-ftp/lftp/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.1.ebuild | 16 |
2 files changed, 16 insertions, 5 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index d99e2933c01e..4396cd732893 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for net-ftp/lftp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.8 2002/08/14 19:42:48 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.9 2002/08/15 20:19:55 raker Exp $ *lftp-2.6.1 (13 Aug 2002) + 15 Aug 2002; Nick Hadaway <raker@gentoo.org> lftp-2.6.1.ebuild : + Added socks5 support and updated nls configure options. + 14 Aug 2002; Nick Hadaway <raker@gentoo.org> lftp-2.6.1.ebuild : Changed emake to make. diff --git a/net-ftp/lftp/lftp-2.6.1.ebuild b/net-ftp/lftp/lftp-2.6.1.ebuild index 5f30a85383c0..49ee82c6ebcb 100644 --- a/net-ftp/lftp/lftp-2.6.1.ebuild +++ b/net-ftp/lftp/lftp-2.6.1.ebuild @@ -1,6 +1,6 @@ # 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.2 2002/08/14 19:42:48 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.1.ebuild,v 1.3 2002/08/15 20:19:55 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="LFTP is a sophisticated ftp/http client, file transfer program." @@ -8,7 +8,8 @@ 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 )" + ssl? ( >=dev-libs/openssl-0.9.6 ) + socks5? ( >=net-misc/dante-1.1.12 )" RDEPEND="nls? ( sys-devel/gettext )" @@ -19,8 +20,15 @@ KEYWORDS="x86 ppc -sparc -sparc64" src_compile() { local myconf - use nls || myconf="--disable-nls" - use ssl || myconf="${myconf} --without-ssl" + + use nls && myconf="--enable-nls" \ + || myconf="--disable-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}" |