diff options
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.6.1.ebuild | 19 |
2 files changed, 19 insertions, 6 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index 4396cd732893..fae1d2716984 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,10 +1,14 @@ # 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.9 2002/08/15 20:19:55 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.10 2002/08/15 22:02:14 raker Exp $ *lftp-2.6.1 (13 Aug 2002) 15 Aug 2002; Nick Hadaway <raker@gentoo.org> lftp-2.6.1.ebuild : + Forcing nls temporarily until I can figure out how to fix compile + problems while it is disabled. + + 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 : diff --git a/net-ftp/lftp/lftp-2.6.1.ebuild b/net-ftp/lftp/lftp-2.6.1.ebuild index 49ee82c6ebcb..47e2d2823c88 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.3 2002/08/15 20:19:55 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.1.ebuild,v 1.4 2002/08/15 22:02:14 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="LFTP is a sophisticated ftp/http client, file transfer program." @@ -10,8 +10,11 @@ SRC_URI="http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/${P}.tar DEPEND=">=sys-libs/ncurses-5.1 ssl? ( >=dev-libs/openssl-0.9.6 ) socks5? ( >=net-misc/dante-1.1.12 )" - -RDEPEND="nls? ( sys-devel/gettext )" + +# 15 Aug 2002 +# temporarily forcing nls +#RDEPEND="nls? ( sys-devel/gettext )" +RDEPEND="sys-devel/gettext" SLOT="0" LICENSE="GPL-2" @@ -21,8 +24,14 @@ src_compile() { local myconf - use nls && myconf="--enable-nls" \ - || myconf="--disable-nls" + # 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" |