98 lines
3.1 KiB
Makefile
98 lines
3.1 KiB
Makefile
# Created by: Marcello Coutinho
|
|
|
|
PORTNAME= e2guardian
|
|
PORTVERSION= 5.3.4
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= marcellocoutinho@gmail.com
|
|
COMMENT= Dansguardian fork with many improvements and bug fixes
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= rst2man:textproc/py-docutils@${PY_FLAVOR}
|
|
LIB_DEPENDS= libpcre.so:devel/pcre
|
|
|
|
USES= autoreconf compiler:c++11-lang libtool localbase pkgconfig \
|
|
python
|
|
USE_GITHUB= yes
|
|
|
|
USE_CXXSTD= c++11
|
|
USE_RC_SUBR= e2guardian
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-logdir=/var/log \
|
|
--with-piddir=/var/run
|
|
|
|
OPTIONS_RADIO= AV
|
|
OPTIONS_RADIO_AV=AVAST CLAMD KAV
|
|
OPTIONS_DEFINE= CLISCAN ICAP NTLM DNS EMAIL DEBUG DOCS SSL_MITM
|
|
OPTIONS_DEFAULT=CLAMD DNS
|
|
OPTIONS_SUB= yes
|
|
|
|
CLISCAN_DESC= Enable support for CLI content scanners
|
|
CLAMD_DESC= Enable ClamD AV content scanner
|
|
ICAP_DESC= Enable ICAP AV content scanner support
|
|
KAV_DESC= Enable Kaspersky AV support
|
|
AVAST_DESC= Enable AvastD content scanner
|
|
NTLM_DESC= Include NTLM authentication plugin
|
|
DNS_DESC= Include DNS authetication plugin
|
|
EMAIL_DESC= Enable e-mail reporting support
|
|
DEBUG_DESC= Enable debug build mode
|
|
SSL_MITM_DESC= Enable support for the SSL MITM plugin
|
|
|
|
CONFDIR= ${PREFIX}/etc/e2guardian
|
|
|
|
CLISCAN_CONFIGURE_ENABLE= commandline
|
|
CLAMD_CONFIGURE_ENABLE= clamd
|
|
CLAMD_RUN_DEPENDS= clamav>=0:security/clamav
|
|
ICAP_CONFIGURE_ENABLE= icap
|
|
KAV_CONFIGURE_ENABLE= kavd
|
|
AVAST_CONFIGURE_ENABLE= avastd
|
|
NTLM_CONFIGURE_ENABLE= ntlm
|
|
NTLM_USES= iconv
|
|
DNS_CONFIGURE_ENABLE= dnsauth
|
|
EMAIL_CONFIGURE_ENABLE= email
|
|
DEBUG_CONFIGURE_OFF= --with-dgdebug=off --with-newdebug=off
|
|
DEBUG_CONFIGURE_ON= --with-dgdebug=on --with-newdebug=on
|
|
SSL_MITM_USES= ssl
|
|
SSL_MITM_CONFIGURE_ENABLE= sslmitm
|
|
SSL_MITM_CONFIGURE_ENV= OPENSSL_LIBS="-lssl -lcrypto" \
|
|
OPENSSL_CFLAGS="-I${OPENSSLINC} -L${OPENSSLLIB}"
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCLAMD} || ${PORT_OPTIONS:MICAP} || \
|
|
${PORT_OPTIONS:MKAV} || ${PORT_OPTIONS:MCLISCAN} || \
|
|
${PORT_OPTIONS:MAVAST}
|
|
PLIST_SUB+= SCANNERS=""
|
|
.else
|
|
PLIST_SUB+= SCANNERS="@comment "
|
|
.endif
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-install:
|
|
@${FIND} ${STAGEDIR}${ETCDIR} -type f \
|
|
\( -name '*.conf' -or -name '*list' -or -name '*.story' \) \
|
|
-exec ${MV} {} {}.sample \;
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups \
|
|
${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups.sample
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups \
|
|
${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups.sample
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default \
|
|
${STAGEDIR}${ETCDIR}/lists/bannedrooms/default.sample
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/domainsnobypass \
|
|
${STAGEDIR}${ETCDIR}/lists/domainsnobypass.sample
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/ipnobypass \
|
|
${STAGEDIR}${ETCDIR}/lists/ipnobypass.sample
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/urlnobypass \
|
|
${STAGEDIR}${ETCDIR}/lists/urlnobypass.sample
|
|
@${MKDIR} ${STAGEDIR}${ETCDIR}/lists/contentscanners
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/exceptionvirusextensionlist.sample \
|
|
${STAGEDIR}${ETCDIR}/lists/contentscanners/
|
|
@${MV} ${STAGEDIR}${ETCDIR}/lists/exceptionvirussiteiplist.sample \
|
|
${STAGEDIR}${ETCDIR}/lists/contentscanners/
|
|
|
|
.include <bsd.port.mk>
|