diff options
author | 2000-08-08 19:14:24 +0000 | |
---|---|---|
committer | 2000-08-08 19:14:24 +0000 | |
commit | b871d4e40df8fa9b7358fc7cfa1f5ceba45c2801 (patch) | |
tree | cdd971c1cc040861453e9e67aaaddaf6a4267fe4 /net-ftp/ftp | |
parent | *** empty log message *** (diff) | |
download | historical-b871d4e40df8fa9b7358fc7cfa1f5ceba45c2801.tar.gz historical-b871d4e40df8fa9b7358fc7cfa1f5ceba45c2801.tar.bz2 historical-b871d4e40df8fa9b7358fc7cfa1f5ceba45c2801.zip |
*** empty log message ***
Diffstat (limited to 'net-ftp/ftp')
-rw-r--r-- | net-ftp/ftp/files/digest | 1 | ||||
-rw-r--r-- | net-ftp/ftp/ftp-0.17-p1.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/net-ftp/ftp/files/digest b/net-ftp/ftp/files/digest new file mode 100644 index 000000000000..8334ef3f8744 --- /dev/null +++ b/net-ftp/ftp/files/digest @@ -0,0 +1 @@ +MD5 94441610c9b86ef45c4c6ec609444060 netkit-ftp-0.17.tar.gz diff --git a/net-ftp/ftp/ftp-0.17-p1.ebuild b/net-ftp/ftp/ftp-0.17-p1.ebuild new file mode 100644 index 000000000000..2e92e01935d9 --- /dev/null +++ b/net-ftp/ftp/ftp-0.17-p1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17-p1.ebuild,v 1.1 2000/08/08 19:14:24 achim Exp $ + +P=ftp-0.17 +A=netkit-${P}.tar.gz +S=${WORKDIR}/netkit-${P} +DESCRIPTION="Standard Linux FTP client" +CATEGORY="net-ftp" +SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}" + +src_compile() { + cd ${S} + ./configure --prefix=/usr + cp MCONFIG MCONFIG.orig + sed -e "s/-pipe -O2/${CFLAGS}/" MCONFIG.orig > MCONFIG + make +} + +src_install() { + into /usr + dobin ftp/ftp + doman ftp/ftp.1 ftp/netrc.5 + dodoc ChangeLog README BUGS +} + + |