Date: Thu, 22 May 2014 18:24:21 +0000 (UTC) From: Alex Kozlov <ak@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354879 - in head: benchmarks/spec-sfs databases/jdbm2 devel/itext graphics/glew www/eyeos-themes Message-ID: <201405221824.s4MIOLjS092172@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ak Date: Thu May 22 18:24:21 2014 New Revision: 354879 URL: http://svnweb.freebsd.org/changeset/ports/354879 QAT: https://qat.redports.org/buildarchive/r354879/ Log: - Convert to OptionsNG Approved by: portmgr (blanket) Modified: head/benchmarks/spec-sfs/Makefile head/databases/jdbm2/Makefile head/devel/itext/Makefile head/graphics/glew/Makefile head/www/eyeos-themes/Makefile Modified: head/benchmarks/spec-sfs/Makefile ============================================================================== --- head/benchmarks/spec-sfs/Makefile Thu May 22 18:13:47 2014 (r354878) +++ head/benchmarks/spec-sfs/Makefile Thu May 22 18:24:21 2014 (r354879) @@ -30,11 +30,12 @@ SPEC_ROOT?= ${PREFIX}/${PORTNAME} DOCSDIR= ${SPEC_ROOT}/documents -OPTIONS= RESERVED_PORT "Use privileged ports when doing NFS testing" on +OPTIONS_DEFINE= RESERVED_PORT +OPTIONS_DEFAULT= RESERVED_PORT -.if defined(WITH_RESERVED_PORT) -CFLAGS+= -DRESVPORT -.endif +RESERVED_PORT_DESC= Use privileged ports when doing NFS testing + +RESERVED_PORT_CFLAGS= -DRESVPORT # Substitutions for pkg-plist PLIST_SUB+= SPEC_ROOT=${SPEC_ROOT} Modified: head/databases/jdbm2/Makefile ============================================================================== --- head/databases/jdbm2/Makefile Thu May 22 18:13:47 2014 (r354878) +++ head/databases/jdbm2/Makefile Thu May 22 18:24:21 2014 (r354879) @@ -11,7 +11,7 @@ COMMENT= A fast, simple, and transaction LICENSE= APACHE20 -OPTIONS= DOCS EXAMPLES +OPTIONS_DEFINE= DOCS EXAMPLES USES= zip USE_JAVA= yes Modified: head/devel/itext/Makefile ============================================================================== --- head/devel/itext/Makefile Thu May 22 18:13:47 2014 (r354878) +++ head/devel/itext/Makefile Thu May 22 18:24:21 2014 (r354879) @@ -22,7 +22,7 @@ RUN_DEPENDS= ${JAVAJARDIR}/bcmail.jar:${ ${JAVAJARDIR}/dom4j.jar:${PORTSDIR}/textproc/dom4j \ ${JAVAJARDIR}/pdf-renderer.jar:${PORTSDIR}/print/pdf-renderer -OPTIONS= DOCS +OPTIONS_DEFINE= DOCS USES= tar:bzip2 USE_JAVA= yes Modified: head/graphics/glew/Makefile ============================================================================== --- head/graphics/glew/Makefile Thu May 22 18:13:47 2014 (r354878) +++ head/graphics/glew/Makefile Thu May 22 18:24:21 2014 (r354879) @@ -19,7 +19,7 @@ USE_XORG= x11 xext xi xmu USE_GL= yes USE_LDCONFIG= yes -OPTIONS= DOCS +OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> Modified: head/www/eyeos-themes/Makefile ============================================================================== --- head/www/eyeos-themes/Makefile Thu May 22 18:13:47 2014 (r354878) +++ head/www/eyeos-themes/Makefile Thu May 22 18:24:21 2014 (r354879) @@ -68,11 +68,11 @@ do-install: # Maintainer section create-plist: build :>${PLIST} -.for theme in ${OPTIONS:M*_THEME:S/_THEME//:O} +.for theme in ${OPTIONS_DEFINE:M*_THEME:S/_THEME//:O} ${FIND} -s ${WRKSRC}/${theme} -type f -or -type l | \ ${SED} -e 's#^${WRKSRC}/${theme}#%%${theme:tu}%%#' >> ${PLIST} .endfor -.for theme in ${OPTIONS:M*_THEME:S/_THEME//:O} +.for theme in ${OPTIONS_DEFINE:M*_THEME:S/_THEME//:O} ${FIND} -ds ${WRKSRC}/${theme} -type d | \ ${SED} -e 's#^${WRKSRC}/${theme}#%%D${theme:tu}%%#' >> ${PLIST} .endfor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405221824.s4MIOLjS092172>