1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/www/squid31/Makefile
Peter Wemm 4b5079e3d2 Update 1.1.3 -> 1.1.4 + distributed patches
Among the changes are some patches submitted to the maintainers by
yours truly to improve the password support in cachemgr.cgi.  It also
reports the resource "maxrss" correctly for what it is.

The distributed patches to 1.1.4:
    * ftpget.c.patch: Changes the default MIME type to
      "application/octet-stream" and fixes directory listings from
      NetWare servers.
    * icp.c.patch: Fixes "Unknown status reply from server: 0!" error
      messages in Netscape.
    * ipcache.c.patch: Fixes ipcache_dnsHandleRead() coredumps.
    * neighbors.c.patch: Fixes BIT_SET/BIT_TEST typo in
      getDefaultParent().

Reviewed by:
Submitted by:
Obtained from:
1997-01-19 03:24:13 +00:00

60 lines
2.1 KiB
Makefile

# New ports collection makefile for: squid
# Version required: 1.1.4
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
# $Id: Makefile,v 1.17 1997/01/07 18:49:06 peter Exp $
#
DISTNAME= squid-1.1.4
CATEGORIES= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1/ \
ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-1.1/ \
ftp://sunsite.auc.dk/pub/infosystems/squid/squid-1.1/ \
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.4/
PATCHFILES+= ftpget.c.patch icp.c.patch ipcache.c.patch neighbors.c.patch
DIST_SUBDIR= squid
MAINTAINER= peter@freebsd.org
GNU_CONFIGURE= yes
# Follow the apache port's lead...
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/squid --bindir=${PREFIX}/sbin \
--libexecdir=${PREFIX}/sbin --localstatedir=${PREFIX}/squid
STRIP= # won't install scripts correctly othervise.
MAKEFILE= makefile
# If you need to set any of these options, read the source and uncomment
# these if appropriate.
#MAKE_ENV+= HOST_OPT="-DCACHEMGR_HOSTNAME=\"getfullhostname()\""
#MAKE_ENV+= AUTH_OPT="-DUSE_PROXY_AUTH=1"
#MAKE_ENV+= LOG_HDRS_OPT="-DLOG_FULL_HEADERS=1"
#MAKE_ENV+= ICMP_OPT="-DUSE_ICMP=1"
#MAKE_ENV+= DELAY_HACK="-DDELAY_HACK=1"
#MAKE_ENV+= USERAGENT_OPT="-DUSE_USERAGENT_LOG=1"
#MAKE_ENV+= KILL_PARENT_OPT="-DKILL_PARENT_OPT"
#MAKE_ENV+= USE_POLL_OPT="-DUSE_POLL"
#MAKE_ENV+= ANON_OPT="-DUSE_ANONYMIZER"
post-install:
.for file in cachemgr.cgi client dnsserver ftpget pinger squid
strip ${PREFIX}/sbin/${file}
.endfor
${MKDIR} ${PREFIX}/squid/logs
${MKDIR} ${PREFIX}/squid/cache
@if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
.include <bsd.port.mk>