91 lines
3.2 KiB
Makefile
91 lines
3.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.2 1999/03/17 03:51:51 brad Exp $
|
|
# $FreeBSD: Makefile,v 1.54 1998/12/26 15:55:47 peter Exp $
|
|
|
|
DISTNAME= squid-2.1.PATCH2
|
|
PKGNAME= squid-2.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://squid.nlanr.net/pub/squid-2/STABLE/ \
|
|
ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \
|
|
ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/
|
|
|
|
EXTRACT_SUFX= -src.tar.gz
|
|
|
|
PATCH_SITES= http://squid.nlanr.net/Squid/v2/2.1/
|
|
PATCHFILES= squid-2.1.PATCH2-clientHandleIMSReply-leak.patch
|
|
|
|
MAINTAINER= brad@openbsd.org
|
|
|
|
DIST_SUBDIR= squid2.1
|
|
PATCH_DIST_STRIP= -p0
|
|
SYSCONFDIR= /etc/squid
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${SYSCONFDIR} \
|
|
--localstatedir=/var/squid
|
|
STRIP= # won't install scripts correctly othervise.
|
|
MAKEFILE= makefile
|
|
NO_LATEST_LINK= yes
|
|
|
|
# Some other configure options..
|
|
# - Compile and use the malloc package from Doug Lea
|
|
#CONFIGURE_ARGS+= --enable-dlmalloc
|
|
# - Compile and use the supplied GNUregex routines instead of BSD regex.
|
|
#CONFIGURE_ARGS+= --enable-gnuregex
|
|
# - Enable simple malloc debugging
|
|
#CONFIGURE_ARGS+= --enable-xmalloc-debug
|
|
# - Detailed trace of memory allocations
|
|
#CONFIGURE_ARGS+= --enable-xmalloc-debug-count
|
|
# - Show malloc statistics in cachemgr status pages
|
|
#CONFIGURE_ARGS+= --enable-xmalloc-statistics
|
|
# - Enable CARP support
|
|
#CONFIGURE_ARGS+= --enable-carp
|
|
# - Use ASYNC disk I/O (Requires real threads, apparently runs on libc_r)
|
|
#CONFIGURE_ARGS+= --enable-async-io
|
|
# - Enable ICMP pinging for heirarchy stats and selection
|
|
#CONFIGURE_ARGS+= --enable-icmp
|
|
# - Enable delay pools to limit bandwidth usage
|
|
#CONFIGURE_ARGS+= --enable-delay-pools
|
|
# - Enable generic memory use tracing
|
|
#CONFIGURE+ARGS+= --enable-mem-gen-trace
|
|
# - Enable logging of the User-Agent header
|
|
#CONFIGURE_ARGS+= --enable-useragent-log
|
|
# - Kill parent (eg: RunCache) on shutdown (use with great care!!)
|
|
#CONFIGURE_ARGS+= --enable-kill-parent-hack
|
|
# - Turn on SNMP server support
|
|
#CONFIGURE_ARGS+= --enable-snmp
|
|
# - Optimize time updates to one per second rather than calling gettimeofday()
|
|
#CONFIGURE_ARGS+= --enable-time-hack
|
|
# - Set an explicit hostname in cachemgr.cgi
|
|
#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname
|
|
# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP
|
|
# assigned IP addresses)
|
|
#CONFIGURE_ARGS+= --enable-arp-acl
|
|
# - Enable HTCP protocol
|
|
#CONFIGURE_ARGS+= --enable-htcp
|
|
# - Enable Forw/Via database
|
|
#CONFIGURE_ARGS+= --enable-forw-via-db
|
|
# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html
|
|
#CONFIGURE_ARGS+= --enable-cache-digests
|
|
# - Select language for Error pages (see errors dir)
|
|
#CONFIGURE_ARGS+= --enable-err-language=lang
|
|
# - Strict HTTP compliance
|
|
#CONFIGURE_ARGS+= --disable-http-violations
|
|
# - Enable Transparent Proxy support for IP-Filter systems
|
|
#CONFIGURE_ARGS+= --enable-ipf-transparent
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/src; make install-pinger
|
|
.for file in client squid
|
|
if [ -f ${PREFIX}/sbin/${file} ] ; then \
|
|
strip ${PREFIX}/sbin/${file} ; \
|
|
fi
|
|
.endfor
|
|
.for file in cachemgr.cgi dnsserver pinger unlinkd
|
|
if [ -f ${PREFIX}/libexec/${file} ] ; then \
|
|
strip ${PREFIX}/libexec/${file} ; \
|
|
fi
|
|
.endfor
|
|
${MKDIR} /var/squid/logs
|
|
${MKDIR} /var/squid/cache
|
|
|
|
.include <bsd.port.mk>
|