blob: 146859f4adbc2cf651a737a0846db51731bd1d6f (
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
# 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/
EXTRACT_SUFX= .tgz
MAINTAINER= peter@FreeBSD.ORG
ALL_TARGET= tproxy
# This has only been tested with -current, although it might work if you
# can get the ipfilter package to build on a 2.2.x system. YMMV.
# ftp://cheops.anu.edu.au/pub/net/firewall/ip-filter/
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>
|