mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
961c9eef2f
PR: 131286, 131585 (partial) Submitted by: Vladimir Korkodinov <viper at perm dot raid dot ru>
49 lines
1.3 KiB
Makefile
49 lines
1.3 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.14
|
|
PORTREVISION= 3
|
|
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@snow.nl
|
|
COMMENT= Frontend for the Prelude IDS
|
|
|
|
BUILD_DEPENDS= cheetah-compile:${PORTSDIR}/devel/py-cheetah
|
|
LIB_DEPENDS= prelude.19:${PORTSDIR}/security/libprelude \
|
|
preludedb.4:${PORTSDIR}/security/libpreludedb
|
|
|
|
USE_PYTHON= 2.3+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
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
|
|
.if defined(WITHOUT_NLS)
|
|
${REINPLACE_CMD} 's,\(.*self.data_files.extend(self._compile_po_files())\),#\1,' \
|
|
${WRKSRC}/setup.py
|
|
.endif
|
|
|
|
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>
|