Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Nov 2013 13:23:15 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r333568 - head/Mk
Message-ID:  <201311121323.rACDNFnm047925@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Tue Nov 12 13:23:14 2013
New Revision: 333568
URL: http://svnweb.freebsd.org/changeset/ports/333568

Log:
  Allow multiple value in ${opt}_USE= FOO=bar,baz.
  
  Which is nice in case you end up with something like :
  X11_USE=	xorg=x11 xorg=ice xorg=sm xorg=xext xorg=xineramaproto
  		xorg=xinerama xorg=xrandr xorg=xrender xorg=xtst
  
  now you can do :
  X11_USE=	xorg=x11,ice,sm,xext,xineramaproto,xinerama,xrandr,xrender,xtst
  
  PR:		ports/183892
  Approved by:	bapt

Modified:
  head/Mk/bsd.options.mk

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Tue Nov 12 13:09:18 2013	(r333567)
+++ head/Mk/bsd.options.mk	Tue Nov 12 13:23:14 2013	(r333568)
@@ -95,6 +95,8 @@
 #
 # ${opt}_USE=	FOO=bar		When option is enabled, it will  enable
 #							USE_FOO+= bar
+#							If you need more than one option, you can do
+#							FOO=bar,baz and you'll get USE_FOO=bar baz
 #
 # For each of CFLAGS CPPFLAGS CXXFLAGS LDFLAGS CONFIGURE_ENV MAKE_ARGS MAKE_ENV
 # ALL_TARGET INSTALL_TARGET USES DISTFILES PLIST_FILES PLIST_DIRS PLIST_DIRSTRY
@@ -383,7 +385,7 @@ PLIST_SUB:=	${PLIST_SUB} ${opt}="@commen
 .    if defined(${opt}_USE)
 .      for option in ${${opt}_USE}
 _u=		${option:C/=.*//g}
-USE_${_u:U}+=	${option:C/.*=//g}
+USE_${_u:U}+=	${option:C/.*=//g:C/,/ /g}
 .      endfor
 .    endif
 .    if defined(${opt}_CONFIGURE_ENABLE)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311121323.rACDNFnm047925>