diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2003-12-05 17:00:38 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2003-12-05 17:00:38 +0000 |
commit | 4c78a223c3c7b411a1d7f0927235e6feb6c5c336 (patch) | |
tree | 1cf90cdc38c705490a401ca7be1b56ecd92d1f73 /net-ftp | |
parent | Replacing lukemftp with tnftp (diff) | |
download | gentoo-2-4c78a223c3c7b411a1d7f0927235e6feb6c5c336.tar.gz gentoo-2-4c78a223c3c7b411a1d7f0927235e6feb6c5c336.tar.bz2 gentoo-2-4c78a223c3c7b411a1d7f0927235e6feb6c5c336.zip |
Removing lukemftp from the tree (now tnftp).
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lukemftp/ChangeLog | 33 | ||||
-rw-r--r-- | net-ftp/lukemftp/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/lukemftp/files/digest-lukemftp-1.5-r4 | 1 | ||||
-rw-r--r-- | net-ftp/lukemftp/files/lukemftp-1.5-pasv-overflow.patch | 16 | ||||
-rw-r--r-- | net-ftp/lukemftp/lukemftp-1.5-r4.ebuild | 49 |
5 files changed, 0 insertions, 103 deletions
diff --git a/net-ftp/lukemftp/ChangeLog b/net-ftp/lukemftp/ChangeLog deleted file mode 100644 index 26146b16e81b..000000000000 --- a/net-ftp/lukemftp/ChangeLog +++ /dev/null @@ -1,33 +0,0 @@ -# ChangeLog for net-ftp/lukemftp -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lukemftp/ChangeLog,v 1.8 2003/02/12 07:58:36 vapier Exp $ - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*lukemftp-1.5-r4 (22 May 2002) - - 15 Dec 2002; Bjoern Brauel <bjb@gentoo.org> lukemftp-1.5-r4.ebuild : - Add alpha to KEYWORDS - - 30 Nov 2002; Jon Nall <nall@gentoo.org> lukemftp-1.5-r4.ebuild : - keyworded ~ppc - - 22 May 2002; Donny Davies <woodchip@gentoo.org> : - - Security fix for PASV overflow. - -*lukemftp-1.5-r3 (3 May 2002) - - 3 May 2002; Donny Davies <woodchip@gentoo.org> : - - Added LICENSE, SLOT. - -*lukemftp-1.5-r2 (1 Feb 2002) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/net-ftp/lukemftp/Manifest b/net-ftp/lukemftp/Manifest deleted file mode 100644 index d518a93541c9..000000000000 --- a/net-ftp/lukemftp/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -MD5 5fca4a7423d20eccf42111da05078f11 ChangeLog 1170 -MD5 6b9087ce1244501b04f599d6994e390b lukemftp-1.5-r4.ebuild 1592 -MD5 c2fe0246d0e341f25696c92d4ec3bb13 files/digest-lukemftp-1.5-r4 64 -MD5 774f712740b782bd672b85536408a3c5 files/lukemftp-1.5-pasv-overflow.patch 375 diff --git a/net-ftp/lukemftp/files/digest-lukemftp-1.5-r4 b/net-ftp/lukemftp/files/digest-lukemftp-1.5-r4 deleted file mode 100644 index f6d3378a1238..000000000000 --- a/net-ftp/lukemftp/files/digest-lukemftp-1.5-r4 +++ /dev/null @@ -1 +0,0 @@ -MD5 0cd0fc2e3fca21ca56647b2e1142a01a lukemftp-1.5.tar.gz 264861 diff --git a/net-ftp/lukemftp/files/lukemftp-1.5-pasv-overflow.patch b/net-ftp/lukemftp/files/lukemftp-1.5-pasv-overflow.patch deleted file mode 100644 index 73ad3ca935f9..000000000000 --- a/net-ftp/lukemftp/files/lukemftp-1.5-pasv-overflow.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- src/ftp.c -+++ src/ftp.c -@@ -454,9 +454,10 @@ - if (dig > 4 && pflag == 1 && isdigit(c)) - pflag = 2; - if (pflag == 2) { -- if (c != '\r' && c != ')') -- *pt++ = c; -- else { -+ if (c != '\r' && c != ')') { -+ if (pt < &pasv[sizeof(pasv) - 1]) -+ *pt++ = c; -+ } else { - *pt = '\0'; - pflag = 3; - } diff --git a/net-ftp/lukemftp/lukemftp-1.5-r4.ebuild b/net-ftp/lukemftp/lukemftp-1.5-r4.ebuild deleted file mode 100644 index a1e7feb44bbc..000000000000 --- a/net-ftp/lukemftp/lukemftp-1.5-r4.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lukemftp/lukemftp-1.5-r4.ebuild,v 1.8 2003/02/13 14:05:12 vapier Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="NetBSD FTP client with several advanced features" -SRC_URI="ftp://ftp.netbsd.org/pub/NetBSD/misc/lukemftp/${P}.tar.gz" -HOMEPAGE="ftp://ftp.netbsd.org/pub/NetBSD/misc/lukemftp/" -DEPEND="virtual/glibc >=sys-libs/ncurses-5.1" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc ~ppc alpha" - -src_unpack() { - unpack ${A} - cd ${S} - # security fix for PASV buffer overflow from malicious server. - # http://linux.oreillynet.com/pub/a/linux/2002/05/21/insecurities.html - patch -p0 < ${FILESDIR}/lukemftp-1.5-pasv-overflow.patch || die - # Adds a command line option: -s, which produces clean, informative output. - # Shows progess status, ETA, transfer speed, no server responses or login messages. - # ~woodchip - cp src/main.c src/main.orig - sed -e "s/Aadefgino:pP:r:RtT:u:vV/Aadefgino:pP:r:RstT:u:vV/" \ - -e "s/case 't'/case 's':\n\t\t\tverbose = 0;\n\t\t\tprogress = 1;\n\t\t\tbreak;\n\n\t\t&/" \ - src/main.orig > src/main.c -} - -src_compile() { - local myconf - use ipv6 || myconf="${myconf} --disable-ipv6" - ./configure \ - --prefix=/usr \ - --enable-editcomplete \ - --host=${CHOST} ${myconf} || die "bad ./configure" - emake || die "compile problem" -} - -src_install() { - dodoc COPYING ChangeLog README* THANKS NEWS - newbin src/ftp lukemftp - newman src/ftp.1 lukemftp.1 - if [ ! -e /usr/bin/ftp ] - then - cd ${D}/usr/bin - ln -s lukemftp ftp - fi -} |