diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-11-24 17:44:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-11-24 17:44:00 +0000 |
commit | f081bf2dfb23a4f70e92ab633d44989d6728d930 (patch) | |
tree | bca4db994dcef2e6060a56b524a1b2b95a5a39f1 /net-analyzer/netcat | |
parent | needs latest autoconf to work with CC and CFLAGS #33744 (diff) | |
download | historical-f081bf2dfb23a4f70e92ab633d44989d6728d930.tar.gz historical-f081bf2dfb23a4f70e92ab633d44989d6728d930.tar.bz2 historical-f081bf2dfb23a4f70e92ab633d44989d6728d930.zip |
old
Diffstat (limited to 'net-analyzer/netcat')
-rw-r--r-- | net-analyzer/netcat/files/digest-netcat-110-r2 | 1 | ||||
-rw-r--r-- | net-analyzer/netcat/files/digest-netcat-110-r3 | 2 | ||||
-rw-r--r-- | net-analyzer/netcat/netcat-110-r2.ebuild | 43 | ||||
-rw-r--r-- | net-analyzer/netcat/netcat-110-r3.ebuild | 47 |
4 files changed, 0 insertions, 93 deletions
diff --git a/net-analyzer/netcat/files/digest-netcat-110-r2 b/net-analyzer/netcat/files/digest-netcat-110-r2 deleted file mode 100644 index fe2640793b1d..000000000000 --- a/net-analyzer/netcat/files/digest-netcat-110-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 402632f2fe01c169ff19a0ad6e9d608c nc110.tgz 75267 diff --git a/net-analyzer/netcat/files/digest-netcat-110-r3 b/net-analyzer/netcat/files/digest-netcat-110-r3 deleted file mode 100644 index b9d692521dd5..000000000000 --- a/net-analyzer/netcat/files/digest-netcat-110-r3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 402632f2fe01c169ff19a0ad6e9d608c nc110.tgz 75267 -MD5 84d850745dd860aedce64b518e0e3330 nc-v6-20000918.patch.gz 8740 diff --git a/net-analyzer/netcat/netcat-110-r2.ebuild b/net-analyzer/netcat/netcat-110-r2.ebuild deleted file mode 100644 index aaddfb59ea26..000000000000 --- a/net-analyzer/netcat/netcat-110-r2.ebuild +++ /dev/null @@ -1,43 +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-analyzer/netcat/netcat-110-r2.ebuild,v 1.5 2003/08/18 20:36:28 mholzer Exp $ - -MY_P=nc${PV} -S=${WORKDIR}/nc-${PV} -DESCRIPTION="A network piping program" -SRC_URI="http://www.atstake.com/research/tools/${MY_P}.tgz" -HOMEPAGE="http://www.atstake.com/research/tools/network_utilities/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ppc sparc alpha" - -DEPEND="virtual/glibc" - -src_unpack() { - mkdir ${S} - cd ${S} - tar zxf ${DISTDIR}/${A} -} - -src_compile() { - - cp Makefile Makefile.orig - sed -e "s:^CFLAGS =.*$:CFLAGS = ${CFLAGS}:" \ - -e "s:^CC =.*$:CC = gcc \$(CFLAGS):" \ - Makefile.orig > Makefile - - cp netcat.c netcat.c.orig - sed -e "s:#define HAVE_BIND:#undef HAVE_BIND:" \ - netcat.c.orig > netcat.c - - make linux || die - -} - -src_install () { - dobin nc - dodoc README - docinto scripts - dodoc scripts/* -} diff --git a/net-analyzer/netcat/netcat-110-r3.ebuild b/net-analyzer/netcat/netcat-110-r3.ebuild deleted file mode 100644 index 6df352185a6d..000000000000 --- a/net-analyzer/netcat/netcat-110-r3.ebuild +++ /dev/null @@ -1,47 +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-analyzer/netcat/netcat-110-r3.ebuild,v 1.5 2003/09/20 05:40:45 seemant Exp $ - -MY_P=nc${PV} -S=${WORKDIR}/nc-${PV} -DESCRIPTION="A network piping program" -SRC_URI="http://www.atstake.com/research/tools/network_utilities/${MY_P}.tgz -ipv6?( ftp://sith.mimuw.edu.pl/pub/users/baggins/IPv6/nc-v6-20000918.patch.gz )" -HOMEPAGE="http://www.atstake.com/research/tools/network_utilities/" - -IUSE="ipv6 static" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="~x86 ~ppc ~sparc ~alpha hppa" - -DEPEND="virtual/glibc" - -src_unpack() { - mkdir ${S} - cd ${S} - unpack ${MY_P}.tgz - if [ -n "`use ipv6`" ]; then - unpack nc-v6-20000918.patch.gz - patch -p1 < nc-v6-20000918.patch - fi -} - -src_compile() { - - cp netcat.c netcat.c.orig - sed -e "s:#define HAVE_BIND:#undef HAVE_BIND:" \ - netcat.c.orig > netcat.c - - export XFLAGS="-DLINUX" - [ -n "`use ipv6`" ] && XFLAGS="${XFLAGS} -DINET6" - [ -n "`use static`" ] && export STATIC="-static" - CC="gcc ${CFLAGS}" make -e nc || die -} - -src_install () { - dobin nc - dodoc README - docinto scripts - dodoc scripts/* -} |