e54f59994f
supported with apache 2.2.x
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2007/05/18 10:23:16 adrianp Exp $
|
|
#
|
|
|
|
DISTNAME= modsecurity-apache_1.9.4
|
|
PKGNAME= ${APACHE_PKG_PREFIX}-modsecurity-1.9.4
|
|
CATEGORIES= www security
|
|
MASTER_SITES= http://www.modsecurity.org/download/
|
|
|
|
MAINTAINER= adrianp@NetBSD.org
|
|
HOMEPAGE= http://www.modsecurity.org/
|
|
COMMENT= Intrusion detection and prevention engine for web applications
|
|
|
|
.include "../../mk/apache.mk"
|
|
|
|
PKG_APACHE_ACCEPTED= apache13 apache2
|
|
|
|
.if ${PKG_APACHE} == "apache2"
|
|
APACHE_DIR= apache2
|
|
MOD_EXTN= la
|
|
.endif
|
|
|
|
.if ${PKG_APACHE} == "apache13"
|
|
APACHE_DIR= apache1
|
|
MOD_EXTN= so
|
|
.endif
|
|
|
|
PTHREAD_OPTS+= require
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/${APACHE_DIR} && \
|
|
${SETENV} PATH=${PATH:Q} \
|
|
${APXS} ${CPPFLAGS} ${LDFLAGS} -c mod_security.c
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/${APACHE_DIR} && \
|
|
${SETENV} PATH=${PATH:Q} \
|
|
${APXS} ${CPPFLAGS} ${LDFLAGS} -i mod_security.${MOD_EXTN}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ap-security
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ap-security
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/httpd.conf.example-minimal \
|
|
${PREFIX}/share/examples/ap-security
|
|
cd ${WRKSRC}/doc && ${PAX} -rw . ${PREFIX}/share/doc/ap-security
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|