diff options
author | pi <pi@FreeBSD.org> | 2017-03-22 03:51:33 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2017-03-22 03:51:33 +0800 |
commit | bc6cf56c746af5acb78040eafa04a5691374843b (patch) | |
tree | a7399e1225f346a1fd7fa42da7e637eec6f5a8a6 /net-mgmt | |
parent | d47a058b81fa2c7049ecfe858c995fa4440d76a4 (diff) | |
download | freebsd-ports-gnome-bc6cf56c746af5acb78040eafa04a5691374843b.tar.gz freebsd-ports-gnome-bc6cf56c746af5acb78040eafa04a5691374843b.tar.zst freebsd-ports-gnome-bc6cf56c746af5acb78040eafa04a5691374843b.zip |
net-mgmt/pmacct: provide plabel configure flags if option is selected
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/pmacct/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/net-mgmt/pmacct/Makefile b/net-mgmt/pmacct/Makefile index dd08fcbd3c97..1ccd2a88cabc 100644 --- a/net-mgmt/pmacct/Makefile +++ b/net-mgmt/pmacct/Makefile @@ -83,6 +83,12 @@ CONFIGURE_ARGS+=--enable-ipv6 CONFIGURE_ARGS+=--disable-ipv6 .endif +.if ${PORT_OPTIONS:MPLABEL} +CONFIGURE_ARGS+=--enable-plabel +.else +CONFIGURE_ARGS+=--disable-plabel +.endif + .if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+=--enable-threads .else @@ -93,9 +99,11 @@ CONFIGURE_ARGS+=--disable-threads CONFIGURE_ARGS+=--enable-debug .endif -#.if ${PORT_OPTIONS:MMONGO} +.if ${PORT_OPTIONS:MMONGO} #CONFIGURE_ARGS+=--enable-mongodb -#.endif +.else +CONFIGURE_ARGS+=--disable-mongodb +.endif .if ${PORT_OPTIONS:MRABBITMQ} .if ${PORT_OPTIONS:MJANSSON} @@ -127,13 +135,13 @@ LIB_DEPENDS+= libavro.so:devel/avro-c CONFIGURE_ARGS+=--enable-avro .endif -#.if ${PORT_OPTIONS:MNFLOG} +.if ${PORT_OPTIONS:MNFLOG} #CONFIGURE_ARGS+=--enable-nflog #PLIST_SUB+=WITH_NFLOG="" -#.else +.else CONFIGURE_ARGS+=--disable-nflog PLIST_SUB+=WITH_NFLOG="@comment " -#.endif +.endif .if ${PORT_OPTIONS:MGEOIP} LIB_DEPENDS+= libGeoIP.so:net/GeoIP |