mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
e5b51fd3ed
PR: 131287 Submitted by: Vladimir Korkodinov <viper at perm dot raid dot ru> Approved by: Robin Gruyters <r dot gruyters at snow dot nl> (maintainer)
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# New ports collection makefile for: prelude-lml
|
|
# Date created: Sun Aug 4 19:31:17 CEST 2002
|
|
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= prelude-lml
|
|
PORTVERSION= 0.9.14
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.prelude-ids.com/download/releases/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME} ${PORTNAME}/old
|
|
|
|
MAINTAINER= r.gruyters@snow.nl
|
|
COMMENT= Prelude Network Intrusion Detection System Log Monitoring Lackey
|
|
|
|
LIB_DEPENDS+= prelude.19:${PORTSDIR}/security/libprelude \
|
|
pcre.0:${PORTSDIR}/devel/pcre
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_RC_SUBR= prelude-lml.sh
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_FAM)
|
|
USE_FAM= yes
|
|
CONFIGURE_ARGS+= --enable-fam
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-fam
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/prelude-lml/prelude-lml.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/prelude-lml/prelude-lml.conf-dist \
|
|
${PREFIX}/etc/prelude-lml/prelude-lml.conf ; \
|
|
fi
|
|
@if [ ! -f ${PREFIX}/etc/prelude-lml/plugins.rules ]; then \
|
|
${CP} -p ${PREFIX}/etc/prelude-lml/plugins.rules-dist \
|
|
${PREFIX}/etc/prelude-lml/plugins.rules ; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|