diff options
Diffstat (limited to 'security/prelude-manager/Makefile')
-rw-r--r-- | security/prelude-manager/Makefile | 46 |
1 files changed, 7 insertions, 39 deletions
diff --git a/security/prelude-manager/Makefile b/security/prelude-manager/Makefile index f783d5477acf..c04649f7f550 100644 --- a/security/prelude-manager/Makefile +++ b/security/prelude-manager/Makefile @@ -5,57 +5,25 @@ # $FreeBSD$ PORTNAME= prelude-manager -PORTVERSION= 0.8.10 -PORTREVISION= 1 +PORTVERSION= 0.9.0 CATEGORIES= security MASTER_SITES= http://www.prelude-ids.org/download/releases/ MAINTAINER= sergei@FreeBSD.org COMMENT= Prelude Network Intrusion Detection System central logging point -LIB_DEPENDS+= prelude.1:${PORTSDIR}/security/libprelude \ +LIB_DEPENDS+= prelude.2:${PORTSDIR}/security/libprelude \ + preludedb.0:${PORTSDIR}/security/libpreludedb \ xml2.5:${PORTSDIR}/textproc/libxml2 +USE_GPG= yes +SIG_SUFFIX= .sig USE_GMAKE= yes +USE_AUTOTOOLS= libtool:15 +INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ --localstatedir=/var -.if defined(WITHOUT_SSL) -CONFIGURE_ARGS+= --disable-openssl -.else -USE_OPENSSL= YES -CONFIGURE_ARGS+= --enable-openssl -.endif - -.if defined(WITH_MYSQL) -USE_MYSQL= YES -CONFIGURE_ARGS+= --enable-mysql -PLIST_SUB+= MYSQL="" -.else -CONFIGURE_ARGS+= --disable-mysql -PLIST_SUB+= MYSQL="@comment " -.endif - -.if defined(WITH_POSTGRES) -USE_PGSQL= YES -CONFIGURE_ARGS+= --enable-pgsql -PLIST_SUB+= PGSQL="" -.else -CONFIGURE_ARGS+= --disable-pgsql -PLIST_SUB+= PGSQL="@comment " -.endif - -post-patch: - @${ECHO} "" - @${ECHO} "*---------------------------------------------------------------------------*" - @${ECHO} "Options:" - @${ECHO} "" - @${ECHO} " WITHOUT_SSL=yes Disable SSL support" - @${ECHO} " WITH_MYSQL=yes Enable MySQL support" - @${ECHO} " WITH_POSTGRES=yes Enable PostreSQL support" - @${ECHO} "*---------------------------------------------------------------------------*" - @${ECHO} "" - .include <bsd.port.mk> |