diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-03-31 11:14:54 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-03-31 11:14:54 +0000 |
commit | 36ff53c9eb7a9d69575eba5c988340751c9b21e9 (patch) | |
tree | 625b5b679f8ea26c8a255dffaa20ea44ae9b5ee5 /www/squid25/Makefile | |
parent | 74dd7ceebe30f3e1ab2955be5b6eae3d0d26ad06 (diff) | |
download | ports-36ff53c9eb7a9d69575eba5c988340751c9b21e9.tar.gz ports-36ff53c9eb7a9d69575eba5c988340751c9b21e9.zip |
Notes
Diffstat (limited to 'www/squid25/Makefile')
-rw-r--r-- | www/squid25/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/www/squid25/Makefile b/www/squid25/Makefile index 2da1d701f8dd..801629c8f88e 100644 --- a/www/squid25/Makefile +++ b/www/squid25/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: squid -# Version required: 1.1.8 +# Version required: 1.1.9 # Date created: Thu Nov 7 00:53:18 WST 1996 # Whom: Peter Wemm <peter@freebsd.org> # -# $Id: Makefile,v 1.24 1997/03/04 12:03:23 peter Exp $ +# $Id: Makefile,v 1.25 1997/03/23 15:43:41 peter Exp $ # -DISTNAME= squid-1.1.8 +DISTNAME= squid-1.1.9 CATEGORIES= www MASTER_SITES= \ ftp://squid.nlanr.net/pub/squid-1.1/ \ @@ -15,12 +15,12 @@ MASTER_SITES= \ ftp://ftp.net.lut.ac.uk/squid/squid-1.1/ EXTRACT_SUFX= -src.tar.gz -PATCH_SITES+= http://squid.nlanr.net/Squid/1.1/1.1.8/ -PATCHFILES+= fixes.patch +#PATCH_SITES+= http://squid.nlanr.net/Squid/1.1/1.1.9/ +#PATCHFILES+= fixes.patch MAINTAINER= peter@freebsd.org -DIST_SUBDIR= squid118 +DIST_SUBDIR= squid119 GNU_CONFIGURE= yes # Follow the apache port's lead... CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/squid --bindir=${PREFIX}/sbin \ @@ -43,8 +43,11 @@ MAKEFILE= makefile #MAKE_ENV+= USE_BIN_TREE="-DUSE_BIN_TREE" post-install: + cd ${WRKSRC}/src; make install-pinger .for file in cachemgr.cgi client dnsserver ftpget pinger squid - strip ${PREFIX}/sbin/${file} + if [ -f ${PREFIX}/sbin/${file} ] ; then \ + strip ${PREFIX}/sbin/${file} ; \ + fi .endfor ${MKDIR} ${PREFIX}/squid/logs ${MKDIR} ${PREFIX}/squid/cache |