freebsd-ports/www/mod_security/Makefile

52 lines
1.1 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: mod_security
# Date created: 4 June 2003
# Whom: Alex Dupre <sysadmin@alexdupre.com>
#
# $FreeBSD$
#
PORTNAME= mod_security
PORTVERSION= 1.8.7
2004-03-29 00:06:15 +02:00
CATEGORIES= www security
MASTER_SITES= http://www.modsecurity.org/download/
DISTNAME= ${PORTNAME:S/_//}-${PORTVERSION}
MAINTAINER= ale@FreeBSD.org
COMMENT= An intrusion detection and prevention engine
USE_APACHE= yes
.include <bsd.port.pre.mk>
2004-02-22 13:03:20 +01:00
.if exists(${LOCALBASE}/include/apache2/httpd.h)
WITH_APACHE2= yes
.endif
.if defined(WITH_APACHE2)
APWRKSRC?= ${WRKSRC}/apache2
PLIST_SUB= APACHE=apache2
SO= la
.else
APWRKSRC?= ${WRKSRC}/apache1
PLIST_SUB= APACHE=apache
SO= so
.endif
2004-07-30 09:06:19 +02:00
DOCS= CHANGES INSTALL LICENSE README modsecurity-manual.pdf
do-build:
@cd ${APWRKSRC} && ${APXS} -c mod_security.c
do-install:
${APXS} -i -a -n security ${APWRKSRC}/mod_security.${SO}
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/httpd.conf.example-* ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${DOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>