blob: 014f6e751529a4190f9ca17860c697dee1d90c14 (
plain) (
blame)
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
|
# 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.10
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://www.prelude-ids.org/download/releases/
MAINTAINER= ports@FreeBSD.org
COMMENT= Prelude Network Intrusion Detection System librairies
USE_REINPLACE= yes
USE_GMAKE= yes
USE_LIBTOOL_VER= 13
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
.if defined(NOPORTDOCS)
MAKE_ENV+= NOPORTDOCS=yes
.endif
post-extract:
@${ECHO} ""
@${ECHO} "*------------------------------------------------------------------*"
@${ECHO} "Options:"
@${ECHO} ""
@${ECHO} " WITHOUT_SSL=yes Disable SSL support in libprelude"
@${ECHO} "*------------------------------------------------------------------*"
@${ECHO} ""
.include <bsd.port.mk>
|