Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Mar 2016 16:56:42 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411002 - in head: archivers/php-horde_lz4 archivers/php5-snappy chinese/php-cconv converters/php5-bsdconv databases/php-adodb-ext databases/php-mdcached databases/php55-redis databases...
Message-ID:  <201603131656.u2DGug1c080952@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Sun Mar 13 16:56:42 2016
New Revision: 411002
URL: https://svnweb.freebsd.org/changeset/ports/411002

Log:
  These ports do not build with PHP 7.0, make them as such.
  Also, mark those who try to use mysql, which does not exist in PHP 7.0.
  
  Sponsored by:	Absolight

Modified:
  head/archivers/php-horde_lz4/Makefile
  head/archivers/php5-snappy/Makefile
  head/chinese/php-cconv/Makefile
  head/converters/php5-bsdconv/Makefile
  head/databases/php-adodb-ext/Makefile
  head/databases/php-mdcached/Makefile
  head/databases/php55-redis/Makefile
  head/databases/php56-redis/Makefile
  head/devel/php-jq/Makefile
  head/devel/php-memoize/Makefile
  head/devel/php-scalar_objects/Makefile
  head/devel/php-uprofiler/Makefile
  head/devel/php-xdebug/Makefile
  head/devel/php5-blitz-devel/Makefile
  head/devel/php5-blitz/Makefile
  head/devel/php5-dav/Makefile
  head/devel/php5-ice/Makefile
  head/devel/php5-msgpack/Makefile
  head/devel/php5-pinba/Makefile
  head/devel/php5-thrift/Makefile
  head/finance/php-tclink/Makefile
  head/graphics/php-gdal/Makefile
  head/graphics/php-libpuzzle/Makefile
  head/graphics/php-magickwand/Makefile
  head/japanese/php5-mecab/Makefile
  head/net-mgmt/observium/Makefile
  head/net-mgmt/phpip/Makefile
  head/net-mgmt/zabbix2-frontend/Makefile
  head/net-mgmt/zabbix22-frontend/Makefile
  head/net-mgmt/zabbix24-frontend/Makefile
  head/security/php-suhosin/Makefile
  head/security/phpdeadlock/Makefile
  head/textproc/libmrss-php/Makefile
  head/www/eaccelerator/Makefile
  head/www/mediawiki123/Makefile
  head/www/mediawiki124/Makefile
  head/www/mediawiki125/Makefile
  head/www/mediawiki126/Makefile
  head/www/owncloud/Makefile
  head/www/phalcon/Makefile
  head/www/php-templates/Makefile
  head/www/phpgroupware/Makefile
  head/www/phprecipebook/Makefile
  head/www/revive-adserver/Makefile

Modified: head/archivers/php-horde_lz4/Makefile
==============================================================================
--- head/archivers/php-horde_lz4/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/archivers/php-horde_lz4/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -14,6 +14,7 @@ COMMENT=	Horde LZ4 Compression Extension
 
 USE_PHP=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 
 CONFIGURE_ARGS=	--enable-horde_lz4
 

Modified: head/archivers/php5-snappy/Makefile
==============================================================================
--- head/archivers/php5-snappy/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/archivers/php5-snappy/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -22,6 +22,7 @@ USE_PHPEXT=	yes
 PHP_MODNAME=	snappy
 WRKSRC=		${WRKDIR}/${PROJECTHOST}
 OPTIONS_DEFINE=	TEST
+IGNORE_WITH_PHP=	70
 
 post-build-TEST-on:
 	@(cd ${WRKSRC} && ${MAKE} ${MAKE_ENV} NO_INTERACTION=yes ${.TARGET})

Modified: head/chinese/php-cconv/Makefile
==============================================================================
--- head/chinese/php-cconv/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/chinese/php-cconv/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -18,6 +18,7 @@ LIB_DEPENDS=	libcconv.so:${PORTSDIR}/chi
 CONFIGURE_ARGS=	--with-cconv-dir=${LOCALBASE}
 USE_PHP=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 
 post-patch:
 	@${REINPLACE_CMD} -e 's| function_entry| zend_function_entry|' ${WRKSRC}/php_cconv.c

Modified: head/converters/php5-bsdconv/Makefile
==============================================================================
--- head/converters/php5-bsdconv/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/converters/php5-bsdconv/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -22,6 +22,7 @@ USE_PHPEXT=	yes
 USE_PHPIZE=	yes
 USE_PHP_BUILD=	yes
 PHP_MODNAME=	${PORTNAME}
