8b9d869904
PR: ports/67146 Submitted by: Roman Neuhauser <neuhauser@chello.cz>
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# New ports collection makefile for: acid
|
|
# Date created: Mon Sep 25 16:05:01 CST 2000
|
|
# Whom: Foxfair Hu <foxfair@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= acid
|
|
PORTVERSION= 0.9.6b23
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.andrew.cmu.edu/user/rdanyliw/snort/
|
|
|
|
MAINTAINER= possamai@xs4all.nl
|
|
COMMENT= Analysis Console for Intrusion Databases (ACID) with Snort and MySQL
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/snort:${PORTSDIR}/security/snort \
|
|
${LOCALBASE}/share/adodb/adodb.inc.php:${PORTSDIR}/databases/adodb
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
USE_PHP= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/www/acid
|
|
.for ext in html php sql css inc
|
|
@${INSTALL_DATA} ${WRKSRC}/*.${ext} ${PREFIX}/www/acid
|
|
.endfor
|
|
.ifndef(NOPORTDOCS)
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/www/acid
|
|
@${INSTALL_DATA} ${WRKSRC}/README.mssql ${PREFIX}/www/acid
|
|
@${INSTALL_DATA} ${WRKSRC}/CREDITS ${PREFIX}/www/acid
|
|
@${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/www/acid
|
|
@${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${PREFIX}/www/acid
|
|
.endif
|
|
|
|
post-install:
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|