1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/www/mod_security/Makefile
Tijl Coosemans 0d6e69bd42 Bump PORTREVISION on everything that depends on devel/apr1 due to the
library version change.

Approved by:	portmgr (implicit)
2014-06-12 09:17:32 +00:00

75 lines
1.8 KiB
Makefile

# $FreeBSD$
PORTNAME= mod_security
PORTVERSION= 2.7.7
PORTREVISION= 3
CATEGORIES= www security
MASTER_SITES= http://www.modsecurity.org/tarball/${PORTVERSION}/
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:S/_//:S/2//}-apache_${PORTVERSION}
MAINTAINER= walter@lifeforms.nl
COMMENT= Intrusion detection and prevention engine
LICENSE= APACHE20
LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \
libapr-1.so:${PORTSDIR}/devel/apr1
USE_APACHE= 22+
USE_GNOME= libxml2
GNU_CONFIGURE= yes
USES= perl5
AP_GENPLIST= yes
AP_INC= ${LOCALBASE}/include/libxml2
AP_LIB= ${LOCALBASE}/lib
MODULENAME= mod_security2
SRC_FILE= *.c
PORTDOCS= *
DOCSDIR= ${PREFIX}/share/doc/${MODULENAME}
SUB_FILES+= mod_security2.conf
SUB_LIST+= APACHEETCDIR="${APACHEETCDIR}"
PLIST_FILES= etc/modsecurity.conf-example \
${APACHEMODDIR}/mod_security2.so \
bin/rules-updater.pl \
lib/mod_security2.so
OPTIONS_DEFINE= LUA MLOGC
LUA_CONFIGURE_ON= --with-lua=${LOCALBASE}
LUA_CONFIGURE_OFF+= --without-lua
LUA_USES= lua
MLOGC_DESC= Build ModSecurity Log Collector
MLOGC_CONFIGURE_ON= --with-curl=${LOCALBASE} --disable-errors
MLOGC_CONFIGURE_OFF= --disable-mlogc
MLOGC_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
MLOGC_PLIST_FILES= bin/mlogc bin/mlogc-batch-load.pl
# ap2x- prefix OPTIONSFILE fix
OPTIONSFILE= ${PORT_DBDIR}/www_mod_security/options
.include <bsd.port.options.mk>
REINPLACE_ARGS= -i ""
AP_EXTRAS+= -DWITH_LIBXML2
CONFIGURE_ARGS+= --with-apxs=${APXS} --with-pcre=${LOCALBASE}
post-patch:
@${REINPLACE_CMD} -e "s/lua5.1/lua-${LUA_VER}/g" ${WRKSRC}/configure
pre-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}
post-install:
${INSTALL_DATA} ${WRKSRC}/modsecurity.conf-recommended \
${STAGEDIR}${PREFIX}/etc/modsecurity.conf-example
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${COPYTREE_SHARE} "doc" ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>