+IGNORE_WITH_PHP=	70
 CONFIGURE_ARGS=	--with-bsdconv=${LOCALBASE}
 
 .include <bsd.port.mk>

Modified: head/databases/php-adodb-ext/Makefile
==============================================================================
--- head/databases/php-adodb-ext/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/databases/php-adodb-ext/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -19,7 +19,7 @@ USE_PHP=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	adodb
 PHP_DEFAULT=	55
-IGNORE_WITH_PHP=56
+IGNORE_WITH_PHP=56 70
 
 SUB_FILES=	pkg-message
 

Modified: head/databases/php-mdcached/Makefile
==============================================================================
--- head/databases/php-mdcached/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/databases/php-mdcached/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -17,6 +17,7 @@ LIB_DEPENDS=	libmdcached.so:${PORTSDIR}/
 
 USE_PHP=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 CONFIGURE_ARGS=	--enable-mdcached
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME}/client_php/${PORTNAME}
 

Modified: head/databases/php55-redis/Makefile
==============================================================================
--- head/databases/php55-redis/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/databases/php55-redis/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -19,6 +19,7 @@ USE_PHP=	session
 USE_PHP_BUILD=	yes
 USE_PHPEXT=	yes
 PHP_DEFAULT=	5.5
+IGNORE_WITH_PHP=	56 70
 
 PHP_MODNAME=	redis
 

Modified: head/databases/php56-redis/Makefile
==============================================================================
--- head/databases/php56-redis/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/databases/php56-redis/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -15,6 +15,7 @@ USE_PHP=	session
 USE_PHP_BUILD=	yes
 USE_PHPEXT=	yes
 PHP_DEFAULT=	5.6
+IGNORE_WITH_PHP=	55 70
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	nicolasff

Modified: head/devel/php-jq/Makefile
==============================================================================
--- head/devel/php-jq/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php-jq/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,6 +20,7 @@ GH_PROJECT=	php-ext-jq
 USE_PHP=	yes
 USE_PHPIZE=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 USES=		tar:tgz
 
 JQ_CMD=		${LOCALBASE}/bin/jq

Modified: head/devel/php-memoize/Makefile
==============================================================================
--- head/devel/php-memoize/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php-memoize/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -18,6 +18,7 @@ USE_PHPEXT=	yes
 USE_PHPIZE=	yes
 USE_PHP_BUILD=	yes
 PHP_MODNAME=	memoize
+IGNORE_WITH_PHP=	70
 CONFIGURE_ARGS=	--enable-memoize
 
 OPTIONS_DEFINE=	APC MEMCACHED MEMORY

Modified: head/devel/php-scalar_objects/Makefile
==============================================================================
--- head/devel/php-scalar_objects/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php-scalar_objects/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,5 +20,6 @@ USE_PHP=	yes
 USE_PHPEXT=	yes
 USE_PHPIZE=	yes
 USE_PHP_BUILD=	yes
+IGNORE_WITH_PHP=	70
 
 .include <bsd.port.mk>

Modified: head/devel/php-uprofiler/Makefile
==============================================================================
--- head/devel/php-uprofiler/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php-uprofiler/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,5 +20,6 @@ USE_PHP=	yes
 USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 USES=		tar:tgz
+IGNORE_WITH_PHP=	70
 
 .include <bsd.port.mk>

Modified: head/devel/php-xdebug/Makefile
==============================================================================
--- head/devel/php-xdebug/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php-xdebug/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,4 +20,6 @@ USES=		tar:tgz
 
 SUB_FILES=	pkg-message
 
+IGNORE_WITH_PHP=	70
+
 .include <bsd.port.mk>

Modified: head/devel/php5-blitz-devel/Makefile
==============================================================================
--- head/devel/php5-blitz-devel/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-blitz-devel/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -17,5 +17,6 @@ USE_PHP=	yes
 USE_PHP_BUILD=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	blitz
+IGNORE_WITH_PHP=	70
 
 .include <bsd.port.mk>

Modified: head/devel/php5-blitz/Makefile
==============================================================================
--- head/devel/php5-blitz/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-blitz/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -15,5 +15,6 @@ CONFLICTS=	php5-blitz-devel-[0-9]*
 USE_PHP=	yes
 USE_PHP_BUILD=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 
 .include <bsd.port.mk>

