Date: Thu, 21 Mar 2013 00:13:08 +0000 (UTC) From: Jason Helfman <jgh@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r314783 - head/textproc/nux Message-ID: <201303210013.r2L0D8c1042332@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jgh Date: Thu Mar 21 00:13:07 2013 New Revision: 314783 URL: http://svnweb.freebsd.org/changeset/ports/314783 Log: - adopt optionsNG Approved by: portmgr (miwi) Modified: head/textproc/nux/Makefile Modified: head/textproc/nux/Makefile ============================================================================== --- head/textproc/nux/Makefile Thu Mar 21 00:11:34 2013 (r314782) +++ head/textproc/nux/Makefile Thu Mar 21 00:13:07 2013 (r314783) @@ -14,7 +14,9 @@ COMMENT= Small open-source XQuery extens RUN_DEPENDS= ${JAVALIBDIR}/xom.jar:${PORTSDIR}/textproc/xom \ ${JAVALIBDIR}/saxon9.jar:${PORTSDIR}/textproc/saxon-devel -OPTIONS= XQUERY_TOOL "Install the XQuery command-line tool" on +OPTIONS_DEFINE= XQUERY_TOOL DOCS +XQUERY_TOOL_DESC= Install the XQuery command-line tool +OPTIONS_DEFAULT= XQUERY_TOOL USE_JAVA= yes JAVA_VERSION= 1.6+ @@ -22,23 +24,23 @@ NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} .include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_XQUERY_TOOL) +.if ${PORT_OPTIONS:MXQUERY_TOOL} RUN_DEPENDS+= ${JAVALIBDIR}/getopt.jar:${PORTSDIR}/java/java-getopt \ classpath:${PORTSDIR}/java/javavmwrapper .endif PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar -.if defined(WITH_XQUERY_TOOL) +.if ${PORT_OPTIONS:MXQUERY_TOOL} PLIST_FILES+= bin/fire-xquery .endif -.if !defined(NOPORTDOCS) + PORTDOCS= api changelog.html cvs.html dependencies.html \ gettingstarted.html images index.html license.html licenses \ mailing.html readme.html related.html style.css todo.html -.endif -.if defined(WITH_XQUERY_TOOL) +.if ${PORT_OPTIONS:MXQUERY_TOOL} SUB_FILES= fire-xquery.sh .endif @@ -47,12 +49,12 @@ do-install: @${MKDIR} ${JAVAJARDIR} @${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar ${JAVAJARDIR}/ @${ECHO_MSG} " [ DONE ]" -.if defined(WITH_XQUERY_TOOL) +.if ${PORT_OPTIONS:MXQUERY_TOOL} @${ECHO_MSG} -n ">> Installing XQuery command-line tool as ${PREFIX}/bin/fire-xquery..." @${INSTALL_SCRIPT} ${WRKDIR}/fire-xquery.sh ${PREFIX}/bin/fire-xquery @${ECHO_MSG} " [ DONE ]" .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303210013.r2L0D8c1042332>