mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
c1ccf1496d
-Add support for larger set sizes (for group/user specifications) -Add the ability to pass the effective uid to a trigger -Fixed bug which resulted in "status" being ignored for single state sequences -Added support for logging channels. -Added support for state triggers. -Fixed bug where alerts were being produced for state machines that have been expired. (Alerts have already been generated). -Fixed two memory leaks which could really impact systems with high volumes audit records. Approved by: wxs Reviewed by: alm (maintainer)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# New ports collection makefile for: bsmtrace
|
|
# Date created: 13 March 2007
|
|
# Whom: alm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bsmtrace
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= csjp
|
|
|
|
MAINTAINER= alm@FreeBSD.org
|
|
COMMENT= BSM based intrusion detection system
|
|
|
|
SUB_FILES= pkg-message
|
|
MAN1= bsmtrace.1
|
|
MAN5= bsmtrace.conf.5
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${OSVERSION} < 602000
|
|
IGNORE= release 6.2-RELEASE or later is required
|
|
.endif
|
|
|
|
.if defined(WITH_PCRE)
|
|
LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre
|
|
MAKE_ENV+= PCRE=1
|
|
.endif
|
|
|
|
pre-build:
|
|
${REINPLACE_CMD} -e \
|
|
's,/etc/bsmtrace.conf,${PREFIX}/etc/bsmtrace.conf,' \
|
|
${WRKSRC}/config.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bsmtrace ${PREFIX}/sbin
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/bsmtrace.conf ${EXAMPLESDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/bsmtrace.1 ${MAN1PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/bsmtrace.conf.5 ${MAN5PREFIX}/man/man5
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|