Modified: head/devel/php5-dav/Makefile
==============================================================================
--- head/devel/php5-dav/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-dav/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -21,6 +21,8 @@ USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	dav
 
+IGNORE_WITH_PHP=	70
+
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 .include <bsd.port.mk>

Modified: head/devel/php5-ice/Makefile
==============================================================================
--- head/devel/php5-ice/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-ice/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -25,7 +25,7 @@ MAKE_ARGS+=	PHP_EXT_DIR=${PHP_EXT_DIR} I
 		PHP_HOME=${LOCALBASE} OPTIMIZE=yes
 USE_PHP=	yes
 USE_PHP_BUILD=	yes
-IGNORE_WITH_PHP=52
+IGNORE_WITH_PHP=70
 BUILD_WRKSRC=	${WRKSRC}/php
 INSTALL_WRKSRC=	${WRKSRC}/php
 

Modified: head/devel/php5-msgpack/Makefile
==============================================================================
--- head/devel/php5-msgpack/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-msgpack/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -19,4 +19,6 @@ USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	msgpack
 
+IGNORE_WITH_PHP=	70
+
 .include <bsd.port.mk>

Modified: head/devel/php5-pinba/Makefile
==============================================================================
--- head/devel/php5-pinba/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-pinba/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,5 +20,6 @@ GH_TAGNAME=	f76b673
 USE_PHP=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	pinba
+IGNORE_WITH_PHP=	70
 
 .include <bsd.port.mk>

Modified: head/devel/php5-thrift/Makefile
==============================================================================
--- head/devel/php5-thrift/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/devel/php5-thrift/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -15,6 +15,7 @@ USE_PHP=	yes
 USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	thrift_protocol
+IGNORE_WITH_PHP=	70
 
 DISTINFO_FILE=	${.CURDIR}/../thrift/distinfo
 WRKSRC_SUBDIR=	lib/php/src/ext/thrift_protocol

Modified: head/finance/php-tclink/Makefile
==============================================================================
--- head/finance/php-tclink/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/finance/php-tclink/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -16,4 +16,6 @@ USE_PHP=	yes
 USE_PHPEXT=	yes
 USE_OPENSSL=	yes
 
+IGNORE_WITH_PHP=	70
+
 .include <bsd.port.mk>

Modified: head/graphics/php-gdal/Makefile
==============================================================================
--- head/graphics/php-gdal/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/graphics/php-gdal/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -25,6 +25,7 @@ PHP_MOD_NAME=	php_${PORTNAME}
 USE_PHP=	yes
 USE_PHP_BUILD=	yes
 USES=		gmake localbase tar:xz
+IGNORE_WITH_PHP=	70
 
 WRKSRC_SUBDIR=	swig/php
 

Modified: head/graphics/php-libpuzzle/Makefile
==============================================================================
--- head/graphics/php-libpuzzle/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/graphics/php-libpuzzle/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -23,6 +23,7 @@ USE_PHP=	yes
 USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 USE_PHP_BUILD=	yes
+IGNORE_WITH_PHP=	70
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}/php/${PORTNAME}
 

