blob: 7e8735c13dc3a7043bfc37a050a762c4b5bd6cbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: transproxy
# Date created: Fri Mar 27 21:24:13 WST 1998
# Whom: Peter Wemm <peter@netplex.com.au>
#
# $FreeBSD$
#
PORTNAME= transproxy
PORTVERSION= 1.4
CATEGORIES= www
MASTER_SITES= ftp://ftp.nlc.net.au/pub/unix/transproxy/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Transparent HTTP proxy for ipfw's fwd rule (or IPFILTER's ipnat command)
MAN8= tproxy.8
.include <bsd.port.pre.mk>
# Requires FreeBSD-3.0 or higher because of a feature it uses to ignore
# the death of child processes. Also later versions of FreeBSD have the
# ipfw fwd rule, and IPFILTER ipnat command, which is needed for this
# sort of program anyway.
.if ${OSVERSION} < 300000
BROKEN= "transproxy requires SA_NOCLDWAIT, available in 3.x or later"
.endif
.include <bsd.port.post.mk>
|