blob: 86cd83bf30f21e32e361e5cd85f0e16d270f0bbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# 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.15
PORTREVISION= 3
CATEGORIES= security
MASTER_SITES= http://www.prelude-technologies.com/download/releases/${PORTNAME}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Prelude Network Intrusion Detection System Log Monitoring Lackey
LIB_DEPENDS+= prelude.20:${PORTSDIR}/security/libprelude \
pcre.3:${PORTSDIR}/devel/pcre
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_RC_SUBR= prelude-lml
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>
|