mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
f6e4fe43e7
prewikka 0.9.8 Changelog: - Save/load user configuration when using CGI authentication mode (#181). - Show Prewikka version in the About page (#177). - Use Python logging facility (available backend: stderr, file, smtp, syslog), multiple simultaneous handler supported (#113). - Fix anonymous authentication. - Fix external process going into zombie state (#178). - Fix sqlite schema (#180). - Display correct alertident for invalid CorrelationAlert analyzerid/messageid pair. - prewikka-httpd should now log the source address. - Thread safety fixes. PR: ports/105807 Submitted by: maintainer (Robin Gruyters)
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
# New ports collection makefile for: prewikka
|
|
# Date created: 2006-03-13
|
|
# Whom: Robin Gruyters <r.gruyters@yirdis.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= prewikka
|
|
PORTVERSION= 0.9.8
|
|
CATEGORIES= www security python
|
|
MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
|
|
http://www.prelude-ids.org/download/releases/old/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= r.gruyters@yirdis.nl
|
|
COMMENT= Frontend for the Prelude IDS
|
|
|
|
BUILD_DEPENDS= cheetah-compile:${PORTSDIR}/devel/py-cheetah
|
|
LIB_DEPENDS= prelude.10:${PORTSDIR}/security/libprelude \
|
|
preludedb.4:${PORTSDIR}/security/libpreludedb
|
|
|
|
USE_PYTHON= 2.3+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/conf/prewikka.conf ${WRKSRC}/conf/prewikka.conf-dist
|
|
${REINPLACE_CMD} 's,conf/prewikka.conf,conf/prewikka.conf-dist,' \
|
|
${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/prewikka/prewikka.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/prewikka/prewikka.conf-dist \
|
|
${PREFIX}/etc/prewikka/prewikka.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|