Index: head/CHANGES =================================================================== --- head/CHANGES +++ head/CHANGES @@ -10,6 +10,16 @@ All ports committers are allowed to commit to this file. +20160803: +AUTHOR: mat@FreeBSD.org + + Every PHP (or Zend) extension now installs its own .ini file in + /usr/local/etc/php. A PHP extension will be automatically activated when + installed. The order into which extensions are loaded is automatically + guessed. In some very rare cases, the guess will be wrong, and PHP_MOD_PRIO + will need to be set. Refer to the USES=php section of the Porter's Handbook + for more information. + 20160628: AUTHOR: mat@FreeBSD.org Index: head/Mk/Uses/php.mk =================================================================== --- head/Mk/Uses/php.mk +++ head/Mk/Uses/php.mk @@ -21,6 +21,25 @@ # # USE_PHP= ext1 ext2 ext3 # +# PHP and Zend extensions built with :ext and :zend are automatically enabled +# when the port is installed. Each port creates a PHP_EXT_INI_FILE file and +# registers the extension in it. +# +# The PHP_EXT_INI_FILE file has a priority number embeded into its name so that +# extensions are loaded in the right order. The priority is defined by +# PHP_MOD_PRIO and is a number between 00 and 99. +# +# For extensions that do not depend on any extension, the priority is +# automatically set to 20, for extensions that depend on another extension, the +# priority is automatically set to 30. Some extensions may need to be loaded +# before everyone else (for example opcache), or after an extension with a +# priotity of 30, in that case, add PHP_MOD_PRIO=XX in the port's Makefile. +# For example: +# +# USES= php:ext +# USE_PHP= xml wddx +# PHP_MOD_PRIO= 40 +# # The port can set these options in its Makefile before bsd.port.pre.mk: # # DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed. @@ -202,13 +221,26 @@ . if ${php_ARGS:Mext} || ${php_ARGS:Mzend} PHP_MODNAME?= ${PORTNAME} -PHP_HEADER_DIRS?= "" +PHP_EXT_PKGMESSAGE= ${WRKDIR}/php-ext-pkg-message +PKGMESSAGES+= ${PHP_EXT_PKGMESSAGE} +PHP_HEADER_DIRS+= . +# If there is no priority defined, we wing it. +. if !defined(PHP_MOD_PRIO) +. if defined(USE_PHP) +# If an extension needs another, put it after the others. +PHP_MOD_PRIO= 30 +. else +# Otherwise, put it where it with everybody. +PHP_MOD_PRIO= 20 +. endif +. endif +PHP_EXT_INI_FILE= etc/php/ext-${PHP_MOD_PRIO}-${PHP_MODNAME}.ini do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_LIB} ${WRKSRC}/modules/${PHP_MODNAME}.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} -. for header in . ${PHP_HEADER_DIRS} +. for header in ${PHP_HEADER_DIRS} @${MKDIR} ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} @${INSTALL_DATA} ${WRKSRC}/${header}/*.h \ ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} @@ -217,8 +249,13 @@ @${GREP} "#define \(COMPILE\|HAVE\|USE\)_" ${WRKSRC}/config.h \ > ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php +. if ${php_ARGS:Mzend} + @${ECHO_CMD} "zend_extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE} +. else + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE} +. endif -add-plist-info: add-plist-phpext +_USES_stage+= 899:add-plist-phpext add-plist-phpext: @${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \ >> ${TMPPLIST} @@ -232,44 +269,20 @@ >> ${TMPPLIST} @${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \ >> ${TMPPLIST} - @${ECHO_CMD} "@dir etc/php" \ + @${ECHO_CMD} "${PHP_EXT_INI_FILE}" \ >> ${TMPPLIST} + @${ECHO_CMD} "****************************************************************************" > ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "The following line has been added to your ${PREFIX}/${PHP_EXT_INI_FILE}" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "configuration file to automatically load the installed extension:" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} . if ${php_ARGS:Mzend} - @${ECHO_CMD} "@exec echo zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "@unexec grep -v zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - -package-message: php-ini - -php-ini: - @${ECHO_CMD} "****************************************************************************" - @${ECHO_CMD} "" - @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" - @${ECHO_CMD} "configuration file to automatically load the installed extension:" - @${ECHO_CMD} "" -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" + @${ECHO_CMD} "zend_extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . else - @${ECHO_CMD} "extension=${PHP_MODNAME}.so" + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . endif - @${ECHO_CMD} "" - @${ECHO_CMD} "****************************************************************************" + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "****************************************************************************" >> ${PHP_EXT_PKGMESSAGE} . endif # Extensions Index: head/archivers/pecl-lzf/Makefile =================================================================== --- head/archivers/pecl-lzf/Makefile +++ head/archivers/pecl-lzf/Makefile @@ -3,6 +3,7 @@ PORTNAME= lzf PORTVERSION= 1.6.3 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/archivers/pecl-phk/Makefile =================================================================== --- head/archivers/pecl-phk/Makefile +++ head/archivers/pecl-phk/Makefile @@ -3,6 +3,7 @@ PORTNAME= phk PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/archivers/pecl-rar/Makefile =================================================================== --- head/archivers/pecl-rar/Makefile +++ head/archivers/pecl-rar/Makefile @@ -3,6 +3,7 @@ PORTNAME= rar PORTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/archivers/php-horde_lz4/Makefile =================================================================== --- head/archivers/php-horde_lz4/Makefile +++ head/archivers/php-horde_lz4/Makefile @@ -3,6 +3,7 @@ PORTNAME= horde_lz4 PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pear.horde.org/get/ PKGNAMEPREFIX= php- Index: head/archivers/php5-snappy/Makefile =================================================================== --- head/archivers/php5-snappy/Makefile +++ head/archivers/php5-snappy/Makefile @@ -3,7 +3,7 @@ PORTNAME= php5-snappy PORTVERSION= 0.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= GOOGLE_CODE PROJECTHOST= php-snappy Index: head/archivers/php55-bz2/Makefile =================================================================== --- head/archivers/php55-bz2/Makefile +++ head/archivers/php55-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/archivers/php55-phar/Makefile =================================================================== --- head/archivers/php55-phar/Makefile +++ head/archivers/php55-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/archivers/php55-zip/Makefile =================================================================== --- head/archivers/php55-zip/Makefile +++ head/archivers/php55-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/archivers/php55-zlib/Makefile =================================================================== --- head/archivers/php55-zlib/Makefile +++ head/archivers/php55-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/archivers/php56-bz2/Makefile =================================================================== --- head/archivers/php56-bz2/Makefile +++ head/archivers/php56-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/archivers/php56-phar/Makefile =================================================================== --- head/archivers/php56-phar/Makefile +++ head/archivers/php56-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/archivers/php56-zip/Makefile =================================================================== --- head/archivers/php56-zip/Makefile +++ head/archivers/php56-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/archivers/php56-zlib/Makefile =================================================================== --- head/archivers/php56-zlib/Makefile +++ head/archivers/php56-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/archivers/php70-bz2/Makefile =================================================================== --- head/archivers/php70-bz2/Makefile +++ head/archivers/php70-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/archivers/php70-phar/Makefile =================================================================== --- head/archivers/php70-phar/Makefile +++ head/archivers/php70-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/archivers/php70-zip/Makefile =================================================================== --- head/archivers/php70-zip/Makefile +++ head/archivers/php70-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/archivers/php70-zlib/Makefile =================================================================== --- head/archivers/php70-zlib/Makefile +++ head/archivers/php70-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/chinese/php-cconv/Makefile =================================================================== --- head/chinese/php-cconv/Makefile +++ head/chinese/php-cconv/Makefile @@ -3,6 +3,7 @@ PORTNAME= cconv PORTVERSION= 0.6.4 +PORTREVISION= 1 DISTVERSIONPREFIX= php- CATEGORIES= chinese converters MASTER_SITES= GOOGLE_CODE Index: head/converters/pecl-fribidi/Makefile =================================================================== --- head/converters/pecl-fribidi/Makefile +++ head/converters/pecl-fribidi/Makefile @@ -3,7 +3,7 @@ PORTNAME= fribidi PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/converters/pecl-igbinary/Makefile =================================================================== --- head/converters/pecl-igbinary/Makefile +++ head/converters/pecl-igbinary/Makefile @@ -3,6 +3,7 @@ PORTNAME= igbinary PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= converters MASTER_SITES= http://pecl.php.net/get/ \ LOCAL/sunpoet Index: head/converters/php5-bsdconv/Makefile =================================================================== --- head/converters/php5-bsdconv/Makefile +++ head/converters/php5-bsdconv/Makefile @@ -3,6 +3,7 @@ PORTNAME= bsdconv PORTVERSION= 11.3.0 +PORTREVISION= 1 CATEGORIES= converters PKGNAMEPREFIX= php5- Index: head/converters/php55-iconv/Makefile =================================================================== --- head/converters/php55-iconv/Makefile +++ head/converters/php55-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/converters/php55-mbstring/Makefile =================================================================== --- head/converters/php55-mbstring/Makefile +++ head/converters/php55-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/converters/php55-recode/Makefile =================================================================== --- head/converters/php55-recode/Makefile +++ head/converters/php55-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/converters/php56-iconv/Makefile =================================================================== --- head/converters/php56-iconv/Makefile +++ head/converters/php56-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/converters/php56-mbstring/Makefile =================================================================== --- head/converters/php56-mbstring/Makefile +++ head/converters/php56-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/converters/php56-recode/Makefile =================================================================== --- head/converters/php56-recode/Makefile +++ head/converters/php56-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/converters/php70-iconv/Makefile =================================================================== --- head/converters/php70-iconv/Makefile +++ head/converters/php70-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/converters/php70-mbstring/Makefile =================================================================== --- head/converters/php70-mbstring/Makefile +++ head/converters/php70-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/converters/php70-recode/Makefile =================================================================== --- head/converters/php70-recode/Makefile +++ head/converters/php70-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/pecl-chdb/Makefile =================================================================== --- head/databases/pecl-chdb/Makefile +++ head/databases/pecl-chdb/Makefile @@ -3,6 +3,7 @@ PORTNAME= chdb PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= pecl- DIST_SUBDIR= PECL Index: head/databases/pecl-dbase/Makefile =================================================================== --- head/databases/pecl-dbase/Makefile +++ head/databases/pecl-dbase/Makefile @@ -3,6 +3,7 @@ PORTNAME= dbase PORTVERSION= 5.1.0 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-drizzle/Makefile =================================================================== --- head/databases/pecl-drizzle/Makefile +++ head/databases/pecl-drizzle/Makefile @@ -3,6 +3,7 @@ PORTNAME= drizzle PORTVERSION= 0.4.2 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-leveldb/Makefile =================================================================== --- head/databases/pecl-leveldb/Makefile +++ head/databases/pecl-leveldb/Makefile @@ -3,6 +3,7 @@ PORTNAME= leveldb PORTVERSION= 0.1.5 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-mdbtools/Makefile =================================================================== --- head/databases/pecl-mdbtools/Makefile +++ head/databases/pecl-mdbtools/Makefile @@ -3,7 +3,7 @@ PORTNAME= mdbtools PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-memcache/Makefile =================================================================== --- head/databases/pecl-memcache/Makefile +++ head/databases/pecl-memcache/Makefile @@ -3,6 +3,7 @@ PORTNAME= memcache PORTVERSION= 3.0.8 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-memcached/Makefile =================================================================== --- head/databases/pecl-memcached/Makefile +++ head/databases/pecl-memcached/Makefile @@ -3,7 +3,7 @@ PORTNAME= memcached PORTVERSION= 2.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-mongo/Makefile =================================================================== --- head/databases/pecl-mongo/Makefile +++ head/databases/pecl-mongo/Makefile @@ -3,6 +3,7 @@ PORTNAME= mongo PORTVERSION= 1.6.14 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-mongodb/Makefile =================================================================== --- head/databases/pecl-mongodb/Makefile +++ head/databases/pecl-mongodb/Makefile @@ -2,6 +2,7 @@ PORTNAME= mongodb PORTVERSION= 1.1.8 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-mysqlnd_ms/Makefile =================================================================== --- head/databases/pecl-mysqlnd_ms/Makefile +++ head/databases/pecl-mysqlnd_ms/Makefile @@ -3,6 +3,7 @@ PORTNAME= mysqlnd_ms PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-mysqlnd_qc/Makefile =================================================================== --- head/databases/pecl-mysqlnd_qc/Makefile +++ head/databases/pecl-mysqlnd_qc/Makefile @@ -3,6 +3,7 @@ PORTNAME= mysqlnd_qc PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-pdo_user/Makefile =================================================================== --- head/databases/pecl-pdo_user/Makefile +++ head/databases/pecl-pdo_user/Makefile @@ -3,6 +3,7 @@ PORTNAME= pdo_user PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-rrd/Makefile =================================================================== --- head/databases/pecl-rrd/Makefile +++ head/databases/pecl-rrd/Makefile @@ -2,7 +2,7 @@ PORTNAME= rrd DISTVERSION= 1.1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/pecl-tokyo_tyrant/Makefile =================================================================== --- head/databases/pecl-tokyo_tyrant/Makefile +++ head/databases/pecl-tokyo_tyrant/Makefile @@ -3,6 +3,7 @@ PORTNAME= tokyo_tyrant PORTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/databases/php-adodb-ext/Makefile =================================================================== --- head/databases/php-adodb-ext/Makefile +++ head/databases/php-adodb-ext/Makefile @@ -3,7 +3,7 @@ PORTNAME= adodb-ext PORTVERSION= 5.04 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= http://phplens.com/lens/dl/ PKGNAMEPREFIX= php- @@ -16,8 +16,7 @@ USES= dos2unix php:ext zip IGNORE_WITH_PHP=56 70 - -SUB_FILES= pkg-message +PHP_MODNAME= adodb .include Index: head/databases/php-adodb-ext/files/pkg-message.in =================================================================== --- head/databases/php-adodb-ext/files/pkg-message.in +++ head/databases/php-adodb-ext/files/pkg-message.in @@ -1,13 +0,0 @@ -***************************************************************************** -The ADOdb extension has been installed successful. -Add a line containing - - extension=adodb.so - -to your %%LOCALBASE%%/etc/php/extensions.ini to load it. -If you have the Zend Optimizer installed, add the line - - zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/adodb.so - -to your [zend] section in the php.ini file, too. -***************************************************************************** Index: head/databases/php-mdcached/Makefile =================================================================== --- head/databases/php-mdcached/Makefile +++ head/databases/php-mdcached/Makefile @@ -3,6 +3,7 @@ PORTNAME= mdcached PORTVERSION= 1.0.9 +PORTREVISION= 1 CATEGORIES= databases devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= php- Index: head/databases/php5-pdo_cassandra/Makefile =================================================================== --- head/databases/php5-pdo_cassandra/Makefile +++ head/databases/php5-pdo_cassandra/Makefile @@ -3,7 +3,7 @@ PORTNAME= pdo_cassandra PORTVERSION= 0.2.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= databases PKGNAMEPREFIX= php5- Index: head/databases/php5-tarantool/Makefile =================================================================== --- head/databases/php5-tarantool/Makefile +++ head/databases/php5-tarantool/Makefile @@ -3,6 +3,7 @@ PORTNAME= tarantool PORTVERSION= ${TR_VER} +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php5- Index: head/databases/php55-dba/Makefile =================================================================== --- head/databases/php55-dba/Makefile +++ head/databases/php55-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-interbase/Makefile =================================================================== --- head/databases/php55-interbase/Makefile +++ head/databases/php55-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-mssql/Makefile =================================================================== --- head/databases/php55-mssql/Makefile +++ head/databases/php55-mssql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-mysql/Makefile =================================================================== --- head/databases/php55-mysql/Makefile +++ head/databases/php55-mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-mysqli/Makefile =================================================================== --- head/databases/php55-mysqli/Makefile +++ head/databases/php55-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-odbc/Makefile =================================================================== --- head/databases/php55-odbc/Makefile +++ head/databases/php55-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo/Makefile =================================================================== --- head/databases/php55-pdo/Makefile +++ head/databases/php55-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_dblib/Makefile =================================================================== --- head/databases/php55-pdo_dblib/Makefile +++ head/databases/php55-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_firebird/Makefile =================================================================== --- head/databases/php55-pdo_firebird/Makefile +++ head/databases/php55-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_mysql/Makefile =================================================================== --- head/databases/php55-pdo_mysql/Makefile +++ head/databases/php55-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_odbc/Makefile =================================================================== --- head/databases/php55-pdo_odbc/Makefile +++ head/databases/php55-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_pgsql/Makefile =================================================================== --- head/databases/php55-pdo_pgsql/Makefile +++ head/databases/php55-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pdo_sqlite/Makefile =================================================================== --- head/databases/php55-pdo_sqlite/Makefile +++ head/databases/php55-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-pgsql/Makefile =================================================================== --- head/databases/php55-pgsql/Makefile +++ head/databases/php55-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-redis/Makefile =================================================================== --- head/databases/php55-redis/Makefile +++ head/databases/php55-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.4 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php55- Index: head/databases/php55-sqlite3/Makefile =================================================================== --- head/databases/php55-sqlite3/Makefile +++ head/databases/php55-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php55-sybase_ct/Makefile =================================================================== --- head/databases/php55-sybase_ct/Makefile +++ head/databases/php55-sybase_ct/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/databases/php56-dba/Makefile =================================================================== --- head/databases/php56-dba/Makefile +++ head/databases/php56-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-interbase/Makefile =================================================================== --- head/databases/php56-interbase/Makefile +++ head/databases/php56-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-mssql/Makefile =================================================================== --- head/databases/php56-mssql/Makefile +++ head/databases/php56-mssql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-mysql/Makefile =================================================================== --- head/databases/php56-mysql/Makefile +++ head/databases/php56-mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-mysqli/Makefile =================================================================== --- head/databases/php56-mysqli/Makefile +++ head/databases/php56-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-odbc/Makefile =================================================================== --- head/databases/php56-odbc/Makefile +++ head/databases/php56-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo/Makefile =================================================================== --- head/databases/php56-pdo/Makefile +++ head/databases/php56-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_dblib/Makefile =================================================================== --- head/databases/php56-pdo_dblib/Makefile +++ head/databases/php56-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_firebird/Makefile =================================================================== --- head/databases/php56-pdo_firebird/Makefile +++ head/databases/php56-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_mysql/Makefile =================================================================== --- head/databases/php56-pdo_mysql/Makefile +++ head/databases/php56-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_odbc/Makefile =================================================================== --- head/databases/php56-pdo_odbc/Makefile +++ head/databases/php56-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_pgsql/Makefile =================================================================== --- head/databases/php56-pdo_pgsql/Makefile +++ head/databases/php56-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pdo_sqlite/Makefile =================================================================== --- head/databases/php56-pdo_sqlite/Makefile +++ head/databases/php56-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-pgsql/Makefile =================================================================== --- head/databases/php56-pgsql/Makefile +++ head/databases/php56-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-redis/Makefile =================================================================== --- head/databases/php56-redis/Makefile +++ head/databases/php56-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.8 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php56- Index: head/databases/php56-sqlite3/Makefile =================================================================== --- head/databases/php56-sqlite3/Makefile +++ head/databases/php56-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php56-sybase_ct/Makefile =================================================================== --- head/databases/php56-sybase_ct/Makefile +++ head/databases/php56-sybase_ct/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/databases/php70-dba/Makefile =================================================================== --- head/databases/php70-dba/Makefile +++ head/databases/php70-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-interbase/Makefile =================================================================== --- head/databases/php70-interbase/Makefile +++ head/databases/php70-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-mysqli/Makefile =================================================================== --- head/databases/php70-mysqli/Makefile +++ head/databases/php70-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-odbc/Makefile =================================================================== --- head/databases/php70-odbc/Makefile +++ head/databases/php70-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo/Makefile =================================================================== --- head/databases/php70-pdo/Makefile +++ head/databases/php70-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_dblib/Makefile =================================================================== --- head/databases/php70-pdo_dblib/Makefile +++ head/databases/php70-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_firebird/Makefile =================================================================== --- head/databases/php70-pdo_firebird/Makefile +++ head/databases/php70-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_mysql/Makefile =================================================================== --- head/databases/php70-pdo_mysql/Makefile +++ head/databases/php70-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_odbc/Makefile =================================================================== --- head/databases/php70-pdo_odbc/Makefile +++ head/databases/php70-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_pgsql/Makefile =================================================================== --- head/databases/php70-pdo_pgsql/Makefile +++ head/databases/php70-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pdo_sqlite/Makefile =================================================================== --- head/databases/php70-pdo_sqlite/Makefile +++ head/databases/php70-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-pgsql/Makefile =================================================================== --- head/databases/php70-pgsql/Makefile +++ head/databases/php70-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/databases/php70-redis/Makefile =================================================================== --- head/databases/php70-redis/Makefile +++ head/databases/php70-redis/Makefile @@ -2,6 +2,7 @@ PORTNAME= redis PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php70- Index: head/databases/php70-sqlite3/Makefile =================================================================== --- head/databases/php70-sqlite3/Makefile +++ head/databases/php70-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/ioncube/Makefile =================================================================== --- head/devel/ioncube/Makefile +++ head/devel/ioncube/Makefile @@ -31,5 +31,10 @@ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so ${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}_ts.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so +# Put it before opcache, like the previous pkg-message was saying + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "[Zend]" > ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini + @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini + @${ECHO_CMD} "zend_extension_ts=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini .include Index: head/devel/ioncube/files/pkg-message.in =================================================================== --- head/devel/ioncube/files/pkg-message.in +++ head/devel/ioncube/files/pkg-message.in @@ -1,14 +1,8 @@ - You have installed the ionCube loader package. -Edit %%LOCALBASE%%/etc/php.ini or %%LOCALBASE%%/etc/php/extensions.ini -and add this three lines: +The following lines have been added to %%PREFIX%%/etc/php/ext-05-ioncube.ini so +that the extension has been automatically activated. --------------------------------------------------------------------------------- [Zend] -zend_extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so" -zend_extension_ts="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so" --------------------------------------------------------------------------------- - -NOTE: If you have any Zend Extension already installed - you need put this before -existing zend_extension lines. +zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so +zend_extension_ts=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so Index: head/devel/ioncube/pkg-plist =================================================================== --- head/devel/ioncube/pkg-plist +++ head/devel/ioncube/pkg-plist @@ -1,2 +1,3 @@ +etc/php/ext-05-ioncube.ini lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so Index: head/devel/pecl-APCu/Makefile =================================================================== --- head/devel/pecl-APCu/Makefile +++ head/devel/pecl-APCu/Makefile @@ -3,6 +3,7 @@ PORTNAME= APCu PORTVERSION= 4.0.10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-automap/Makefile =================================================================== --- head/devel/pecl-automap/Makefile +++ head/devel/pecl-automap/Makefile @@ -3,6 +3,7 @@ PORTNAME= automap PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-bbcode/Makefile =================================================================== --- head/devel/pecl-bbcode/Makefile +++ head/devel/pecl-bbcode/Makefile @@ -3,6 +3,7 @@ PORTNAME= bbcode PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-bcompiler/Makefile =================================================================== --- head/devel/pecl-bcompiler/Makefile +++ head/devel/pecl-bcompiler/Makefile @@ -3,6 +3,7 @@ PORTNAME= bcompiler PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-dio/Makefile =================================================================== --- head/devel/pecl-dio/Makefile +++ head/devel/pecl-dio/Makefile @@ -2,6 +2,7 @@ PORTNAME= dio DISTVERSION= 0.0.7 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-eio/Makefile =================================================================== --- head/devel/pecl-eio/Makefile +++ head/devel/pecl-eio/Makefile @@ -3,6 +3,7 @@ PORTNAME= eio PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-ev/Makefile =================================================================== --- head/devel/pecl-ev/Makefile +++ head/devel/pecl-ev/Makefile @@ -3,7 +3,7 @@ PORTNAME= ev PORTVERSION= 0.2.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-event/Makefile =================================================================== --- head/devel/pecl-event/Makefile +++ head/devel/pecl-event/Makefile @@ -3,6 +3,7 @@ PORTNAME= event PORTVERSION= 2.0.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-expect/Makefile =================================================================== --- head/devel/pecl-expect/Makefile +++ head/devel/pecl-expect/Makefile @@ -3,7 +3,7 @@ PORTNAME= expect PORTVERSION= 0.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-gearman/Makefile =================================================================== --- head/devel/pecl-gearman/Makefile +++ head/devel/pecl-gearman/Makefile @@ -3,6 +3,7 @@ PORTNAME= gearman PORTVERSION= 1.1.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-hidef/Makefile =================================================================== --- head/devel/pecl-hidef/Makefile +++ head/devel/pecl-hidef/Makefile @@ -3,6 +3,7 @@ PORTNAME= hidef PORTVERSION= 0.1.13 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-hrtime/Makefile =================================================================== --- head/devel/pecl-hrtime/Makefile +++ head/devel/pecl-hrtime/Makefile @@ -3,6 +3,7 @@ PORTNAME= hrtime PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-htscanner/Makefile =================================================================== --- head/devel/pecl-htscanner/Makefile +++ head/devel/pecl-htscanner/Makefile @@ -3,6 +3,7 @@ PORTNAME= htscanner PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-inotify/Makefile =================================================================== --- head/devel/pecl-inotify/Makefile +++ head/devel/pecl-inotify/Makefile @@ -3,7 +3,7 @@ PORTNAME= inotify PORTVERSION= 0.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-intl/Makefile =================================================================== --- head/devel/pecl-intl/Makefile +++ head/devel/pecl-intl/Makefile @@ -3,7 +3,7 @@ PORTNAME= intl PORTVERSION= 3.0.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-jsmin/Makefile =================================================================== --- head/devel/pecl-jsmin/Makefile +++ head/devel/pecl-jsmin/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsmin PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-json_post/Makefile =================================================================== --- head/devel/pecl-json_post/Makefile +++ head/devel/pecl-json_post/Makefile @@ -3,6 +3,7 @@ PORTNAME= json_post PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-jsonc/Makefile =================================================================== --- head/devel/pecl-jsonc/Makefile +++ head/devel/pecl-jsonc/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsonc PORTVERSION= 1.3.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-jsond/Makefile =================================================================== --- head/devel/pecl-jsond/Makefile +++ head/devel/pecl-jsond/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsond PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-jsonnet/Makefile =================================================================== --- head/devel/pecl-jsonnet/Makefile +++ head/devel/pecl-jsonnet/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsonnet PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-judy/Makefile =================================================================== --- head/devel/pecl-judy/Makefile +++ head/devel/pecl-judy/Makefile @@ -3,6 +3,7 @@ PORTNAME= judy PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-libevent/Makefile =================================================================== --- head/devel/pecl-libevent/Makefile +++ head/devel/pecl-libevent/Makefile @@ -3,6 +3,7 @@ PORTNAME= libevent PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-mcve/Makefile =================================================================== --- head/devel/pecl-mcve/Makefile +++ head/devel/pecl-mcve/Makefile @@ -3,7 +3,7 @@ PORTNAME= mcve PORTVERSION= 7.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-memoize/Makefile =================================================================== --- head/devel/pecl-memoize/Makefile +++ head/devel/pecl-memoize/Makefile @@ -3,7 +3,7 @@ PORTNAME= memoize PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-msgpack/Makefile =================================================================== --- head/devel/pecl-msgpack/Makefile +++ head/devel/pecl-msgpack/Makefile @@ -3,6 +3,7 @@ PORTNAME= msgpack PORTVERSION= 0.5.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-ncurses/Makefile =================================================================== --- head/devel/pecl-ncurses/Makefile +++ head/devel/pecl-ncurses/Makefile @@ -3,6 +3,7 @@ PORTNAME= ncurses PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-newt/Makefile =================================================================== --- head/devel/pecl-newt/Makefile +++ head/devel/pecl-newt/Makefile @@ -2,6 +2,7 @@ PORTNAME= newt PORTVERSION= 1.2.9 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-operator/Makefile =================================================================== --- head/devel/pecl-operator/Makefile +++ head/devel/pecl-operator/Makefile @@ -3,6 +3,7 @@ PORTNAME= operator PORTVERSION= 0.3 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-params/Makefile =================================================================== --- head/devel/pecl-params/Makefile +++ head/devel/pecl-params/Makefile @@ -3,6 +3,7 @@ PORTNAME= params PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-parsekit/Makefile =================================================================== --- head/devel/pecl-parsekit/Makefile +++ head/devel/pecl-parsekit/Makefile @@ -3,6 +3,7 @@ PORTNAME= parsekit PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-propro/Makefile =================================================================== --- head/devel/pecl-propro/Makefile +++ head/devel/pecl-propro/Makefile @@ -3,7 +3,7 @@ PORTNAME= propro PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-propro2/Makefile =================================================================== --- head/devel/pecl-propro2/Makefile +++ head/devel/pecl-propro2/Makefile @@ -3,6 +3,7 @@ PORTNAME= propro PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-pthreads/Makefile =================================================================== --- head/devel/pecl-pthreads/Makefile +++ head/devel/pecl-pthreads/Makefile @@ -3,6 +3,7 @@ PORTNAME= pthreads PORTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-qb/Makefile =================================================================== --- head/devel/pecl-qb/Makefile +++ head/devel/pecl-qb/Makefile @@ -3,7 +3,7 @@ PORTNAME= qb PORTVERSION= 2.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-raphf/Makefile =================================================================== --- head/devel/pecl-raphf/Makefile +++ head/devel/pecl-raphf/Makefile @@ -3,7 +3,7 @@ PORTNAME= raphf PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-raphf2/Makefile =================================================================== --- head/devel/pecl-raphf2/Makefile +++ head/devel/pecl-raphf2/Makefile @@ -3,6 +3,7 @@ PORTNAME= raphf PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-runkit/Makefile =================================================================== --- head/devel/pecl-runkit/Makefile +++ head/devel/pecl-runkit/Makefile @@ -3,6 +3,7 @@ PORTNAME= runkit PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-scream/Makefile =================================================================== --- head/devel/pecl-scream/Makefile +++ head/devel/pecl-scream/Makefile @@ -3,6 +3,7 @@ PORTNAME= scream DISTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-shape/Makefile =================================================================== --- head/devel/pecl-shape/Makefile +++ head/devel/pecl-shape/Makefile @@ -3,7 +3,7 @@ PORTNAME= shape PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-spl_types/Makefile =================================================================== --- head/devel/pecl-spl_types/Makefile +++ head/devel/pecl-spl_types/Makefile @@ -3,6 +3,7 @@ PORTNAME= spl_types PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-spread/Makefile =================================================================== --- head/devel/pecl-spread/Makefile +++ head/devel/pecl-spread/Makefile @@ -3,7 +3,7 @@ PORTNAME= spread PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-statgrab/Makefile =================================================================== --- head/devel/pecl-statgrab/Makefile +++ head/devel/pecl-statgrab/Makefile @@ -3,7 +3,7 @@ PORTNAME= statgrab PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-strict/Makefile =================================================================== --- head/devel/pecl-strict/Makefile +++ head/devel/pecl-strict/Makefile @@ -3,6 +3,7 @@ PORTNAME= strict PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-svn/Makefile =================================================================== --- head/devel/pecl-svn/Makefile +++ head/devel/pecl-svn/Makefile @@ -3,7 +3,7 @@ PORTNAME= svn PORTVERSION= 1.0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-swoole/Makefile =================================================================== --- head/devel/pecl-swoole/Makefile +++ head/devel/pecl-swoole/Makefile @@ -3,6 +3,7 @@ PORTNAME= swoole PORTVERSION= 1.7.22 +PORTREVISION= 1 CATEGORIES= devel net MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-sync/Makefile =================================================================== --- head/devel/pecl-sync/Makefile +++ head/devel/pecl-sync/Makefile @@ -3,6 +3,7 @@ PORTNAME= sync PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-test_helpers/Makefile =================================================================== --- head/devel/pecl-test_helpers/Makefile +++ head/devel/pecl-test_helpers/Makefile @@ -3,7 +3,7 @@ PORTNAME= test_helpers PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pear.phpunit.de/get/ PKGNAMEPREFIX= pecl- @@ -14,8 +14,10 @@ LICENSE= BSD3CLAUSE CONFIGURE_ARGS= --enable-test-helpers -USES= php:ext tar:tgz +USES= php:zend tar:tgz SUB_FILES= pkg-message IGNORE_WITH_PHP= 70 +# This needs to be loaded *after* devel/php-xdebug +PHP_MOD_PRIO= 30 .include Index: head/devel/pecl-test_helpers/files/pkg-message.in =================================================================== --- head/devel/pecl-test_helpers/files/pkg-message.in +++ head/devel/pecl-test_helpers/files/pkg-message.in @@ -1,20 +1,7 @@ ***************************************************************************** The php extension 'test_helpers' has been installed successful. -Add a line containing - extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so - -or - - zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so - -If this extension is used in combination with other extensions, such as Xdebug, -which are also overloading the `ZEND_NEW` opcode you have to load it as -`zend_extension` after loading the conflicting extension. This can be done in -your `php.ini` like this: - - zend_extension=xdebug.so - zend_extension=test-helpers.so +It has been automatically activated. Please refer to `phpinfo()` to verify whether a conflict was detected and whether the work-around was enabled. Index: head/devel/pecl-trace/Makefile =================================================================== --- head/devel/pecl-trace/Makefile +++ head/devel/pecl-trace/Makefile @@ -3,6 +3,7 @@ PORTNAME= trace PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-uopz/Makefile =================================================================== --- head/devel/pecl-uopz/Makefile +++ head/devel/pecl-uopz/Makefile @@ -3,6 +3,7 @@ PORTNAME= uopz PORTVERSION= 2.0.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-uploadprogress/Makefile =================================================================== --- head/devel/pecl-uploadprogress/Makefile +++ head/devel/pecl-uploadprogress/Makefile @@ -3,6 +3,7 @@ PORTNAME= uploadprogress PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-uri_template/Makefile =================================================================== --- head/devel/pecl-uri_template/Makefile +++ head/devel/pecl-uri_template/Makefile @@ -3,6 +3,7 @@ PORTNAME= uri_template PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-uuid/Makefile =================================================================== --- head/devel/pecl-uuid/Makefile +++ head/devel/pecl-uuid/Makefile @@ -3,6 +3,7 @@ PORTNAME= uuid PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-vld/Makefile =================================================================== --- head/devel/pecl-vld/Makefile +++ head/devel/pecl-vld/Makefile @@ -3,6 +3,7 @@ PORTNAME= vld PORTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-weakref/Makefile =================================================================== --- head/devel/pecl-weakref/Makefile +++ head/devel/pecl-weakref/Makefile @@ -3,6 +3,7 @@ PORTNAME= weakref PORTVERSION= 0.2.6 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-xhprof/Makefile =================================================================== --- head/devel/pecl-xhprof/Makefile +++ head/devel/pecl-xhprof/Makefile @@ -3,6 +3,7 @@ PORTNAME= xhprof PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/pecl-yac/Makefile =================================================================== --- head/devel/pecl-yac/Makefile +++ head/devel/pecl-yac/Makefile @@ -3,6 +3,7 @@ PORTNAME= yac PORTVERSION= 0.9.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ Index: head/devel/pecl-zookeeper/Makefile =================================================================== --- head/devel/pecl-zookeeper/Makefile +++ head/devel/pecl-zookeeper/Makefile @@ -3,7 +3,7 @@ PORTNAME= zookeeper PORTVERSION= 0.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/devel/php-jq/Makefile =================================================================== --- head/devel/php-jq/Makefile +++ head/devel/php-jq/Makefile @@ -3,6 +3,7 @@ PORTNAME= jq PORTVERSION= 0.0.1 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- Index: head/devel/php-maxminddb/Makefile =================================================================== --- head/devel/php-maxminddb/Makefile +++ head/devel/php-maxminddb/Makefile @@ -3,6 +3,7 @@ PORTNAME= maxminddb PORTVERSION= 1.1.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel net PKGNAMEPREFIX= php- Index: head/devel/php-memoize/Makefile =================================================================== --- head/devel/php-memoize/Makefile +++ head/devel/php-memoize/Makefile @@ -4,7 +4,7 @@ PORTNAME= php-memoize PORTVERSION= 0.2.0b1 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= gasol.wu@gmail.com Index: head/devel/php-scalar_objects/Makefile =================================================================== --- head/devel/php-scalar_objects/Makefile +++ head/devel/php-scalar_objects/Makefile @@ -3,7 +3,7 @@ PORTNAME= scalar_objects PORTVERSION= 0.0.20140124 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= php- Index: head/devel/php-uprofiler/Makefile =================================================================== --- head/devel/php-uprofiler/Makefile +++ head/devel/php-uprofiler/Makefile @@ -3,6 +3,7 @@ PORTNAME= uprofiler PORTVERSION= 0.11.0.20150219 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- Index: head/devel/php-xdebug/Makefile =================================================================== --- head/devel/php-xdebug/Makefile +++ head/devel/php-xdebug/Makefile @@ -3,6 +3,7 @@ PORTNAME= xdebug PORTVERSION= 2.4.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://xdebug.org/files/ PKGNAMEPREFIX= php- Index: head/devel/php-xdebug/files/pkg-message.in =================================================================== --- head/devel/php-xdebug/files/pkg-message.in +++ head/devel/php-xdebug/files/pkg-message.in @@ -1,17 +1,11 @@ ***************************************************************************** The php debugger 'xdebug' has been installed successful. -Add a line containing - extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so +It has been automatically enabled. -or - - zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so - -to your php.ini to load it. xdebug is not compatible with the extension -'Zend Optimizer' - you're only able to use one of them. So take care having -at least the lesser required extension disabled by commenting out it's -loader line in your php.ini. +xdebug is not compatible with the extension 'Zend Optimizer' - you're only able +to use one of them. So take care having at least the lesser required extension +disabled by commenting out it's loader line in its %%PREFIX%%/etc/php/ext-* file. Add following section to enable profiling: Index: head/devel/php5-blitz-devel/Makefile =================================================================== --- head/devel/php5-blitz-devel/Makefile +++ head/devel/php5-blitz-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= blitz-devel PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://alexeyrybak.com/blitz/ PKGNAMEPREFIX= php5- Index: head/devel/php5-blitz/Makefile =================================================================== --- head/devel/php5-blitz/Makefile +++ head/devel/php5-blitz/Makefile @@ -3,6 +3,7 @@ PORTNAME= blitz PORTVERSION= 0.8.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://alexeyrybak.com/blitz/ PKGNAMEPREFIX= php5- Index: head/devel/php5-dav/Makefile =================================================================== --- head/devel/php5-dav/Makefile +++ head/devel/php5-dav/Makefile @@ -3,7 +3,7 @@ PORTNAME= dav PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://download.pureftpd.org/php-webdav/ PKGNAMEPREFIX= php5- Index: head/devel/php5-ice/Makefile =================================================================== --- head/devel/php5-ice/Makefile +++ head/devel/php5-ice/Makefile @@ -34,27 +34,12 @@ post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/*.so @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php - -add-plist-info: - @${ECHO_CMD} "@exec mkdir -p %D/etc/php" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/etc/php 2> /dev/null || true" \ - >> ${TMPPLIST} + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-ice.ini security-check: @${ECHO_CMD} "****************************************************************************" @${ECHO_CMD} "" - @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" + @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/ext-20-ice.ini" @${ECHO_CMD} "configuration file to automatically load the installed extension:" @${ECHO_CMD} "" @${ECHO_CMD} "extension=${PHP_MODNAME}.so" Index: head/devel/php5-ice/pkg-plist =================================================================== --- head/devel/php5-ice/pkg-plist +++ head/devel/php5-ice/pkg-plist @@ -1,3 +1,4 @@ +etc/php/ext-20-ice.ini lib/php/%%PHP_EXT_DIR%%/IcePHP.so share/pear/Glacier2.php share/pear/Glacier2/Metrics.php Index: head/devel/php5-msgpack/Makefile =================================================================== --- head/devel/php5-msgpack/Makefile +++ head/devel/php5-msgpack/Makefile @@ -3,6 +3,7 @@ PORTNAME= msgpack PORTVERSION= 2012.05.05 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php5- Index: head/devel/php5-pinba/Makefile =================================================================== --- head/devel/php5-pinba/Makefile +++ head/devel/php5-pinba/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinba PORTVERSION= 2012.03.20 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= php5- Index: head/devel/php5-thrift/Makefile =================================================================== --- head/devel/php5-thrift/Makefile +++ head/devel/php5-thrift/Makefile @@ -3,6 +3,7 @@ PORTNAME= thrift PORTVERSION= ${THRIFT_PORTVERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= APACHE/thrift/${PORTVERSION} PKGNAMEPREFIX= php5- Index: head/devel/php55-gettext/Makefile =================================================================== --- head/devel/php55-gettext/Makefile +++ head/devel/php55-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-json/Makefile =================================================================== --- head/devel/php55-json/Makefile +++ head/devel/php55-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-pcntl/Makefile =================================================================== --- head/devel/php55-pcntl/Makefile +++ head/devel/php55-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-readline/Makefile =================================================================== --- head/devel/php55-readline/Makefile +++ head/devel/php55-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-shmop/Makefile =================================================================== --- head/devel/php55-shmop/Makefile +++ head/devel/php55-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-sysvmsg/Makefile =================================================================== --- head/devel/php55-sysvmsg/Makefile +++ head/devel/php55-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-sysvsem/Makefile =================================================================== --- head/devel/php55-sysvsem/Makefile +++ head/devel/php55-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-sysvshm/Makefile =================================================================== --- head/devel/php55-sysvshm/Makefile +++ head/devel/php55-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php55-tokenizer/Makefile =================================================================== --- head/devel/php55-tokenizer/Makefile +++ head/devel/php55-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/devel/php56-gettext/Makefile =================================================================== --- head/devel/php56-gettext/Makefile +++ head/devel/php56-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-json/Makefile =================================================================== --- head/devel/php56-json/Makefile +++ head/devel/php56-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-pcntl/Makefile =================================================================== --- head/devel/php56-pcntl/Makefile +++ head/devel/php56-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-readline/Makefile =================================================================== --- head/devel/php56-readline/Makefile +++ head/devel/php56-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-shmop/Makefile =================================================================== --- head/devel/php56-shmop/Makefile +++ head/devel/php56-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-sysvmsg/Makefile =================================================================== --- head/devel/php56-sysvmsg/Makefile +++ head/devel/php56-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-sysvsem/Makefile =================================================================== --- head/devel/php56-sysvsem/Makefile +++ head/devel/php56-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-sysvshm/Makefile =================================================================== --- head/devel/php56-sysvshm/Makefile +++ head/devel/php56-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php56-tokenizer/Makefile =================================================================== --- head/devel/php56-tokenizer/Makefile +++ head/devel/php56-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/devel/php70-gettext/Makefile =================================================================== --- head/devel/php70-gettext/Makefile +++ head/devel/php70-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-intl/Makefile =================================================================== --- head/devel/php70-intl/Makefile +++ head/devel/php70-intl/Makefile @@ -1,7 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-json/Makefile =================================================================== --- head/devel/php70-json/Makefile +++ head/devel/php70-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-pcntl/Makefile =================================================================== --- head/devel/php70-pcntl/Makefile +++ head/devel/php70-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-readline/Makefile =================================================================== --- head/devel/php70-readline/Makefile +++ head/devel/php70-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-shmop/Makefile =================================================================== --- head/devel/php70-shmop/Makefile +++ head/devel/php70-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-sysvmsg/Makefile =================================================================== --- head/devel/php70-sysvmsg/Makefile +++ head/devel/php70-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-sysvsem/Makefile =================================================================== --- head/devel/php70-sysvsem/Makefile +++ head/devel/php70-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-sysvshm/Makefile =================================================================== --- head/devel/php70-sysvshm/Makefile +++ head/devel/php70-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/devel/php70-tokenizer/Makefile =================================================================== --- head/devel/php70-tokenizer/Makefile +++ head/devel/php70-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/finance/php-tclink/Makefile =================================================================== --- head/finance/php-tclink/Makefile +++ head/finance/php-tclink/Makefile @@ -3,7 +3,7 @@ PORTNAME= tclink PORTVERSION= 4.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance MASTER_SITES= https://vault.trustcommerce.com/downloads/ PKGNAMEPREFIX= php- Index: head/ftp/php55-curl/Makefile =================================================================== --- head/ftp/php55-curl/Makefile +++ head/ftp/php55-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/ftp/php55-ftp/Makefile =================================================================== --- head/ftp/php55-ftp/Makefile +++ head/ftp/php55-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/ftp/php56-curl/Makefile =================================================================== --- head/ftp/php56-curl/Makefile +++ head/ftp/php56-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/ftp/php56-ftp/Makefile =================================================================== --- head/ftp/php56-ftp/Makefile +++ head/ftp/php56-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/ftp/php70-curl/Makefile =================================================================== --- head/ftp/php70-curl/Makefile +++ head/ftp/php70-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/ftp/php70-ftp/Makefile =================================================================== --- head/ftp/php70-ftp/Makefile +++ head/ftp/php70-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/graphics/mapserver/Makefile =================================================================== --- head/graphics/mapserver/Makefile +++ head/graphics/mapserver/Makefile @@ -125,11 +125,9 @@ .endif .if ${PORT_OPTIONS:MPHP} -BUILD_DEPENDS+= ${LOCALBASE}/bin/php-config:lang/php56 -RUN_BUILDS+= ${LOCALBASE}/bin/php-config:lang/php56 -PHP_EXTENSION_DIR!= ${LOCALBASE}/bin/php-config --extension-dir | ${SED} -e "s,/usr/local/,," +USES+= php:build +IGNORE_WITH_PHP= 55 70 CMAKE_ARGS+= -DWITH_PHP=1 -PLIST_SUB+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR} PLIST_SUB+= PHP="" .else CMAKE_ARGS+= -DWITH_PHP=0 @@ -188,22 +186,20 @@ .endfor ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libmapserver.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib -.if ${PORT_OPTIONS:MPHP} - @${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR} + @${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2 + @${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so + +do-install-PHP-on: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/mapscript/php/php_mapscript.so \ - ${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR}/ -.endif + ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension=php_mapscript.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-php_mapscript.ini -.if ${PORT_OPTIONS:MPYTHON} + +do-install-PYTHON-on: @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/ (cd ${BUILD_WRKSRC}/mapscript/python && ${CP} mapscript.py _mapscript.so ${STAGEDIR}${PYTHON_SITELIBDIR}/) -.endif - - @${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2 - @${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so -.if ${PORT_OPTIONS:MPHP} - @${ECHO_MSG} "Please add the line extension=php_mapscript.so to ${PREFIX}/etc/php/extensions.ini" -.endif .include Index: head/graphics/mapserver/pkg-plist =================================================================== --- head/graphics/mapserver/pkg-plist +++ head/graphics/mapserver/pkg-plist @@ -8,9 +8,10 @@ bin/shptreevis bin/sortshp bin/tile4ms +%%PHP%%etc/php/ext-20-php_mapscript.ini lib/libmapserver.so lib/libmapserver.so.2 lib/libmapserver.so.7.0.1 -%%PHP%%%%PHP_EXTENSION_DIR%%/php_mapscript.so +%%PHP%%lib/php/%%PHP_EXT_DIR%%/php_mapscript.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/mapscript.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/_mapscript.so Index: head/graphics/pecl-gmagick/Makefile =================================================================== --- head/graphics/pecl-gmagick/Makefile +++ head/graphics/pecl-gmagick/Makefile @@ -3,6 +3,7 @@ PORTNAME= gmagick PORTVERSION= 1.1.7RC3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/graphics/pecl-imagick/Makefile =================================================================== --- head/graphics/pecl-imagick/Makefile +++ head/graphics/pecl-imagick/Makefile @@ -3,6 +3,7 @@ PORTNAME= imagick DISTVERSION= 3.4.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/graphics/pecl-imlib2/Makefile =================================================================== --- head/graphics/pecl-imlib2/Makefile +++ head/graphics/pecl-imlib2/Makefile @@ -3,7 +3,7 @@ PORTNAME= imlib2 PORTVERSION= 0.1.00 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/graphics/pecl-qrencode/Makefile =================================================================== --- head/graphics/pecl-qrencode/Makefile +++ head/graphics/pecl-qrencode/Makefile @@ -3,6 +3,7 @@ PORTNAME= qrencode PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= graphics pear MASTER_SITES= LOCAL/vanilla PKGNAMEPREFIX= pecl- Index: head/graphics/php-facedetect/Makefile =================================================================== --- head/graphics/php-facedetect/Makefile +++ head/graphics/php-facedetect/Makefile @@ -3,7 +3,7 @@ PORTNAME= facedetect PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PKGNAMEPREFIX= php- Index: head/graphics/php-libpuzzle/Makefile =================================================================== --- head/graphics/php-libpuzzle/Makefile +++ head/graphics/php-libpuzzle/Makefile @@ -3,7 +3,7 @@ PORTNAME= libpuzzle PORTVERSION= 0.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/release/ \ ftp://ftp.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/ Index: head/graphics/php-magickwand/Makefile =================================================================== --- head/graphics/php-magickwand/Makefile +++ head/graphics/php-magickwand/Makefile @@ -3,7 +3,7 @@ PORTNAME= magickwand PORTVERSION= 1.0.9 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://www.magickwand.org/download/php/ PKGNAMEPREFIX= php- Index: head/graphics/php5-ffmpeg/Makefile =================================================================== --- head/graphics/php5-ffmpeg/Makefile +++ head/graphics/php5-ffmpeg/Makefile @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.6.0.20120114 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= php- CATEGORIES= graphics MASTER_SITES= LOCAL/sunpoet Index: head/graphics/php55-exif/Makefile =================================================================== --- head/graphics/php55-exif/Makefile +++ head/graphics/php55-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/graphics/php55-gd/Makefile =================================================================== --- head/graphics/php55-gd/Makefile +++ head/graphics/php55-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/graphics/php56-exif/Makefile =================================================================== --- head/graphics/php56-exif/Makefile +++ head/graphics/php56-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/graphics/php56-gd/Makefile =================================================================== --- head/graphics/php56-gd/Makefile +++ head/graphics/php56-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/graphics/php70-exif/Makefile =================================================================== --- head/graphics/php70-exif/Makefile +++ head/graphics/php70-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/graphics/php70-gd/Makefile =================================================================== --- head/graphics/php70-gd/Makefile +++ head/graphics/php70-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/japanese/php5-mecab/Makefile =================================================================== --- head/japanese/php5-mecab/Makefile +++ head/japanese/php5-mecab/Makefile @@ -2,6 +2,7 @@ PORTNAME= mecab PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= http://github.com/downloads/rsky/php-${PORTNAME}/ DISTNAME= php-mecab-${PORTVERSION} Index: head/lang/pecl-perl/Makefile =================================================================== --- head/lang/pecl-perl/Makefile +++ head/lang/pecl-perl/Makefile @@ -3,6 +3,7 @@ PORTNAME= perl DISTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= lang perl5 MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/lang/php55/Makefile =================================================================== --- head/lang/php55/Makefile +++ head/lang/php55/Makefile @@ -3,7 +3,7 @@ PORTNAME= php55 PORTVERSION= 5.5.38 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} Index: head/lang/php55/Makefile.ext =================================================================== --- head/lang/php55/Makefile.ext +++ head/lang/php55/Makefile.ext @@ -217,6 +217,8 @@ .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache .endif Index: head/lang/php56/Makefile =================================================================== --- head/lang/php56/Makefile +++ head/lang/php56/Makefile @@ -3,7 +3,7 @@ PORTNAME= php56 PORTVERSION= 5.6.24 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} Index: head/lang/php56/Makefile.ext =================================================================== --- head/lang/php56/Makefile.ext +++ head/lang/php56/Makefile.ext @@ -217,6 +217,8 @@ .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache .endif Index: head/lang/php70/Makefile =================================================================== --- head/lang/php70/Makefile +++ head/lang/php70/Makefile @@ -3,6 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.9 +PORTREVISION?= 2 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} Index: head/lang/php70/Makefile.ext =================================================================== --- head/lang/php70/Makefile.ext +++ head/lang/php70/Makefile.ext @@ -209,6 +209,8 @@ .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache USES+= localbase .endif Index: head/mail/pecl-esmtp/Makefile =================================================================== --- head/mail/pecl-esmtp/Makefile +++ head/mail/pecl-esmtp/Makefile @@ -3,7 +3,7 @@ PORTNAME= esmtp PORTVERSION= 0.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/mail/pecl-mailparse/Makefile =================================================================== --- head/mail/pecl-mailparse/Makefile +++ head/mail/pecl-mailparse/Makefile @@ -3,6 +3,7 @@ PORTNAME= mailparse PORTVERSION= 2.1.6 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/mail/pecl-pop3/Makefile =================================================================== --- head/mail/pecl-pop3/Makefile +++ head/mail/pecl-pop3/Makefile @@ -3,6 +3,7 @@ PORTNAME= pop3 PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/mail/php55-imap/Makefile =================================================================== --- head/mail/php55-imap/Makefile +++ head/mail/php55-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/mail/php56-imap/Makefile =================================================================== --- head/mail/php56-imap/Makefile +++ head/mail/php56-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/mail/php70-imap/Makefile =================================================================== --- head/mail/php70-imap/Makefile +++ head/mail/php70-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/math/pecl-big_int/Makefile =================================================================== --- head/math/pecl-big_int/Makefile +++ head/math/pecl-big_int/Makefile @@ -3,6 +3,7 @@ PORTNAME= big_int PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= math devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/math/pecl-bitset/Makefile =================================================================== --- head/math/pecl-bitset/Makefile +++ head/math/pecl-bitset/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitset PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/math/pecl-bitset2/Makefile =================================================================== --- head/math/pecl-bitset2/Makefile +++ head/math/pecl-bitset2/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitset PORTVERSION= 2.0.3 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/math/pecl-stats/Makefile =================================================================== --- head/math/pecl-stats/Makefile +++ head/math/pecl-stats/Makefile @@ -3,6 +3,7 @@ PORTNAME= stats PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= math textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/math/pecl-trader/Makefile =================================================================== --- head/math/pecl-trader/Makefile +++ head/math/pecl-trader/Makefile @@ -3,6 +3,7 @@ PORTNAME= trader PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= math devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/math/php55-bcmath/Makefile =================================================================== --- head/math/php55-bcmath/Makefile +++ head/math/php55-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/math/php55-gmp/Makefile =================================================================== --- head/math/php55-gmp/Makefile +++ head/math/php55-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/math/php56-bcmath/Makefile =================================================================== --- head/math/php56-bcmath/Makefile +++ head/math/php56-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/math/php56-gmp/Makefile =================================================================== --- head/math/php56-gmp/Makefile +++ head/math/php56-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/math/php70-bcmath/Makefile =================================================================== --- head/math/php70-bcmath/Makefile +++ head/math/php70-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/math/php70-gmp/Makefile =================================================================== --- head/math/php70-gmp/Makefile +++ head/math/php70-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/misc/pecl-timezonedb/Makefile =================================================================== --- head/misc/pecl-timezonedb/Makefile +++ head/misc/pecl-timezonedb/Makefile @@ -3,6 +3,7 @@ PORTNAME= timezonedb PORTVERSION= 2016.5 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/misc/php55-calendar/Makefile =================================================================== --- head/misc/php55-calendar/Makefile +++ head/misc/php55-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/misc/php56-calendar/Makefile =================================================================== --- head/misc/php56-calendar/Makefile +++ head/misc/php56-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/misc/php70-calendar/Makefile =================================================================== --- head/misc/php70-calendar/Makefile +++ head/misc/php70-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/multimedia/php-pHash/Makefile =================================================================== --- head/multimedia/php-pHash/Makefile +++ head/multimedia/php-pHash/Makefile @@ -3,6 +3,7 @@ PORTNAME= pHash PORTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= multimedia devel MASTER_SITES= http://phash.org/releases/ \ http://www.cyberbotx.com/pHash/ Index: head/net-im/pecl-stomp/Makefile =================================================================== --- head/net-im/pecl-stomp/Makefile +++ head/net-im/pecl-stomp/Makefile @@ -3,6 +3,7 @@ PORTNAME= stomp PORTVERSION= 1.0.9 +PORTREVISION= 1 CATEGORIES= net-im pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net-mgmt/php55-snmp/Makefile =================================================================== --- head/net-mgmt/php55-snmp/Makefile +++ head/net-mgmt/php55-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/net-mgmt/php56-snmp/Makefile =================================================================== --- head/net-mgmt/php56-snmp/Makefile +++ head/net-mgmt/php56-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/net-mgmt/php70-snmp/Makefile =================================================================== --- head/net-mgmt/php70-snmp/Makefile +++ head/net-mgmt/php70-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/net/pecl-amqp/Makefile =================================================================== --- head/net/pecl-amqp/Makefile +++ head/net/pecl-amqp/Makefile @@ -3,7 +3,7 @@ PORTNAME= amqp PORTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-apn/Makefile =================================================================== --- head/net/pecl-apn/Makefile +++ head/net/pecl-apn/Makefile @@ -3,7 +3,7 @@ PORTNAME= apn PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-cvsclient/Makefile =================================================================== --- head/net/pecl-cvsclient/Makefile +++ head/net/pecl-cvsclient/Makefile @@ -3,6 +3,7 @@ PORTNAME= cvsclient PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-geoip/Makefile =================================================================== --- head/net/pecl-geoip/Makefile +++ head/net/pecl-geoip/Makefile @@ -3,6 +3,7 @@ PORTNAME= geoip PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= net www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-gupnp/Makefile =================================================================== --- head/net/pecl-gupnp/Makefile +++ head/net/pecl-gupnp/Makefile @@ -3,6 +3,7 @@ PORTNAME= gupnp PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-ip2location/Makefile =================================================================== --- head/net/pecl-ip2location/Makefile +++ head/net/pecl-ip2location/Makefile @@ -3,6 +3,7 @@ PORTNAME= ip2location PORTVERSION= 6.0.4 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-mosquitto/Makefile =================================================================== --- head/net/pecl-mosquitto/Makefile +++ head/net/pecl-mosquitto/Makefile @@ -3,6 +3,7 @@ PORTNAME= mosquitto PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-oauth/Makefile =================================================================== --- head/net/pecl-oauth/Makefile +++ head/net/pecl-oauth/Makefile @@ -3,6 +3,7 @@ PORTNAME= oauth PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-radius/Makefile =================================================================== --- head/net/pecl-radius/Makefile +++ head/net/pecl-radius/Makefile @@ -3,6 +3,7 @@ PORTNAME= radius DISTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= net security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-smbclient/Makefile =================================================================== --- head/net/pecl-smbclient/Makefile +++ head/net/pecl-smbclient/Makefile @@ -2,6 +2,7 @@ PORTNAME= smbclient PORTVERSION= 0.8.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-yaz/Makefile =================================================================== --- head/net/pecl-yaz/Makefile +++ head/net/pecl-yaz/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaz PORTVERSION= 1.1.6 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-yp/Makefile =================================================================== --- head/net/pecl-yp/Makefile +++ head/net/pecl-yp/Makefile @@ -3,6 +3,7 @@ PORTNAME= yp PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/pecl-zmq/Makefile =================================================================== --- head/net/pecl-zmq/Makefile +++ head/net/pecl-zmq/Makefile @@ -2,7 +2,7 @@ PORTNAME= zmq PORTVERSION= 1.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/net/php55-ldap/Makefile =================================================================== --- head/net/php55-ldap/Makefile +++ head/net/php55-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/net/php55-soap/Makefile =================================================================== --- head/net/php55-soap/Makefile +++ head/net/php55-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/net/php55-sockets/Makefile =================================================================== --- head/net/php55-sockets/Makefile +++ head/net/php55-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/net/php55-xmlrpc/Makefile =================================================================== --- head/net/php55-xmlrpc/Makefile +++ head/net/php55-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/net/php56-ldap/Makefile =================================================================== --- head/net/php56-ldap/Makefile +++ head/net/php56-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/net/php56-soap/Makefile =================================================================== --- head/net/php56-soap/Makefile +++ head/net/php56-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/net/php56-sockets/Makefile =================================================================== --- head/net/php56-sockets/Makefile +++ head/net/php56-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/net/php56-xmlrpc/Makefile =================================================================== --- head/net/php56-xmlrpc/Makefile +++ head/net/php56-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/net/php70-ldap/Makefile =================================================================== --- head/net/php70-ldap/Makefile +++ head/net/php70-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/net/php70-soap/Makefile =================================================================== --- head/net/php70-soap/Makefile +++ head/net/php70-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/net/php70-sockets/Makefile =================================================================== --- head/net/php70-sockets/Makefile +++ head/net/php70-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/net/php70-xmlrpc/Makefile =================================================================== --- head/net/php70-xmlrpc/Makefile +++ head/net/php70-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/print/pecl-haru/Makefile =================================================================== --- head/print/pecl-haru/Makefile +++ head/print/pecl-haru/Makefile @@ -3,6 +3,7 @@ PORTNAME= haru PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/print/pecl-pdflib/Makefile =================================================================== --- head/print/pecl-pdflib/Makefile +++ head/print/pecl-pdflib/Makefile @@ -3,6 +3,7 @@ PORTNAME= pdflib PORTVERSION= 3.0.4 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/print/pecl-ps/Makefile =================================================================== --- head/print/pecl-ps/Makefile +++ head/print/pecl-ps/Makefile @@ -3,6 +3,7 @@ PORTNAME= ps PORTVERSION= 1.3.7 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-crack/Makefile =================================================================== --- head/security/pecl-crack/Makefile +++ head/security/pecl-crack/Makefile @@ -3,6 +3,7 @@ PORTNAME= crack PORTVERSION= 0.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security www MASTER_SITES= http://pecl.php.net/get/ Index: head/security/pecl-crypto/Makefile =================================================================== --- head/security/pecl-crypto/Makefile +++ head/security/pecl-crypto/Makefile @@ -3,6 +3,7 @@ PORTNAME= crypto PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-gnupg/Makefile =================================================================== --- head/security/pecl-gnupg/Makefile +++ head/security/pecl-gnupg/Makefile @@ -3,6 +3,7 @@ PORTNAME= gnupg PORTVERSION= 1.3.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-pam/Makefile =================================================================== --- head/security/pecl-pam/Makefile +++ head/security/pecl-pam/Makefile @@ -3,6 +3,7 @@ PORTNAME= pam PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-scrypt/Makefile =================================================================== --- head/security/pecl-scrypt/Makefile +++ head/security/pecl-scrypt/Makefile @@ -3,7 +3,7 @@ PORTNAME= scrypt PORTVERSION= 1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-ssh2/Makefile =================================================================== --- head/security/pecl-ssh2/Makefile +++ head/security/pecl-ssh2/Makefile @@ -3,6 +3,7 @@ PORTNAME= ssh2 PORTVERSION= 0.12 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/pecl-tcpwrap/Makefile =================================================================== --- head/security/pecl-tcpwrap/Makefile +++ head/security/pecl-tcpwrap/Makefile @@ -3,6 +3,7 @@ PORTNAME= tcpwrap PORTVERSION= 1.1.3 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/security/php-suhosin/Makefile =================================================================== --- head/security/php-suhosin/Makefile +++ head/security/php-suhosin/Makefile @@ -3,6 +3,7 @@ PORTNAME= suhosin PORTVERSION= 0.9.38 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.suhosin.org/ PKGNAMEPREFIX= php- Index: head/security/php55-filter/Makefile =================================================================== --- head/security/php55-filter/Makefile +++ head/security/php55-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/security/php55-hash/Makefile =================================================================== --- head/security/php55-hash/Makefile +++ head/security/php55-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/security/php55-mcrypt/Makefile =================================================================== --- head/security/php55-mcrypt/Makefile +++ head/security/php55-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/security/php55-openssl/Makefile =================================================================== --- head/security/php55-openssl/Makefile +++ head/security/php55-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/security/php56-filter/Makefile =================================================================== --- head/security/php56-filter/Makefile +++ head/security/php56-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/security/php56-hash/Makefile =================================================================== --- head/security/php56-hash/Makefile +++ head/security/php56-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/security/php56-mcrypt/Makefile =================================================================== --- head/security/php56-mcrypt/Makefile +++ head/security/php56-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/security/php56-openssl/Makefile =================================================================== --- head/security/php56-openssl/Makefile +++ head/security/php56-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/security/php70-filter/Makefile =================================================================== --- head/security/php70-filter/Makefile +++ head/security/php70-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/security/php70-hash/Makefile =================================================================== --- head/security/php70-hash/Makefile +++ head/security/php70-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/security/php70-mcrypt/Makefile =================================================================== --- head/security/php70-mcrypt/Makefile +++ head/security/php70-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/security/php70-openssl/Makefile =================================================================== --- head/security/php70-openssl/Makefile +++ head/security/php70-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/sysutils/pecl-mogilefs/Makefile =================================================================== --- head/sysutils/pecl-mogilefs/Makefile +++ head/sysutils/pecl-mogilefs/Makefile @@ -3,7 +3,7 @@ PORTNAME= mogilefs PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/sysutils/pecl-proctitle/Makefile =================================================================== --- head/sysutils/pecl-proctitle/Makefile +++ head/sysutils/pecl-proctitle/Makefile @@ -3,6 +3,7 @@ PORTNAME= proctitle PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= sysutils pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/sysutils/php55-fileinfo/Makefile =================================================================== --- head/sysutils/php55-fileinfo/Makefile +++ head/sysutils/php55-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/sysutils/php55-posix/Makefile =================================================================== --- head/sysutils/php55-posix/Makefile +++ head/sysutils/php55-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/sysutils/php56-fileinfo/Makefile =================================================================== --- head/sysutils/php56-fileinfo/Makefile +++ head/sysutils/php56-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/sysutils/php56-posix/Makefile =================================================================== --- head/sysutils/php56-posix/Makefile +++ head/sysutils/php56-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/sysutils/php70-fileinfo/Makefile =================================================================== --- head/sysutils/php70-fileinfo/Makefile +++ head/sysutils/php70-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/sysutils/php70-posix/Makefile =================================================================== --- head/sysutils/php70-posix/Makefile +++ head/sysutils/php70-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/libmrss-php/Makefile =================================================================== --- head/textproc/libmrss-php/Makefile +++ head/textproc/libmrss-php/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmrss PORTVERSION= 0.19.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://www.autistici.org/bakunin/libmrss/ PKGNAMESUFFIX= -php Index: head/textproc/pecl-cld/Makefile =================================================================== --- head/textproc/pecl-cld/Makefile +++ head/textproc/pecl-cld/Makefile @@ -3,6 +3,7 @@ PORTNAME= cld PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-ctemplate/Makefile =================================================================== --- head/textproc/pecl-ctemplate/Makefile +++ head/textproc/pecl-ctemplate/Makefile @@ -3,6 +3,7 @@ PORTNAME= cTemplate PORTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= textproc pear DISTVERSIONPREFIX= v PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-doublemetaphone/Makefile =================================================================== --- head/textproc/pecl-doublemetaphone/Makefile +++ head/textproc/pecl-doublemetaphone/Makefile @@ -3,6 +3,7 @@ PORTNAME= doublemetaphone PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-enchant/Makefile =================================================================== --- head/textproc/pecl-enchant/Makefile +++ head/textproc/pecl-enchant/Makefile @@ -3,6 +3,7 @@ PORTNAME= enchant DISTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= textproc devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-html_parse/Makefile =================================================================== --- head/textproc/pecl-html_parse/Makefile +++ head/textproc/pecl-html_parse/Makefile @@ -3,6 +3,7 @@ PORTNAME= html_parse PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-stem/Makefile =================================================================== --- head/textproc/pecl-stem/Makefile +++ head/textproc/pecl-stem/Makefile @@ -3,6 +3,7 @@ PORTNAME= stem PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-syck/Makefile =================================================================== --- head/textproc/pecl-syck/Makefile +++ head/textproc/pecl-syck/Makefile @@ -3,7 +3,7 @@ PORTNAME= syck PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-wbxml/Makefile =================================================================== --- head/textproc/pecl-wbxml/Makefile +++ head/textproc/pecl-wbxml/Makefile @@ -3,7 +3,7 @@ PORTNAME= wbxml PORTVERSION= 1.0.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-xdiff/Makefile =================================================================== --- head/textproc/pecl-xdiff/Makefile +++ head/textproc/pecl-xdiff/Makefile @@ -3,6 +3,7 @@ PORTNAME= xdiff PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-xslcache/Makefile =================================================================== --- head/textproc/pecl-xslcache/Makefile +++ head/textproc/pecl-xslcache/Makefile @@ -3,6 +3,7 @@ PORTNAME= xslcache PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/pecl-yaml/Makefile =================================================================== --- head/textproc/pecl-yaml/Makefile +++ head/textproc/pecl-yaml/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaml PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/textproc/php-mecab/Makefile =================================================================== --- head/textproc/php-mecab/Makefile +++ head/textproc/php-mecab/Makefile @@ -3,6 +3,7 @@ PORTNAME= php-mecab PORTVERSION= 0.6.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= textproc Index: head/textproc/php55-ctype/Makefile =================================================================== --- head/textproc/php55-ctype/Makefile +++ head/textproc/php55-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-dom/Makefile =================================================================== --- head/textproc/php55-dom/Makefile +++ head/textproc/php55-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-pspell/Makefile =================================================================== --- head/textproc/php55-pspell/Makefile +++ head/textproc/php55-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-simplexml/Makefile =================================================================== --- head/textproc/php55-simplexml/Makefile +++ head/textproc/php55-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-wddx/Makefile =================================================================== --- head/textproc/php55-wddx/Makefile +++ head/textproc/php55-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-xml/Makefile =================================================================== --- head/textproc/php55-xml/Makefile +++ head/textproc/php55-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-xmlreader/Makefile =================================================================== --- head/textproc/php55-xmlreader/Makefile +++ head/textproc/php55-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-xmlwriter/Makefile =================================================================== --- head/textproc/php55-xmlwriter/Makefile +++ head/textproc/php55-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php55-xsl/Makefile =================================================================== --- head/textproc/php55-xsl/Makefile +++ head/textproc/php55-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/textproc/php56-ctype/Makefile =================================================================== --- head/textproc/php56-ctype/Makefile +++ head/textproc/php56-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-dom/Makefile =================================================================== --- head/textproc/php56-dom/Makefile +++ head/textproc/php56-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-pspell/Makefile =================================================================== --- head/textproc/php56-pspell/Makefile +++ head/textproc/php56-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-simplexml/Makefile =================================================================== --- head/textproc/php56-simplexml/Makefile +++ head/textproc/php56-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-wddx/Makefile =================================================================== --- head/textproc/php56-wddx/Makefile +++ head/textproc/php56-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-xml/Makefile =================================================================== --- head/textproc/php56-xml/Makefile +++ head/textproc/php56-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-xmlreader/Makefile =================================================================== --- head/textproc/php56-xmlreader/Makefile +++ head/textproc/php56-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-xmlwriter/Makefile =================================================================== --- head/textproc/php56-xmlwriter/Makefile +++ head/textproc/php56-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php56-xsl/Makefile =================================================================== --- head/textproc/php56-xsl/Makefile +++ head/textproc/php56-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/textproc/php70-ctype/Makefile =================================================================== --- head/textproc/php70-ctype/Makefile +++ head/textproc/php70-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-dom/Makefile =================================================================== --- head/textproc/php70-dom/Makefile +++ head/textproc/php70-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-pspell/Makefile =================================================================== --- head/textproc/php70-pspell/Makefile +++ head/textproc/php70-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-simplexml/Makefile =================================================================== --- head/textproc/php70-simplexml/Makefile +++ head/textproc/php70-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-wddx/Makefile =================================================================== --- head/textproc/php70-wddx/Makefile +++ head/textproc/php70-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-xml/Makefile =================================================================== --- head/textproc/php70-xml/Makefile +++ head/textproc/php70-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-xmlreader/Makefile =================================================================== --- head/textproc/php70-xmlreader/Makefile +++ head/textproc/php70-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-xmlwriter/Makefile =================================================================== --- head/textproc/php70-xmlwriter/Makefile +++ head/textproc/php70-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/textproc/php70-xsl/Makefile =================================================================== --- head/textproc/php70-xsl/Makefile +++ head/textproc/php70-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/www/pecl-APC/Makefile =================================================================== --- head/www/pecl-APC/Makefile +++ head/www/pecl-APC/Makefile @@ -3,7 +3,7 @@ PORTNAME= APC PORTVERSION= 3.1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www #MASTER_SITES= http://pecl.php.net/get/ MASTER_SITES= LOCAL/sunpoet Index: head/www/pecl-amfext/Makefile =================================================================== --- head/www/pecl-amfext/Makefile +++ head/www/pecl-amfext/Makefile @@ -3,7 +3,7 @@ PORTNAME= amfext PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-http/Makefile =================================================================== --- head/www/pecl-http/Makefile +++ head/www/pecl-http/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-http1/Makefile =================================================================== --- head/www/pecl-http1/Makefile +++ head/www/pecl-http1/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 1.7.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-http2/Makefile =================================================================== --- head/www/pecl-http2/Makefile +++ head/www/pecl-http2/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 2.5.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-solr/Makefile =================================================================== --- head/www/pecl-solr/Makefile +++ head/www/pecl-solr/Makefile @@ -3,6 +3,7 @@ PORTNAME= solr PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-sphinx/Makefile =================================================================== --- head/www/pecl-sphinx/Makefile +++ head/www/pecl-sphinx/Makefile @@ -3,6 +3,7 @@ PORTNAME= sphinx DISTVERSION= 1.3.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-swish/Makefile =================================================================== --- head/www/pecl-swish/Makefile +++ head/www/pecl-swish/Makefile @@ -3,6 +3,7 @@ PORTNAME= swish PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= www pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-twig/Makefile =================================================================== --- head/www/pecl-twig/Makefile +++ head/www/pecl-twig/Makefile @@ -3,6 +3,7 @@ PORTNAME= twig PORTVERSION= 1.24.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pear.twig-project.org/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-yaf/Makefile =================================================================== --- head/www/pecl-yaf/Makefile +++ head/www/pecl-yaf/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaf PORTVERSION= 2.3.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/pecl-yar/Makefile =================================================================== --- head/www/pecl-yar/Makefile +++ head/www/pecl-yar/Makefile @@ -3,6 +3,7 @@ PORTNAME= yar PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Index: head/www/phalcon/Makefile =================================================================== --- head/www/phalcon/Makefile +++ head/www/phalcon/Makefile @@ -3,6 +3,7 @@ PORTNAME= phalcon PORTVERSION= 2.0.13 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}-v CATEGORIES= www Index: head/www/php-screw/Makefile =================================================================== --- head/www/php-screw/Makefile +++ head/www/php-screw/Makefile @@ -40,9 +40,11 @@ do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} - @${INSTALL_DATA} ${WRKSRC}/modules/php_screw.so \ + @${INSTALL_LIB} ${WRKSRC}/modules/php_screw.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_PROGRAM} ${WRKSRC}/tools/screw ${STAGEDIR}${PREFIX}/bin - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so" > \ + ${STAGEDIR}${PREFIX}/etc/php/ext-30-screw.ini .include Index: head/www/php-screw/files/pkg-message.in =================================================================== --- head/www/php-screw/files/pkg-message.in +++ head/www/php-screw/files/pkg-message.in @@ -2,7 +2,8 @@ You have installed the php-screw package. -Edit %%LOCALBASE%%/etc/php.ini and add: +The following line has been added to %%PREFIX%%/etc/php/ext-30-screw.ini, +so that the extension is automatically enabled: extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/php_screw.so" Index: head/www/php-templates/Makefile =================================================================== --- head/www/php-templates/Makefile +++ head/www/php-templates/Makefile @@ -31,5 +31,8 @@ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}-doc/* ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/templates.so" > \ + ${STAGEDIR}${PREFIX}/etc/php/ext-20-templates.ini .include Index: head/www/php-templates/files/pkg-message.in =================================================================== --- head/www/php-templates/files/pkg-message.in +++ head/www/php-templates/files/pkg-message.in @@ -2,7 +2,8 @@ You have installed the php-templates package. -Edit %%LOCALBASE%%/etc/php.ini and add: +The following line has been added to %%PREFIX%%/etc/php/ext-20-templates.ini, +so that the extension is automatically enabled: extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/templates.so" Index: head/www/php55-opcache/Makefile =================================================================== --- head/www/php55-opcache/Makefile +++ head/www/php55-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/www/php55-session/Makefile =================================================================== --- head/www/php55-session/Makefile +++ head/www/php55-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/www/php55-tidy/Makefile =================================================================== --- head/www/php55-tidy/Makefile +++ head/www/php55-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 Index: head/www/php56-opcache/Makefile =================================================================== --- head/www/php56-opcache/Makefile +++ head/www/php56-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/www/php56-session/Makefile =================================================================== --- head/www/php56-session/Makefile +++ head/www/php56-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/www/php56-tidy/Makefile =================================================================== --- head/www/php56-tidy/Makefile +++ head/www/php56-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 Index: head/www/php70-opcache/Makefile =================================================================== --- head/www/php70-opcache/Makefile +++ head/www/php70-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/www/php70-session/Makefile =================================================================== --- head/www/php70-session/Makefile +++ head/www/php70-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 Index: head/www/php70-tidy/Makefile =================================================================== --- head/www/php70-tidy/Makefile +++ head/www/php70-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70