Date: Fri, 11 Apr 2014 01:14:04 GMT From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org Subject: [SVN-Commit] r1570 - trunk/Mk Message-ID: <201404110114.s3B1E4ex089546@trillian.chruetertee.ch>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Apr 11 01:14:04 2014 New Revision: 1570 Log: add inclusive syntax to USE_MOZILLA Modified: trunk/Mk/bsd.gecko.mk Modified: trunk/Mk/bsd.gecko.mk ============================================================================== --- trunk/Mk/bsd.gecko.mk Fri Apr 11 01:13:55 2014 (r1569) +++ trunk/Mk/bsd.gecko.mk Fri Apr 11 01:14:04 2014 (r1570) @@ -440,7 +440,8 @@ # listed in '_ALL_DEPENDS'. If your port doesn't # need one of those then you can use '-' like # 'USE_MOZILLA= -png -vpx' to subtract the -# dependencies. +# dependencies. Experimental deps use '+' like +# 'USE_MOZILLA= +speex +theora'. # # GECKO_PLIST_PRE_FILES Manual add files in the plist if it needs. # @@ -643,7 +644,7 @@ ${use:S/-/_WITHOUT_/}= ${TRUE} .endfor -.for dep in ${_ALL_DEPENDS} +.for dep in ${_ALL_DEPENDS} ${USE_MOZILLA:M+*:S/+//} .if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} LIB_DEPENDS+= ${${dep}_LIB_DEPENDS}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404110114.s3B1E4ex089546>