aboutsummaryrefslogtreecommitdiff
path: root/comms/fllog
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2014-04-12 22:19:04 +0000
committerDiane Bruce <db@FreeBSD.org>2014-04-12 22:19:04 +0000
commit44ef17f1243e45fb87db23590ef59fe1518b8601 (patch)
tree074e48e36fab8010368d64d11bdfb6a0ab810fe6 /comms/fllog
parenta04b59ae8a74aa39e80cf84196967321af7fa410 (diff)
downloadports-44ef17f1243e45fb87db23590ef59fe1518b8601.tar.gz
ports-44ef17f1243e45fb87db23590ef59fe1518b8601.zip
- Change from old style .if/CONFUGRE_ARGS+=/.else to new style *_CONFIGURE_*
for the knob. PR: ports/188536 Submitted by: Maintainer
Notes
Notes: svn path=/head/; revision=351152
Diffstat (limited to 'comms/fllog')
-rw-r--r--comms/fllog/Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/comms/fllog/Makefile b/comms/fllog/Makefile
index 2d7866853f6f..a2b5945ca0e5 100644
--- a/comms/fllog/Makefile
+++ b/comms/fllog/Makefile
@@ -23,16 +23,11 @@ OPTIONS_DEFINE= NATIVE_OPT
NATIVE_OPT_DESC= Enable Native Optimizations
-.include <bsd.port.pre.mk>
-
PLIST_FILES= bin/fllog \
share/applications/fllog.desktop \
share/pixmaps/fllog.xpm
-.if ${PORT_OPTIONS:MNATIVE_OPT}
-CONFIGURE_ARGS+=--enable-optimizations=native
-.else
-CONFIGURE_ARGS+=--enable-optimizations=none
-.endif
+NATIVE_OPT_CONFIGURE_ON= --enable-optimizations=native
+NATIVE_OPT_CONFIGURE_OFF= --enable-optimizations=none
.include <bsd.port.mk>