41 lines
943 B
Makefile
41 lines
943 B
Makefile
# $OpenBSD: Makefile,v 1.48 2002/10/04 13:52:48 brad Exp $
|
|
|
|
COMMENT= "WWW and FTP proxy cache and accelerator"
|
|
|
|
DISTNAME= squid-2.5.STABLE1
|
|
CATEGORIES= www
|
|
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
|
|
|
|
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}"
|
|
|
|
.if ${FLAVOR:L:Mtransparent}
|
|
CONFIGURE_ARGS+= --enable-pf-transparent
|
|
.endif
|
|
|
|
post-install:
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/squid
|
|
|
|
.include <bsd.port.mk>
|