mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
37e26c557a
Changelog prelude-manager-0.9.7.2: - Allow filtering plugins to hook others filters plugins. - Update reporting code to latest specification for the SNMPService class. - Warn about Un-handled command line arguments. - Properly dump IDMEF-XML output (fix #186). - Various bug fixes. PR: ports/110584 Submitted by: maintainer (Robin Gruyters)
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# New ports collection makefile for: prelude-manager
|
|
# Date created: Sun Aug 4 19:31:17 CEST 2002
|
|
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= prelude-manager
|
|
PORTVERSION= 0.9.7.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
|
|
http://www.prelude-ids.org/download/releases/old/
|
|
|
|
MAINTAINER= r.gruyters@yirdis.nl
|
|
COMMENT= Prelude Network Intrusion Detection System central logging point
|
|
|
|
LIB_DEPENDS+= prelude.11:${PORTSDIR}/security/libprelude \
|
|
gnutls.15:${PORTSDIR}/security/gnutls
|
|
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_RC_SUBR= prelude-manager.sh
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
|
|
--localstatedir=/var
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_XML)
|
|
PLIST_SUB+= WITH_XML="@comment "
|
|
CONFIGURE_ARGS+= --disable-xmltest --without-xml
|
|
.else
|
|
LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2
|
|
PLIST_SUB+= WITH_XML=""
|
|
.endif
|
|
|
|
.if defined(WITHOUT_PRELUDEDB)
|
|
PLIST_SUB+= WITH_PRELUDEDB="@comment "
|
|
.else
|
|
LIB_DEPENDS+= preludedb.4:${PORTSDIR}/security/libpreludedb
|
|
PLIST_SUB+= WITH_PRELUDEDB=""
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/prelude-manager/prelude-manager.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/prelude-manager/prelude-manager.conf-dist \
|
|
${PREFIX}/etc/prelude-manager/prelude-manager.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|