25d1e2e8fc
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org> Reviewed by: me Add libprelude 0.8.5, libraries of prelude Network Intrusion Detection System.
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# New ports collection makefile for: libprelude
|
|
# Date created: Sun Aug 4 19:31:17 CEST 2002
|
|
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libprelude
|
|
PORTVERSION= 0.8.5
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.prelude-ids.org/download/releases/
|
|
|
|
MAINTAINER= sheepkiller@cultdeadsheep.org
|
|
COMMENT= Prelude Network Intrusion Detection System librairies
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_MAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOCONF= yes
|
|
WANT_AUTOCONF_VER= 253
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc \
|
|
--program-prefix="" --localstatedir=/var
|
|
|
|
.if defined(WITHOUT_SSL)
|
|
CONFIGURE_ARGS+= --disable-openssl
|
|
.else
|
|
USE_OPENSSL= YES
|
|
.endif
|
|
|
|
post-extract:
|
|
@${ECHO} ""
|
|
@${ECHO} "*------------------------------------------------------------------*"
|
|
@${ECHO} "Options:"
|
|
@${ECHO} ""
|
|
@${ECHO} " WITHOUT_SSL=yes Disable SSL support in libprelude"
|
|
@${ECHO} "*------------------------------------------------------------------*"
|
|
@${ECHO} ""
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} 's!\$(prefix)/libprelude/include!\$(prefix)/include/libprelude!' \
|
|
${WRKSRC}/Makefile.in
|
|
@${ECHO} "===> Regenerating libltdl configure script (Please wait...)"
|
|
@(cd ${WRKSRC}/libltdl ; autoconf)
|
|
|
|
.include <bsd.port.mk>
|