Date: Sat, 24 Dec 2016 15:38:37 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429364 - head/www/hiawatha Message-ID: <201612241538.uBOFcbqn092220@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Sat Dec 24 15:38:36 2016 New Revision: 429364 URL: https://svnweb.freebsd.org/changeset/ports/429364 Log: - Switch to CMAKE_BOOL Approved by: portmgr blanket Modified: head/www/hiawatha/Makefile Modified: head/www/hiawatha/Makefile ============================================================================== --- head/www/hiawatha/Makefile Sat Dec 24 15:09:07 2016 (r429363) +++ head/www/hiawatha/Makefile Sat Dec 24 15:38:36 2016 (r429364) @@ -37,30 +37,15 @@ TOMAHAWK_DESC= Enable Tomahawk command c TOOLKIT_DESC= Enable URL toolkit XSLT_DESC= Enable XSLT support -CACHE_CMAKE_ON= -DENABLE_CACHE=on -CACHE_CMAKE_OFF= -DENABLE_CACHE=off - -TOMAHAWK_CMAKE_ON= -DENABLE_TOMAHAWK=on -TOMAHAWK_CMAKE_OFF= -DENABLE_TOMAHAWK=off - -IPV6_CMAKE_ON= -DENABLE_IPV6=on -IPV6_CMAKE_OFF= -DENABLE_IPV6=off - -MONITOR_CMAKE_ON= -DENABLE_MONITOR=on -MONITOR_CMAKE_OFF= -DENABLE_MONITOR=off - -RPROXY_CMAKE_ON= -DENABLE_RPROXY=on -RPROXY_CMAKE_OFF= -DENABLE_RPROXY=off - -SSL_CMAKE_ON= -DENABLE_SSL=on -SSL_CMAKE_OFF= -DENABLE_SSL=off - -TOOLKIT_CMAKE_ON= -DENABLE_TOOLKIT=on -TOOLKIT_CMAKE_OFF= -DENABLE_TOOLKIT=off - +CACHE_CMAKE_BOOL= ENABLE_CACHE +TOMAHAWK_CMAKE_BOOL= ENABLE_TOMAHAWK +IPV6_CMAKE_BOOL= ENABLE_IPV6 +MONITOR_CMAKE_BOOL= ENABLE_MONITOR +RPROXY_CMAKE_BOOL= ENABLE_RPROXY +SSL_CMAKE_BOOL= ENABLE_SSL +TOOLKIT_CMAKE_BOOL= ENABLE_TOOLKIT XSLT_USE= GNOME=libxslt -XSLT_CMAKE_ON= -DENABLE_XSLT=on -XSLT_CMAKE_OFF= -DENABLE_XSLT=off +XSLT_CMAKE_BOOL= ENABLE_XSLT post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612241538.uBOFcbqn092220>