diff options
author | Peter Wemm <peter@FreeBSD.org> | 1998-03-28 08:20:32 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1998-03-28 08:20:32 +0000 |
commit | 930db90bb494a9fdfbd77f94ef6bd68c768a1fa5 (patch) | |
tree | 84e1a476321885467a3f628888787eaa4b7f8c7e /www/transproxy/Makefile | |
parent | Symbolic link should be to /dev/scgx instead. (diff) |
Import a -current only transparent proxy kit, based on the Linux transproxy
v0.3 tools. It could probably work with 2.2.x if the ipfilter package was
built and installed.
Diffstat (limited to 'www/transproxy/Makefile')
-rw-r--r-- | www/transproxy/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/www/transproxy/Makefile b/www/transproxy/Makefile new file mode 100644 index 000000000000..9acbdfece545 --- /dev/null +++ b/www/transproxy/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: transproxy +# Version required: 0.3 +# Date created: Fri Mar 27 21:24:13 WST 1998 +# Whom: Peter Wemm <peter@netplex.com.au> +# +# $FreeBSD$ +# + +DISTNAME= transproxy-0.3 +CATEGORIES= www net +MASTER_SITES= ftp://ftp.nlc.net.au/pub/linux/www/ +DISTFILES= transproxy-0.3.tgz + +MAINTAINER= peter@FreeBSD.ORG + +ALL_TARGET= tproxy + +OSVERSION!= sysctl -n kern.osreldate +.if ${OSVERSION} < 300000 +BROKEN= "transproxy requires ipfilter, available in 3.0 or later" +.endif + +do-install: + cd ${WRKSRC}; ${INSTALL_PROGRAM} ${WRKSRC}/tproxy ${PREFIX}/sbin + +.include <bsd.port.mk> |