diff options
author | recht <recht@pkgsrc.org> | 2003-12-05 14:11:27 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-12-05 14:11:27 +0000 |
commit | 28945f9ada01c593bf268e98a19bacf8d6cc220f (patch) | |
tree | c37b199e6731debbc092c8c76bfb622b1b799926 /net/gnetcat | |
parent | f964796cf0d678f4851ed5fde6c249468e548f87 (diff) | |
download | pkgsrc-28945f9ada01c593bf268e98a19bacf8d6cc220f.tar.gz |
initial import of gnetcat 0.7.0
Netcat is a featured networking utility which reads and writes data across
network connections, using the TCP/IP protocol.
It is designed to be a reliable "back-end" tool that can be used directly
or easily driven by other programs and scripts. At the same time, it is a
feature-rich network debugging and exploration tool, since it can create
almost any kind of connection you would need and has several interesting
built-in capabilities.
This package was provided by Adrian Portelli via pkgsrc-wip.
Diffstat (limited to 'net/gnetcat')
-rw-r--r-- | net/gnetcat/DESCR | 7 | ||||
-rw-r--r-- | net/gnetcat/Makefile | 19 | ||||
-rw-r--r-- | net/gnetcat/PLIST | 4 | ||||
-rw-r--r-- | net/gnetcat/distinfo | 5 | ||||
-rw-r--r-- | net/gnetcat/patches/patch-aa | 15 |
5 files changed, 50 insertions, 0 deletions
diff --git a/net/gnetcat/DESCR b/net/gnetcat/DESCR new file mode 100644 index 00000000000..634aa9c3a20 --- /dev/null +++ b/net/gnetcat/DESCR @@ -0,0 +1,7 @@ +Netcat is a featured networking utility which reads and writes data across +network connections, using the TCP/IP protocol. +It is designed to be a reliable "back-end" tool that can be used directly +or easily driven by other programs and scripts. At the same time, it is a +feature-rich network debugging and exploration tool, since it can create +almost any kind of connection you would need and has several interesting +built-in capabilities. diff --git a/net/gnetcat/Makefile b/net/gnetcat/Makefile new file mode 100644 index 00000000000..f7692701ccb --- /dev/null +++ b/net/gnetcat/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/12/05 14:11:27 recht Exp $ + +DISTNAME= netcat-0.7.0 +PKGNAME= gnetcat-0.7.0 +CATEGORIES= net www +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netcat/} + +MAINTAINER= adrianp@stindustries.net +HOMEPAGE= http://netcat.sourceforge.net/ +COMMENT= Read and write data across network connections + +GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +USE_PERL5= YES + +USE_NEW_TEXINFO= YES +INFO_FILES= netcat.info + +.include "../../mk/bsd.pkg.mk" diff --git a/net/gnetcat/PLIST b/net/gnetcat/PLIST new file mode 100644 index 00000000000..dad670a794d --- /dev/null +++ b/net/gnetcat/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/12/05 14:11:27 recht Exp $ +bin/netcat +info/netcat.info +man/man1/netcat.1 diff --git a/net/gnetcat/distinfo b/net/gnetcat/distinfo new file mode 100644 index 00000000000..0cc97f90bc9 --- /dev/null +++ b/net/gnetcat/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/12/05 14:11:27 recht Exp $ + +SHA1 (netcat-0.7.0.tar.gz) = b4a9d0a1a186e6a9040d8a48b64ba7b7f702b0fe +Size (netcat-0.7.0.tar.gz) = 396324 bytes +SHA1 (patch-aa) = 08cd5e2fd5d2db28f56fc81f21990b70b2886444 diff --git a/net/gnetcat/patches/patch-aa b/net/gnetcat/patches/patch-aa new file mode 100644 index 00000000000..78118d8e74b --- /dev/null +++ b/net/gnetcat/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/12/05 14:11:27 recht Exp $ + +--- src/Makefile.in.orig Thu Oct 16 17:19:29 2003 ++++ src/Makefile.in Thu Oct 16 17:19:42 2003 +@@ -421,10 +421,6 @@ + + + install-exec-hook: +- @if [ ! -L $(netcat_nc) -a ! -e $(netcat_nc) ]; then \ +- echo "Creating symlink to the shorter executable name"; \ +- ln -s netcat $(netcat_nc); \ +- fi + + uninstall-hook: + @if [ -L $(netcat_nc) ]; then \ |