svn commit: r462332 - in head: graphics/py-pillow net-mgmt/zabbix3-frontend net-mgmt/zabbix32-frontend net-mgmt/zabbix34-frontend
Mathieu Arnold
mat at FreeBSD.org
Mon Feb 19 16:20:21 UTC 2018
Author: mat
Date: Mon Feb 19 16:20:20 2018
New Revision: 462332
URL: https://svnweb.freebsd.org/changeset/ports/462332
Log:
When using opt_VARS and the value of the variable has space, it must be
quoted.
Sponsored by: Absolight
Modified:
head/graphics/py-pillow/Makefile (contents, props changed)
head/net-mgmt/zabbix3-frontend/Makefile (contents, props changed)
head/net-mgmt/zabbix32-frontend/Makefile (contents, props changed)
head/net-mgmt/zabbix34-frontend/Makefile (contents, props changed)
Modified: head/graphics/py-pillow/Makefile
==============================================================================
--- head/graphics/py-pillow/Makefile Mon Feb 19 16:16:51 2018 (r462331)
+++ head/graphics/py-pillow/Makefile Mon Feb 19 16:20:20 2018 (r462332)
@@ -50,8 +50,8 @@ TKINTER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:
TKINTER_VARS= PYDISTUTILS_BUILDARGS+="--include-dirs=${TCL_INCLUDEDIR}:${TK_INCLUDEDIR}"
WEBP_LIB_DEPENDS= libwebp.so:graphics/webp
-WEBP_VARS= PYDISTUTILS_BUILDARGS+=--enable-webp --enable-webpmux
-WEBP_VARS_OFF= PYDISTUTILS_BUILDARGS+=--disable-webp --disable-webpmux
+WEBP_VARS= PYDISTUTILS_BUILDARGS+="--enable-webp --enable-webpmux"
+WEBP_VARS_OFF= PYDISTUTILS_BUILDARGS+="--disable-webp --disable-webpmux"
USES= cpe python
USE_GITHUB= yes
Modified: head/net-mgmt/zabbix3-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix3-frontend/Makefile Mon Feb 19 16:16:51 2018 (r462331)
+++ head/net-mgmt/zabbix3-frontend/Makefile Mon Feb 19 16:20:20 2018 (r462332)
@@ -21,7 +21,7 @@ OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
OPTIONS_DEFAULT= MYSQLI
MYSQLI_DESC= MySQLI backend
-MYSQL_VARS= IGNORE_WITH_PHP+=70 71
+MYSQL_VARS= IGNORE_WITH_PHP+="70 71"
.include <bsd.port.options.mk>
Modified: head/net-mgmt/zabbix32-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix32-frontend/Makefile Mon Feb 19 16:16:51 2018 (r462331)
+++ head/net-mgmt/zabbix32-frontend/Makefile Mon Feb 19 16:20:20 2018 (r462332)
@@ -20,7 +20,7 @@ OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
OPTIONS_DEFAULT= MYSQLI
MYSQLI_DESC= MySQLI backend
-MYSQL_VARS= IGNORE_WITH_PHP+=70 71
+MYSQL_VARS= IGNORE_WITH_PHP+="70 71"
.include <bsd.port.options.mk>
Modified: head/net-mgmt/zabbix34-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix34-frontend/Makefile Mon Feb 19 16:16:51 2018 (r462331)
+++ head/net-mgmt/zabbix34-frontend/Makefile Mon Feb 19 16:20:20 2018 (r462332)
@@ -20,7 +20,7 @@ OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
OPTIONS_DEFAULT= MYSQLI
MYSQLI_DESC= MySQLI backend
-MYSQL_VARS= IGNORE_WITH_PHP+=70 71
+MYSQL_VARS= IGNORE_WITH_PHP+="70 71"
.include <bsd.port.options.mk>
More information about the svn-ports-all
mailing list