diff options
author | Babak Farrokhi <farrokhi@FreeBSD.org> | 2006-11-08 19:15:14 +0000 |
---|---|---|
committer | Babak Farrokhi <farrokhi@FreeBSD.org> | 2006-11-08 19:15:14 +0000 |
commit | fc762d51a559aa17b994f5c7751b54c326dcbd98 (patch) | |
tree | 6d9cb98eadeca27097e0e6cbbcf8e847be830bc0 /net/tcpxd | |
parent | 7fc29348339886cc31c3e4f79f3108678603b864 (diff) | |
download | ports-fc762d51a559aa17b994f5c7751b54c326dcbd98.tar.gz ports-fc762d51a559aa17b994f5c7751b54c326dcbd98.zip |
tcpxd is a general purpose TCP/IP relay program designed
to be simple to get going, requiring only three parameters;
the port to listen on, the host to forward to, and the port
on that host to connect to.
PR: ports/104902
Submitted by: self
Approved by: miwi (mentor)
Notes
Notes:
svn path=/head/; revision=176842
Diffstat (limited to 'net/tcpxd')
-rw-r--r-- | net/tcpxd/Makefile | 25 | ||||
-rw-r--r-- | net/tcpxd/distinfo | 3 | ||||
-rw-r--r-- | net/tcpxd/pkg-descr | 6 |
3 files changed, 34 insertions, 0 deletions
diff --git a/net/tcpxd/Makefile b/net/tcpxd/Makefile new file mode 100644 index 000000000000..0fa503d1f5c5 --- /dev/null +++ b/net/tcpxd/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: tcpxd +# Date created: 2006-10-29 +# Whom: Babak Farrokhi <babak@farrokhi.net> +# +# $FreeBSD$ +# + +PORTNAME= tcpxd +PORTVERSION= 1.4 +CATEGORIES= net net-mgmt +MASTER_SITES= http://quozl.us.netrek.org/tcpxd/ \ + http://fresh.t-systems-sfr.com/unix/src/privat2/ + +MAINTAINER= farrokhi@FreeBSD.org +COMMENT= General purpose TCP/IP relay + +HAS_CONFIGURE= yes + +PLIST_FILES= sbin/tcpxd etc/tcpxd.conf + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/tcpxd ${PREFIX}/sbin + ${INSTALL_DATA} ${WRKSRC}/tcpxd.conf ${PREFIX}/etc/tcpxd.conf + +.include <bsd.port.mk> diff --git a/net/tcpxd/distinfo b/net/tcpxd/distinfo new file mode 100644 index 000000000000..92b5c18ff2df --- /dev/null +++ b/net/tcpxd/distinfo @@ -0,0 +1,3 @@ +MD5 (tcpxd-1.4.tar.gz) = d0b48ccf8fbb68bbcc5280b3dbc63a70 +SHA256 (tcpxd-1.4.tar.gz) = 1178aeb31c974f27aa4075a40a26565977e3ce35c0f7f345c50dd6a02fdc7f89 +SIZE (tcpxd-1.4.tar.gz) = 146960 diff --git a/net/tcpxd/pkg-descr b/net/tcpxd/pkg-descr new file mode 100644 index 000000000000..72d1f1e86360 --- /dev/null +++ b/net/tcpxd/pkg-descr @@ -0,0 +1,6 @@ +tcpxd is a general purpose TCP/IP relay program designed +to be simple to get going, requiring only three parameters; +the port to listen on, the host to forward to, and the port +on that host to connect to. + +WWW: http://quozl.us.netrek.org/tcpxd/ |