diff options
author | Adam Bellinson <thread@gentoo.org> | 2002-01-03 00:46:46 +0000 |
---|---|---|
committer | Adam Bellinson <thread@gentoo.org> | 2002-01-03 00:46:46 +0000 |
commit | a9f9ef74ab91dcbeeea343751e9e06a5bde21134 (patch) | |
tree | a9ead8a4a60ee50552a1c96bfa8c9ee66d023789 /net-ftp/lftp | |
parent | updated to latest version (diff) | |
download | gentoo-2-a9f9ef74ab91dcbeeea343751e9e06a5bde21134.tar.gz gentoo-2-a9f9ef74ab91dcbeeea343751e9e06a5bde21134.tar.bz2 gentoo-2-a9f9ef74ab91dcbeeea343751e9e06a5bde21134.zip |
*** empty log message ***
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.4.8 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.4.8.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/net-ftp/lftp/files/digest-lftp-2.4.8 b/net-ftp/lftp/files/digest-lftp-2.4.8 new file mode 100644 index 000000000000..48c0fdf4fe9b --- /dev/null +++ b/net-ftp/lftp/files/digest-lftp-2.4.8 @@ -0,0 +1 @@ +MD5 9aed7df2ea2051798fb08f21b2916bf0 lftp-2.4.8.tar.bz2 1087192 diff --git a/net-ftp/lftp/lftp-2.4.8.ebuild b/net-ftp/lftp/lftp-2.4.8.ebuild new file mode 100644 index 000000000000..d756598b716b --- /dev/null +++ b/net-ftp/lftp/lftp-2.4.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.4.8.ebuild,v 1.1 2002/01/03 00:46:46 thread Exp $ + + +A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="Groovy little ftp client" +SRC_URI="ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/${A} + http://metalab.unc.edu/pub/Linux/system/network/file-transfer/${A}" + +HOMEPAGE="http://ftp.yars.free.net/projects/lftp/" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.1 + ssl? ( >=dev-libs/openssl-0.9.6 ) + nls? ( sys-devel/gettext )" + +RDEPEND="virtual/glibc + >=sys-libs/ncurses-5.1 + ssl? ( >=dev-libs/openssl-0.9.6 )" + +src_compile() { + local myconf + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + if [ -z "`use ssl`" ] ; then + myconf="$myconf --without-ssl" + fi + + export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}" + export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}" + + try ./configure --prefix=/usr --sysconfdir=/etc/lftp --with-modules --mandir=/usr/share/man $myconf + try make +} + +src_install() { + + try make prefix=${D}/usr sysconfdir=${D}/etc/lftp mandir=${D}/usr/share/man install + + dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS NEWS + dodoc README* THANKS TODO + +} + + + + + |