diff options
author | pav <pav@FreeBSD.org> | 2008-08-01 20:06:53 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-08-01 20:06:53 +0800 |
commit | 2b7a5faba98636973be425a0f5465e5e4fa4f900 (patch) | |
tree | c76cfa92fc67e69c5a4c12fc0d297929fca3f364 /net-mgmt/argus3-clients | |
parent | 3f5910ce46cc4f3692b688a829ae3a39698e0cc8 (diff) | |
download | freebsd-ports-gnome-2b7a5faba98636973be425a0f5465e5e4fa4f900.tar.gz freebsd-ports-gnome-2b7a5faba98636973be425a0f5465e5e4fa4f900.tar.zst freebsd-ports-gnome-2b7a5faba98636973be425a0f5465e5e4fa4f900.zip |
- Add DEBUG option
- Look for sasl2 in LOCALBASE instead of PREFIX
PR: ports/123955
Submitted by: Tomoyuki Sakurai <cherry@trombik.org>
Approved by: maintainer timeout (se; 2 months)
Diffstat (limited to 'net-mgmt/argus3-clients')
-rw-r--r-- | net-mgmt/argus3-clients/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net-mgmt/argus3-clients/Makefile b/net-mgmt/argus3-clients/Makefile index 6380868115ac..cbedc960844d 100644 --- a/net-mgmt/argus3-clients/Makefile +++ b/net-mgmt/argus3-clients/Makefile @@ -14,7 +14,8 @@ MASTER_SITES= http://qosient.com/argus/src/ \ MAINTAINER= se@freebsd.org COMMENT= Client programs for the argus IP network transaction auditing tool -OPTIONS+= SASL "SASL authentication support 1" on +OPTIONS+= SASL "SASL authentication support 1" on \ + DEBUG "Enable debug" off .include <bsd.port.pre.mk> @@ -27,7 +28,7 @@ USE_BISON= build GNU_CONFIGURE= true .if defined(WITH_SASL) -CONFIGURE_ARGS+= --with-sasl=${PREFIX} +CONFIGURE_ARGS+= --with-sasl=${LOCALBASE} .endif MAN1= ra.1 rabins.1 racluster.1 racount.1 ragraph.1 ragrep.1 rahisto.1 \ @@ -35,6 +36,11 @@ MAN1= ra.1 rabins.1 racluster.1 racount.1 ragraph.1 ragrep.1 rahisto.1 \ MAN5= racluster.5 radium.conf.5 rarc.5 MAN8= radium.8 +pre-configure: +.if defined(WITH_DEBUG) + ${TOUCH} ${WRKSRC}/.debug +.endif + do-install: .for i in ra rabins racluster racount radump rafilteraddr \ ragrep rahisto ralabel ranonymize rapath rapolicy \ |