From a5909018cc3fad6b5485ef535e23a10e86c4bba6 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Wed, 23 Aug 2000 07:35:52 +0000 Subject: 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. --- net/ncat/Makefile | 33 +++++++++++++++++++++++++++++++++ net/ncat/distinfo | 1 + net/ncat/pkg-comment | 1 + net/ncat/pkg-descr | 9 +++++++++ net/ncat/pkg-plist | 1 + net/proxy/Makefile | 33 +++++++++++++++++++++++++++++++++ net/proxy/distinfo | 1 + net/proxy/pkg-comment | 1 + net/proxy/pkg-descr | 8 ++++++++ net/proxy/pkg-plist | 1 + 10 files changed, 89 insertions(+) create mode 100644 net/ncat/Makefile create mode 100644 net/ncat/distinfo create mode 100644 net/ncat/pkg-comment create mode 100644 net/ncat/pkg-descr create mode 100644 net/ncat/pkg-plist create mode 100644 net/proxy/Makefile create mode 100644 net/proxy/distinfo create mode 100644 net/proxy/pkg-comment create mode 100644 net/proxy/pkg-descr create mode 100644 net/proxy/pkg-plist (limited to 'net') 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 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 diff --git a/net/proxy/Makefile b/net/proxy/Makefile new file mode 100644 index 000000000000..8e31e2f5f86a --- /dev/null +++ b/net/proxy/Makefile @@ -0,0 +1,33 @@ +# New ports collection Makefile for: proxy +# Date created: 22 August 2000 +# Whom: jasone +# +# $FreeBSD$ +# + +PORTNAME= proxy +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= proxy.1 +MANCOMPRESSED= no + +do-build: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook bin/proxy/src/proxy) + +do-install: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook proxy_install_a) + +post-install: + @strip ${PREFIX}/bin/proxy + +.include diff --git a/net/proxy/distinfo b/net/proxy/distinfo new file mode 100644 index 000000000000..a9f365257dfd --- /dev/null +++ b/net/proxy/distinfo @@ -0,0 +1 @@ +MD5 (canonware-1.0.0.tar.gz) = ce4ce59792727f662b4b20aa6b002eef diff --git a/net/proxy/pkg-comment b/net/proxy/pkg-comment new file mode 100644 index 000000000000..e63a99469c63 --- /dev/null +++ b/net/proxy/pkg-comment @@ -0,0 +1 @@ +Transparent logging TCP/IP proxy \ No newline at end of file diff --git a/net/proxy/pkg-descr b/net/proxy/pkg-descr new file mode 100644 index 000000000000..cab639e91ee2 --- /dev/null +++ b/net/proxy/pkg-descr @@ -0,0 +1,8 @@ +proxy is a transparent TCP/IP proxy that listens for connections and forwards +bi-directional data with the ability to log the data to stdout or to files +within a specified directory. + +proxy can log the data streams 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/proxy/pkg-plist b/net/proxy/pkg-plist new file mode 100644 index 000000000000..1653d9bd8fff --- /dev/null +++ b/net/proxy/pkg-plist @@ -0,0 +1 @@ +bin/proxy -- cgit v1.2.3