Bug 188536 - [Maintainer Update] comms/fllog to use *_CONFIGURE_* for knob
Summary: [Maintainer Update] comms/fllog to use *_CONFIGURE_* for knob
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Diane Bruce
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-12 22:50 UTC by Stephen Hurd
Modified: 2014-04-12 23:20 UTC (History)
0 users

See Also:


Attachments
file.diff (612 bytes, patch)
2014-04-12 22:50 UTC, Stephen Hurd
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Stephen Hurd freebsd_committer freebsd_triage 2014-04-12 22:50:01 UTC
Change from old style .if/CONFUGRE_ARGS+=/.else to new style *_CONFIGURE_* for the knob.

No functional change.

Fix: Patch attached with submission follows:
Comment 1 Diane Bruce freebsd_committer freebsd_triage 2014-04-12 22:58:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->db

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-04-12 23:19:07 UTC
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>
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Diane Bruce freebsd_committer freebsd_triage 2014-04-12 23:19:17 UTC
State Changed
From-To: open->closed