openbsd-ports/www/squid/Makefile
ajacoutot 4ec44530ca Simplify after recent rc.subr change.
The framework is now stable and we will start documenting it (at last).
2010-12-27 14:50:22 +00:00

94 lines
2.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.114 2010/12/27 14:50:24 ajacoutot Exp $
COMMENT= WWW and FTP proxy cache and accelerator
DISTNAME= squid-2.7.STABLE9
REVISION= 5
CATEGORIES= www
MASTER_SITES= ${HOMEPAGE}/Versions/v2/2.7/
DIST_SUBDIR= squid
HOMEPAGE= http://www.squid-cache.org/
MAINTAINER= Brad Smith <brad@comstyle.com>
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= asn1 c com_err crypto krb5 gssapi m pthread ssl
SQUIDDIR?= /var/squid
SUBST_VARS= SQUIDDIR
FLAVORS= ldap ntlm snmp
FLAVOR?=
.include <bsd.own.mk>
# optimization workaround for gcc 2.95
.if ${COMPILER_VERSION:L:Mgcc2}
PATCH_LIST= patch-* gcc-*
.endif
AUTH= basic digest
BASIC_AUTH= NCSA YP
DIGEST_AUTH= password
EXTERNAL_ACL= ip_user unix_group
STOREIO= aufs ufs diskd null
SEPARATE_BUILD= concurrent
AUTOCONF_VERSION= 2.62
CONFIGURE_STYLE= autoconf
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/cfgaux
CONFIGURE_ARGS+=--datadir="${PREFIX}/share/squid" \
--enable-auth="${AUTH}" \
--enable-arp-acl \
--enable-basic-auth-helpers="${BASIC_AUTH}" \
--enable-digest-auth-helpers="${DIGEST_AUTH}" \
--enable-delay-pools \
--enable-external-acl-helpers="${EXTERNAL_ACL}" \
--enable-forw-via-db \
--enable-negotiate-auth-helpers="squid_kerb_auth" \
--enable-pf-transparent \
--enable-removal-policies="lru heap" \
--enable-ssl \
--enable-storeio="${STOREIO}" \
--with-pthreads \
--localstatedir="${SQUIDDIR}" \
--enable-follow-x-forwarded-for
.if ${FLAVOR:L:Mldap}
BASIC_AUTH+= LDAP
DIGEST_AUTH+= ldap
EXTERNAL_ACL+= ldap_group
WANTLIB+= ldap lber
LIB_DEPENDS+= databases/openldap
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.endif
.if ${FLAVOR:L:Mntlm}
AUTH+= ntlm
BASIC_AUTH+= SMB
EXTERNAL_ACL+= wbinfo_group
RUN_DEPENDS+= net/samba,ads
CONFIGURE_ARGS+=--enable-ntlm-auth-helpers="fakeauth SMB"
.endif
.if ${FLAVOR:L:Msnmp}
CONFIGURE_ARGS+=--enable-snmp
.endif
pre-build:
@${SUBST_CMD} ${WRKSRC}/src/defines.h \
${WRKSRC}/helpers/external_acl/wbinfo_group/wbinfo_group.pl
post-install:
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/squid
@find ${PREFIX}/share/examples/squid/errors \
-name '*.orig' -print0 | xargs -0 rm -f
.include <bsd.port.mk>