Modified: head/graphics/php-magickwand/Makefile
==============================================================================
--- head/graphics/php-magickwand/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/graphics/php-magickwand/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -17,6 +17,7 @@ LIB_DEPENDS=	libMagickWand-6.so:${PORTSD
 USES=		pkgconfig
 USE_PHP=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 
 CONFIGURE_ARGS=	--with-magickwand=${LOCALBASE}
 

Modified: head/japanese/php5-mecab/Makefile
==============================================================================
--- head/japanese/php5-mecab/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/japanese/php5-mecab/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -14,6 +14,7 @@ LIB_DEPENDS=	libmecab.so:${PORTSDIR}/jap
 
 USE_PHP=	yes
 USE_PHPEXT=	yes
+IGNORE_WITH_PHP=	70
 CONFIGURE_ARGS=	--with-mecab=${LOCALBASE}/bin/mecab-config
 
 .include <bsd.port.pre.mk>

Modified: head/net-mgmt/observium/Makefile
==============================================================================
--- head/net-mgmt/observium/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/net-mgmt/observium/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -54,6 +54,7 @@ SHEBANG_FILES=	mibs/process.pl \
 
 USE_PHP=	ctype filter gd iconv json mcrypt mysql mysqli posix session snmp tokenizer xml zlib
 WANT_PHP_CLI=	yes
+IGNORE_WITH_PHP=	70
 
 NO_BUILD=	yes
 

Modified: head/net-mgmt/phpip/Makefile
==============================================================================
--- head/net-mgmt/phpip/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/net-mgmt/phpip/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,6 +20,8 @@ USE_PHP=	mysql
 USES=		dos2unix
 WANT_PHP_WEB=	yes
 
+IGNORE_WITH_PHP=	70
+
 PHPIP?=		www/phpip
 PLIST_SUB+=	PHPIP=${PHPIP} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
 

Modified: head/net-mgmt/zabbix2-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix2-frontend/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/net-mgmt/zabbix2-frontend/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,6 +20,8 @@ OPTIONS_DEFINE=	MYSQL MYSQLI PGSQL SQLIT
 OPTIONS_DEFAULT=	MYSQL MYSQLI
 MYSQLI_DESC=	MySQLI backend
 
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MMYSQL}

Modified: head/net-mgmt/zabbix22-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix22-frontend/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/net-mgmt/zabbix22-frontend/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,6 +20,8 @@ OPTIONS_DEFINE=	MYSQL MYSQLI PGSQL SQLIT
 OPTIONS_DEFAULT=	MYSQL MYSQLI
 MYSQLI_DESC=	MySQLI backend
 
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MMYSQL}

Modified: head/net-mgmt/zabbix24-frontend/Makefile
==============================================================================
--- head/net-mgmt/zabbix24-frontend/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/net-mgmt/zabbix24-frontend/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -20,6 +20,8 @@ OPTIONS_DEFINE=		MYSQL MYSQLI PGSQL SQLI
 OPTIONS_DEFAULT=	MYSQL MYSQLI
 MYSQLI_DESC=		MySQLI backend
 
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MMYSQL}

Modified: head/security/php-suhosin/Makefile
==============================================================================
--- head/security/php-suhosin/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/security/php-suhosin/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -17,6 +17,7 @@ OPTIONS_DEFINE=	EXAMPLES
 USE_PHP=	session
 USE_PHPEXT=	yes
 USE_PHP_BUILD=	yes
+IGNORE_WITH_PHP=	70
 
 CONFIGURE_ARGS=	--enable-suhosin
 

Modified: head/security/phpdeadlock/Makefile
==============================================================================
--- head/security/phpdeadlock/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/security/phpdeadlock/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -24,6 +24,8 @@ USE_APACHE_RUN=	22+
 USE_PHP=	mysql session ctype pcre
 NO_BUILD=	yes
 
+IGNORE_WITH_PHP=	70
+
 SUB_FILES=	pkg-message
 SUB_LIST=	DLURL=${DLURL} DLDIR=${DLDIR}
 PLIST_SUB=	WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}

Modified: head/textproc/libmrss-php/Makefile
==============================================================================
--- head/textproc/libmrss-php/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/textproc/libmrss-php/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -26,6 +26,7 @@ USE_LDCONFIG=	yes
 USE_PHP=	yes
 USE_PHPEXT=	yes
 PHP_MODNAME=	mrss
+IGNORE_WITH_PHP=	70
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}/phpmrss
 
 post-install:

Modified: head/www/eaccelerator/Makefile
==============================================================================
--- head/www/eaccelerator/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/eaccelerator/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -25,7 +25,7 @@ DOCCOMM_CONFIGURE_WITH=	eaccelerator-doc
 USE_PHP=	yes
 USE_PHPIZE=	yes
 USE_PHP_BUILD=	yes
-IGNORE_WITH_PHP=	55 56
+IGNORE_WITH_PHP=	55 56 70
 
 CONFIGURE_ARGS=	--enable-eaccelerator=shared \
 		--with-eaccelerator-userid=80

Modified: head/www/mediawiki123/Makefile
==============================================================================
--- head/www/mediawiki123/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/mediawiki123/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -40,6 +40,8 @@ XCACHE_DESC=	Use xCache (instead of pecl
 IMAGICK_DESC=	Use ImageMagick
 SOCKETS_DESC=	Use sockets
 
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MMYSQL}

