svn commit: r351152 - head/comms/fllog

Diane Bruce db at FreeBSD.org
Sat Apr 12 22:19:05 UTC 2014


Author: db
Date: Sat Apr 12 22:19:04 2014
New Revision: 351152
URL: http://svnweb.freebsd.org/changeset/ports/351152
QAT: https://qat.redports.org/buildarchive/r351152/

Log:
  - Change from old style .if/CONFUGRE_ARGS+=/.else to new style *_CONFIGURE_*
    for the knob.
  
  PR:		ports/188536
  Submitted by:	Maintainer

Modified:
  head/comms/fllog/Makefile

Modified: head/comms/fllog/Makefile
==============================================================================
--- head/comms/fllog/Makefile	Sat Apr 12 22:18:27 2014	(r351151)
+++ head/comms/fllog/Makefile	Sat Apr 12 22:19:04 2014	(r351152)
@@ -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>


More information about the svn-ports-head mailing list