ac6469254b
PR: ports/72099 Submitted by: Freddie Cash <fcash at sd73 dot bc dot ca> (maintainer)
92 lines
2.8 KiB
Makefile
92 lines
2.8 KiB
Makefile
# New ports collection makefile for: dansguardian
|
|
# Date created: April 02, 2002
|
|
# Whom: Freddie Cash <fcash@bigfoot.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dansguardian
|
|
PORTVERSION= 2.7.7.9
|
|
CATEGORIES= www
|
|
MASTER_SITES= # empty, see below
|
|
DISTNAME= DansGuardian-${PORTVERSION:R}-${PORTVERSION:E}.source
|
|
|
|
MAINTAINER= fcash@sd73.bc.ca
|
|
COMMENT= A fast, feature-rich web content filter for Squid proxy servers
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/squid:${PORTSDIR}/www/squid \
|
|
${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache13
|
|
|
|
IGNORE= "currently at lower revision than www/dansguardian"
|
|
|
|
USE_RC_SUBR= yes
|
|
RC_SCRIPTS_SUB=PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}
|
|
|
|
CONFLICTS= dansguardian-2.6*
|
|
LATEST_LINK= dansguardian-devel
|
|
|
|
WRKSRC= ${WRKDIR}/DansGuardian-${PORTVERSION:R}-${PORTVERSION:E}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --bindir=/sbin/ \
|
|
--sysconfdir=/etc/dansguardian/ \
|
|
--sysvdir=/etc/rc.d/ \
|
|
--mandir=/man/ \
|
|
--logdir=/var/log/ \
|
|
--cgidir=/www/cgi-bin/ \
|
|
--piddir=/var/run/
|
|
MAN8= dansguardian.8
|
|
|
|
OPTIONS= DG_GCC3 "Compile using GCC 3.3 on FreeBSD 4.x." off \
|
|
DG_PHRASELISTS "Install new phraselists. (Overwrites existing.)" off
|
|
|
|
DG_URL= http://dansguardian.org/index.php?page=copyright2
|
|
CONFDIR= ${PREFIX}/etc/dansguardian
|
|
|
|
NO_CDROM= "Commercial download is restricted. Check ${DG_URL} for more info"
|
|
NO_PACKAGE= "Redistribution is restricted. Check ${DG_URL} for more info"
|
|
RESTRICTED= ${NO_PACKAGE}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# On FreeBSD 4.x, user can choose which GCC version to use
|
|
.if ${OSVERSION} > 500000 || defined(WITH_DG_GCC3)
|
|
CONFIGURE_ARGS+= --gccver=3
|
|
USE_GCC= 3.4
|
|
.else
|
|
CONFIGURE_ARGS+= --gccver=2
|
|
.endif
|
|
|
|
# User needs to manually download the distfile
|
|
.if !(exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})) && !defined(PACKAGE_BUILDING)
|
|
IGNORE="Commercial source download is restricted. Please visit and read ${DG_URL} and download ${DISTNAME}${EXTRACT_SUFX} into ${DISTDIR} before running make"
|
|
.endif
|
|
|
|
post-extract:
|
|
@${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
|
|
${FILESDIR}/dansguardian.sh > ${WRKSRC}/dansguardian.sh
|
|
|
|
pre-install:
|
|
# Configure pkg-plist based on whether phraselists are to be installed or not
|
|
.if defined(WITH_DG_PHRASELISTS)
|
|
PLIST_SUB= PHRASELISTS=""
|
|
.else
|
|
PLIST_SUB= PHRASELISTS="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
# Check whether to install default phraselists
|
|
.if defined(WITH_DG_PHRASELISTS)
|
|
@${ECHO_MSG} "===> Installing default phraselists into ${CONFDIR}/phraselists"
|
|
@${CP} -R ${WRKSRC}/phraselists ${CONFDIR}
|
|
.else
|
|
@${ECHO_MSG} "===> Skipping installation of phraselists."
|
|
.endif
|
|
|
|
# Install startup script
|
|
@${ECHO_MSG} "===> Installing startup script into ${PREFIX}/etc/rc.d"
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/dansguardian.sh ${PREFIX}/etc/rc.d/start-dg.sh
|
|
|
|
# Display post-install message
|
|
@${CAT} pkg-message
|
|
|
|
.include <bsd.port.post.mk>
|