diff options
author | Jason Evans <jasone@FreeBSD.org> | 2000-08-23 07:35:52 +0000 |
---|---|---|
committer | Jason Evans <jasone@FreeBSD.org> | 2000-08-23 07:35:52 +0000 |
commit | a5909018cc3fad6b5485ef535e23a10e86c4bba6 (patch) | |
tree | 4592a38357ee3e842f9014cae91c3a70d4707899 /net/ncat | |
parent | Update to version 4.1.37 (diff) |
Add ports for:
libstash - Algorithms and data structures library.
libsock - TCP/IP networking library
ncat - Like cat(1), but with sockets.
proxy - Transparent logging proxy.
All of these ports are part of a single source distribution, but they fit
better into the ports scheme as separate ports.
Notes
Notes:
svn path=/head/; revision=31883
Diffstat (limited to 'net/ncat')
-rw-r--r-- | net/ncat/Makefile | 33 | ||||
-rw-r--r-- | net/ncat/distinfo | 1 | ||||
-rw-r--r-- | net/ncat/pkg-comment | 1 | ||||
-rw-r--r-- | net/ncat/pkg-descr | 9 | ||||
-rw-r--r-- | net/ncat/pkg-plist | 1 |
5 files changed, 45 insertions, 0 deletions
diff --git a/net/ncat/Makefile b/net/ncat/Makefile new file mode 100644 index 000000000000..0c2d71aec3aa --- /dev/null +++ b/net/ncat/Makefile @@ -0,0 +1,33 @@ +# New ports collection Makefile for: ncat +# Date created: 22 August 2000 +# Whom: jasone +# +# $FreeBSD$ +# + +PORTNAME= ncat +PORTVERSION= 1.0.0 +CATEGORIES= net +DISTNAME= canonware-1.0.0 +MASTER_SITES= http://www.canonware.com/download/canonware/ + +MAINTAINER= jasone@FreeBSD.org + +BUILD_DEPENDS= cook:${PORTSDIR}/devel/cook + +USE_AUTOCONF= yes +GNU_CONFIGURE= yes + +MAN1= ncat.1 +MANCOMPRESSED= no + +do-build: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook bin/ncat/src/ncat) + +do-install: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook ncat_install_a) + +post-install: + @strip ${PREFIX}/bin/ncat + +.include <bsd.port.mk> diff --git a/net/ncat/distinfo b/net/ncat/distinfo new file mode 100644 index 000000000000..a9f365257dfd --- /dev/null +++ b/net/ncat/distinfo @@ -0,0 +1 @@ +MD5 (canonware-1.0.0.tar.gz) = ce4ce59792727f662b4b20aa6b002eef diff --git a/net/ncat/pkg-comment b/net/ncat/pkg-comment new file mode 100644 index 000000000000..141025e15482 --- /dev/null +++ b/net/ncat/pkg-comment @@ -0,0 +1 @@ +Like cat, but input or output is via a TCP/IP socket
\ No newline at end of file diff --git a/net/ncat/pkg-descr b/net/ncat/pkg-descr new file mode 100644 index 000000000000..87b7af40f0e0 --- /dev/null +++ b/net/ncat/pkg-descr @@ -0,0 +1,9 @@ +ncat is much like cat(1), but either its input or output is a TCP/IP socket +rather than a file descriptor. If the input is from a socket, ncat reads data +from the specified socket and sends the data to stdout. If the output is to a +socket, ncat reads data from stdin and sends the data to the specified socket. + +ncat can log the data stream in three formats. Which format to use (if any) +should be chosen according to the nature of the data being streamed. + +http://www.canonware.com/canonware/ diff --git a/net/ncat/pkg-plist b/net/ncat/pkg-plist new file mode 100644 index 000000000000..91563faf3729 --- /dev/null +++ b/net/ncat/pkg-plist @@ -0,0 +1 @@ +bin/ncat |