50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.43 2002/05/02 02:37:04 brad Exp $
|
|
|
|
COMMENT= "WWW and FTP proxy cache and accelerator"
|
|
|
|
DISTNAME= squid-2.5.PRE7
|
|
CATEGORIES= www
|
|
NEED_VERSION= 1.522
|
|
MASTER_SITES= http://www.squid-cache.org/Versions/v2/2.5/
|
|
DIST_SUBDIR= squid
|
|
|
|
HOMEPAGE= http://www.squid-cache.org/
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SYSCONFDIR= /etc/squid
|
|
SQUIDDIR?= /var/squid
|
|
SUBST_VARS= SQUIDDIR
|
|
|
|
FLAVORS= transparent
|
|
FLAVOR?=
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= autoconf
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/cfgaux
|
|
CONFIGURE_ARGS= --enable-removal-policies="lru heap" \
|
|
--enable-storeio="ufs diskd" \
|
|
--datadir="${PREFIX}/share/squid" \
|
|
--localstatedir="${SQUIDDIR}"
|
|
|
|
# --enable-truncate \
|
|
# --disable-unlinkd \
|
|
|
|
.if ${FLAVOR:L:Mtransparent}
|
|
CONFIGURE_ARGS+= --enable-pf-transparent
|
|
.endif
|
|
|
|
# remove stale autoconf.h left in the distfile
|
|
post-extract:
|
|
@rm -f ${WRKSRC}/include/autoconf.h
|
|
|
|
post-install:
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/squid
|
|
|
|
.include <bsd.port.mk>
|