Modified: head/www/mediawiki124/Makefile
==============================================================================
--- head/www/mediawiki124/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/mediawiki124/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -40,6 +40,8 @@ XCACHE_DESC=	Use xCache (instead of pecl
 IMAGICK_DESC=	Use ImageMagick
 SOCKETS_DESC=	Use sockets
 
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MMYSQL}

Modified: head/www/mediawiki125/Makefile
==============================================================================
--- head/www/mediawiki125/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/mediawiki125/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -49,6 +49,7 @@ IMAGICK_DESC=	Use ImageMagick
 SOCKETS_DESC=	Use sockets
 
 MYSQL_USE=	mysql=client php=mysql
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
 PGSQL_USE=	php=pgsql
 SQLITE_USE=	php=sqlite3
 LDAP_USE=	php=ldap

Modified: head/www/mediawiki126/Makefile
==============================================================================
--- head/www/mediawiki126/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/mediawiki126/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -48,6 +48,7 @@ IMAGICK_DESC=	Use ImageMagick
 SOCKETS_DESC=	Use sockets
 
 MYSQL_USE=	mysql=client php=mysql
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
 PGSQL_USE=	php=pgsql
 SQLITE_USE=	php=sqlite3
 LDAP_USE=	php=ldap

Modified: head/www/owncloud/Makefile
==============================================================================
--- head/www/owncloud/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/owncloud/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -41,6 +41,7 @@ LDAP_USE=	PHP=ldap
 MP3INFO_BUILD_DEPENDS=	mp3info:${PORTSDIR}/audio/mp3info
 MP3INFO_RUN_DEPENDS=	${MP3INFO_BUILD_DEPENDS}
 MYSQL_USE=	MYSQL=client PHP=mysql,pdo_mysql
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
 PGSQL_USES=	pgsql
 PGSQL_USE=	PHP=pdo_pgsql,pgsql
 SQLITE_USE=	PHP=pdo_sqlite,sqlite3

Modified: head/www/phalcon/Makefile
==============================================================================
--- head/www/phalcon/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/phalcon/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -15,6 +15,7 @@ USE_PHP=	hash pdo
 USE_PHPEXT=	yes
 USE_PHPIZE=	yes
 USE_PHP_BUILD=	yes
+IGNORE_WITH_PHP=	70
 
 ONLY_FOR_ARCHS=	amd64 i386
 

Modified: head/www/php-templates/Makefile
==============================================================================
--- head/www/php-templates/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/php-templates/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -19,6 +19,7 @@ USES=		dos2unix
 
 USE_PHP=	yes
 USE_PHPIZE=	yes
+IGNORE_WITH_PHP=	70
 
 CONFIGURE_ARGS=	--enable-templates=shared
 

Modified: head/www/phpgroupware/Makefile
==============================================================================
--- head/www/phpgroupware/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/phpgroupware/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -11,6 +11,7 @@ COMMENT=	Web based GroupWare system
 USES=		tar:bzip2
 USE_PHP=	yes
 WANT_PHP_MOD=	yes
+IGNORE_WITH_PHP=	70
 
 NO_BUILD=	yes
 NO_ARCH=	yes

Modified: head/www/phprecipebook/Makefile
==============================================================================
--- head/www/phprecipebook/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/phprecipebook/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -26,6 +26,7 @@ OPTIONS_SINGLE_BACKEND=	MYSQL PGSQL
 OPTIONS_DEFAULT=	MYSQL
 
 MYSQL_USE=	PHP=mysql MYSQL=yes
+MYSQL_VARS=	IGNORE_WITH_PHP+=70
 PGSQL_USE=	PHP=pgsql
 PGSQL_USES=	pgsql
 

Modified: head/www/revive-adserver/Makefile
==============================================================================
--- head/www/revive-adserver/Makefile	Sun Mar 13 16:31:26 2016	(r411001)
+++ head/www/revive-adserver/Makefile	Sun Mar 13 16:56:42 2016	(r411002)
@@ -23,6 +23,7 @@ PLIST_SUB+=	WWWOWN="${WWWOWN}" WWWGRP="$
 
 .if !defined(WITHOUT_PHP_DEPENDS)
 USE_PHP=	xml pcre zlib mysql pgsql ftp
+IGNORE_WITH_PHP=	70
 .endif
 
 do-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603131656.u2DGug1c080952>