svn commit: r429364 - head/www/hiawatha

Dmitry Marakasov amdmi3 at FreeBSD.org
Sat Dec 24 15:38:38 UTC 2016


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' \


More information about the svn-ports-head mailing list