freebsd-ports/security/snortreport/Makefile
Olli Hauer 3e5c2b2fef - update to version 1.3.4
- add OPTIONS support
- add stage support

Changes:
 - support snort 2.9.5
 - Removed the need for jpgraph to display the pie chart
 - Other code improvements
2013-09-28 16:54:24 +00:00

59 lines
1.5 KiB
Makefile

# Created by: Andrea Venturoli <freebsd@netfence.it>
# $FreeBSD$
PORTNAME= snortreport
PORTVERSION= 1.3.4
CATEGORIES= security www
MASTER_SITES= http://www.symmetrixtech.com/ids/
MAINTAINER= ports@FreeBSD.org
COMMENT= Add-on module for snort to generate real-time web reports
LICENSE= GPLv2
OPTIONS_DEFINE= BARNYARD JPGRAPH MYSQL PGSQL
BARNYARD_DESC= Depend on Barnyard2
JPGRAPH_DESC= Graphical charting
BARNYARD_RUN_DEPENDS= barnyard2:${PORTSDIR}/security/barnyard2
JPGRAPH_RUN_DEPENDS= ${LOCALBASE}/share/jpgraph/jpgraph.php:${PORTSDIR}/graphics/jpgraph2
.include <bsd.port.options.mk>
NO_BUILD= yes
SUB_FILES= pkg-message
PORTDOCS= INSTALL Performance.txt create_indexes.sql
FTYPES= css html js php phps png sample
USE_PHP= yes
WANT_PHP_WEB= yes
.if ${PORT_OPTIONS:MMYSQL}
USE_PHP+= mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
USE_PHP+= pgsql
.endif
pre-everything::
@${ECHO} ""
@${ECHO} "You have to configure PHP either with MySQL or PostgreSQL"
@${ECHO} "support in order to let snortreport collect its data."
@${ECHO} ""
post-patch:
${MV} ${WRKSRC}/srconf.php ${WRKSRC}/srconf.php.sample
do-install:
# srconf.conf contains snort database login credentials
${INSTALL} -o ${WWWOWN} -g ${WWWGRP} -m 750 -d ${STAGEDIR}${WWWDIR}
${INSTALL_DATA} ${FTYPES:S|^|${WRKSRC}/*|} ${STAGEDIR}${WWWDIR}
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>