diff options
author | 2000-11-26 20:55:03 +0000 | |
---|---|---|
committer | 2000-11-26 20:55:03 +0000 | |
commit | 541f14235634ec9414e89e8089beca533ffca899 (patch) | |
tree | 86d726368da8d5082e4e7b43278d3a356de0605c /net-ftp/lftp | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-541f14235634ec9414e89e8089beca533ffca899.tar.gz gentoo-2-541f14235634ec9414e89e8089beca533ffca899.tar.bz2 gentoo-2-541f14235634ec9414e89e8089beca533ffca899.zip |
*** empty log message ***
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/files/digest-lftp-2.3.5 | 1 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.3.5.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/net-ftp/lftp/files/digest-lftp-2.3.5 b/net-ftp/lftp/files/digest-lftp-2.3.5 new file mode 100644 index 000000000000..175596fad5a9 --- /dev/null +++ b/net-ftp/lftp/files/digest-lftp-2.3.5 @@ -0,0 +1 @@ +MD5 9d93c0b0f59f5d8a92d0f309ae1c73d0 lftp-2.3.5.tar.bz2 diff --git a/net-ftp/lftp/lftp-2.3.5.ebuild b/net-ftp/lftp/lftp-2.3.5.ebuild new file mode 100644 index 000000000000..1fad2c78e6e0 --- /dev/null +++ b/net-ftp/lftp/lftp-2.3.5.ebuild @@ -0,0 +1,43 @@ +# 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.3.5.ebuild,v 1.1 2000/11/26 20:54:19 achim 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=">=sys-apps/bash-2.04 + >=sys-libs/glibc-2.1.3 + >=sys-libs/gpm-1.19.3 + >=sys-libs/ncurses-5.1 + >=dev-libs/openssl-0.9.6" + +src_unpack () { + unpack ${A} +} + +src_compile() { + export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}" + export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}" + try ./configure --prefix=/usr --sysconfdir=/etc/lftp --with-catgets --with-modules + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/usr sysconfdir=${D}/etc/lftp install + prepman + dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS NEWS + dodoc README* THANKS TODO + +} + + + + + |