diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-12-24 15:38:36 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-12-24 15:38:36 +0000 |
commit | 78d2926cdb7cad6ae51a05f366f9da7a13266b89 (patch) | |
tree | c5fa4167c2889cf2ac8150c231898b69c98ee896 /www/hiawatha | |
parent | b53f0fbbcbb7f8bfa14224ca6cd61a56e8249724 (diff) | |
download | ports-78d2926cdb7cad6ae51a05f366f9da7a13266b89.tar.gz ports-78d2926cdb7cad6ae51a05f366f9da7a13266b89.zip |
Notes
Diffstat (limited to 'www/hiawatha')
-rw-r--r-- | www/hiawatha/Makefile | 31 |
1 files changed, 8 insertions, 23 deletions
diff --git a/www/hiawatha/Makefile b/www/hiawatha/Makefile index a340ff985fae..3507071c1e86 100644 --- a/www/hiawatha/Makefile +++ b/www/hiawatha/Makefile @@ -37,30 +37,15 @@ TOMAHAWK_DESC= Enable Tomahawk command channel 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' \ |