FreeBSD Bugzilla – Attachment 172751 Details for
Bug 210697
Remove etc/php/extension.ini
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch-v2
php-ter.diff (text/plain), 129.05 KB, created by
Mathieu Arnold
on 2016-07-20 14:44:36 UTC
(
hide
)
Description:
patch-v2
Filename:
MIME Type:
Creator:
Mathieu Arnold
Created:
2016-07-20 14:44:36 UTC
Size:
129.05 KB
patch
obsolete
>diff --git Mk/Scripts/create-manifest.sh Mk/Scripts/create-manifest.sh >index a960505..f543523 100644 >--- Mk/Scripts/create-manifest.sh >+++ Mk/Scripts/create-manifest.sh >@@ -104,7 +104,9 @@ done > > exec >${dp_METADIR}/+DISPLAY > >-[ -f ${dp_PKGMESSAGE} ] && cat ${dp_PKGMESSAGE} >+for message in ${dp_PKGMESSAGE}; do >+ [ -f "${message}" ] && cat "${message}" >+done > > # Try and keep these messages in sync with check-deprecated > if [ ${dp_MAINTAINER} = "ports@FreeBSD.org" ]; then >diff --git Mk/Uses/php.mk Mk/Uses/php.mk >index 32b4505..5db089f 100644 >--- Mk/Uses/php.mk >+++ Mk/Uses/php.mk >@@ -204,7 +204,20 @@ _INCLUDE_USES_PHP_POST_MK=yes > > . if ${php_ARGS:Mext} || ${php_ARGS:Mzend} > PHP_MODNAME?= ${PORTNAME} >+PHP_EXT_PKGMESSAGE= ${WRKDIR}/php-ext-pkg-message >+PKGMESSAGE+= ${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 >+INI_FILE= etc/php/ext-${PHP_MOD_PRIO}-${PHP_MODNAME}.ini > > do-install: > @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} >@@ -219,8 +232,13 @@ do-install: > @${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=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${INI_FILE} >+. else >+ @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${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} >@@ -234,44 +252,20 @@ add-plist-phpext: > >> ${TMPPLIST} > @${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \ > >> ${TMPPLIST} >- @${ECHO_CMD} "@dir etc/php" \ >+ @${ECHO_CMD} "${INI_FILE}" \ > >> ${TMPPLIST} >+ @${ECHO_CMD} "****************************************************************************" > ${PHP_EXT_PKGMESSAGE} >+ @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} >+ @${ECHO_CMD} "The following line has been added to your ${PREFIX}/${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=${PREFIX}/lib/php/${PHP_EXT_DIR}/${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 >diff --git archivers/pecl-lzf/Makefile archivers/pecl-lzf/Makefile >index e6c3a8d..777f002 100644 >--- archivers/pecl-lzf/Makefile >+++ 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- >diff --git archivers/pecl-phk/Makefile archivers/pecl-phk/Makefile >index 8498798..ad55eca 100644 >--- archivers/pecl-phk/Makefile >+++ 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- >diff --git archivers/pecl-rar/Makefile archivers/pecl-rar/Makefile >index 2796da8..119092f 100644 >--- archivers/pecl-rar/Makefile >+++ 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- >diff --git archivers/php-horde_lz4/Makefile archivers/php-horde_lz4/Makefile >index fae9e9e..a1a8284 100644 >--- archivers/php-horde_lz4/Makefile >+++ 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- >diff --git archivers/php5-snappy/Makefile archivers/php5-snappy/Makefile >index a3ccdca..e7458be 100644 >--- archivers/php5-snappy/Makefile >+++ 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 >diff --git archivers/php55-bz2/Makefile archivers/php55-bz2/Makefile >index 2806e4e..5cd5ae7 100644 >--- archivers/php55-bz2/Makefile >+++ archivers/php55-bz2/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git archivers/php55-phar/Makefile archivers/php55-phar/Makefile >index 1579b90..38e926ed 100644 >--- archivers/php55-phar/Makefile >+++ archivers/php55-phar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git archivers/php55-zip/Makefile archivers/php55-zip/Makefile >index 5292174..59c924a 100644 >--- archivers/php55-zip/Makefile >+++ archivers/php55-zip/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git archivers/php55-zlib/Makefile archivers/php55-zlib/Makefile >index 8183cde..26e11c2 100644 >--- archivers/php55-zlib/Makefile >+++ archivers/php55-zlib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git archivers/php56-bz2/Makefile archivers/php56-bz2/Makefile >index d65f169..9a5baa6 100644 >--- archivers/php56-bz2/Makefile >+++ archivers/php56-bz2/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git archivers/php56-phar/Makefile archivers/php56-phar/Makefile >index 830ee79..e285e74 100644 >--- archivers/php56-phar/Makefile >+++ archivers/php56-phar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git archivers/php56-zip/Makefile archivers/php56-zip/Makefile >index cc86586..c9f55a8 100644 >--- archivers/php56-zip/Makefile >+++ archivers/php56-zip/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git archivers/php56-zlib/Makefile archivers/php56-zlib/Makefile >index e9ba040..6fe5d47 100644 >--- archivers/php56-zlib/Makefile >+++ archivers/php56-zlib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git archivers/php70-bz2/Makefile archivers/php70-bz2/Makefile >index aa6bad4..d1b7fcb 100644 >--- archivers/php70-bz2/Makefile >+++ archivers/php70-bz2/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git archivers/php70-phar/Makefile archivers/php70-phar/Makefile >index 2c78814..2293deb 100644 >--- archivers/php70-phar/Makefile >+++ archivers/php70-phar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git archivers/php70-zip/Makefile archivers/php70-zip/Makefile >index 9b41f5c..6054920 100644 >--- archivers/php70-zip/Makefile >+++ archivers/php70-zip/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git archivers/php70-zlib/Makefile archivers/php70-zlib/Makefile >index 05853d1..c393a4f 100644 >--- archivers/php70-zlib/Makefile >+++ archivers/php70-zlib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= archivers > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git chinese/php-cconv/Makefile chinese/php-cconv/Makefile >index 5f2ed23..9e05f37 100644 >--- chinese/php-cconv/Makefile >+++ 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 >diff --git converters/pecl-fribidi/Makefile converters/pecl-fribidi/Makefile >index 0e5b0f6..0a12073 100644 >--- converters/pecl-fribidi/Makefile >+++ 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- >diff --git converters/pecl-igbinary/Makefile converters/pecl-igbinary/Makefile >index de7f81c..153d386 100644 >--- converters/pecl-igbinary/Makefile >+++ 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 >diff --git converters/php5-bsdconv/Makefile converters/php5-bsdconv/Makefile >index 567693f..c9ddbd4 100644 >--- converters/php5-bsdconv/Makefile >+++ converters/php5-bsdconv/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= bsdconv > PORTVERSION= 11.3.0 >+PORTREVISION= 1 > CATEGORIES= converters > PKGNAMEPREFIX= php5- > >diff --git converters/php55-iconv/Makefile converters/php55-iconv/Makefile >index 1727279..f1e0bc3 100644 >--- converters/php55-iconv/Makefile >+++ converters/php55-iconv/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git converters/php55-mbstring/Makefile converters/php55-mbstring/Makefile >index 0cc3d45..610619f 100644 >--- converters/php55-mbstring/Makefile >+++ converters/php55-mbstring/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git converters/php55-recode/Makefile converters/php55-recode/Makefile >index 131bf9f..59d1969 100644 >--- converters/php55-recode/Makefile >+++ converters/php55-recode/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git converters/php56-iconv/Makefile converters/php56-iconv/Makefile >index 8aa0617..39666ce 100644 >--- converters/php56-iconv/Makefile >+++ converters/php56-iconv/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git converters/php56-mbstring/Makefile converters/php56-mbstring/Makefile >index 4d11593..46c9f18 100644 >--- converters/php56-mbstring/Makefile >+++ converters/php56-mbstring/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git converters/php56-recode/Makefile converters/php56-recode/Makefile >index f3358a5..1a44292 100644 >--- converters/php56-recode/Makefile >+++ converters/php56-recode/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git converters/php70-iconv/Makefile converters/php70-iconv/Makefile >index 89058d3..f07e923 100644 >--- converters/php70-iconv/Makefile >+++ converters/php70-iconv/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git converters/php70-mbstring/Makefile converters/php70-mbstring/Makefile >index 6341203..1527a83 100644 >--- converters/php70-mbstring/Makefile >+++ converters/php70-mbstring/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git converters/php70-recode/Makefile converters/php70-recode/Makefile >index 5534d71..19c2ff9 100644 >--- converters/php70-recode/Makefile >+++ converters/php70-recode/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= converters > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/pecl-chdb/Makefile databases/pecl-chdb/Makefile >index 7e310de..8c2d86d 100644 >--- databases/pecl-chdb/Makefile >+++ databases/pecl-chdb/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= chdb > PORTVERSION= 1.0.2 >+PORTREVISION= 1 > CATEGORIES= databases > PKGNAMEPREFIX= pecl- > DIST_SUBDIR= PECL >diff --git databases/pecl-dbase/Makefile databases/pecl-dbase/Makefile >index 62c04e1..229c5a0 100644 >--- databases/pecl-dbase/Makefile >+++ 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- >diff --git databases/pecl-drizzle/Makefile databases/pecl-drizzle/Makefile >index 08d7b58..236de2a 100644 >--- databases/pecl-drizzle/Makefile >+++ 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- >diff --git databases/pecl-leveldb/Makefile databases/pecl-leveldb/Makefile >index bb0b737..51bc846 100644 >--- databases/pecl-leveldb/Makefile >+++ 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- >diff --git databases/pecl-mdbtools/Makefile databases/pecl-mdbtools/Makefile >index 575467f..3965757 100644 >--- databases/pecl-mdbtools/Makefile >+++ 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- >diff --git databases/pecl-memcache/Makefile databases/pecl-memcache/Makefile >index e8e4975..7c35660 100644 >--- databases/pecl-memcache/Makefile >+++ 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- >diff --git databases/pecl-memcached/Makefile databases/pecl-memcached/Makefile >index 2c76a06..854f55f 100644 >--- databases/pecl-memcached/Makefile >+++ 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- >diff --git databases/pecl-mongo/Makefile databases/pecl-mongo/Makefile >index 8ce20e2..b85b2ce 100644 >--- databases/pecl-mongo/Makefile >+++ 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- >diff --git databases/pecl-mongodb/Makefile databases/pecl-mongodb/Makefile >index 37fa1b5..2b431bc 100644 >--- databases/pecl-mongodb/Makefile >+++ 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- >diff --git databases/pecl-mysqlnd_ms/Makefile databases/pecl-mysqlnd_ms/Makefile >index 30bf645..1aac5e5 100644 >--- databases/pecl-mysqlnd_ms/Makefile >+++ 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- >diff --git databases/pecl-mysqlnd_qc/Makefile databases/pecl-mysqlnd_qc/Makefile >index 8d1aca9..d56b313 100644 >--- databases/pecl-mysqlnd_qc/Makefile >+++ 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- >diff --git databases/pecl-pdo_user/Makefile databases/pecl-pdo_user/Makefile >index 7d35dc5..e8dc508 100644 >--- databases/pecl-pdo_user/Makefile >+++ 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- >diff --git databases/pecl-rrd/Makefile databases/pecl-rrd/Makefile >index 6c5c997..b604d5d 100644 >--- databases/pecl-rrd/Makefile >+++ 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- >diff --git databases/pecl-tokyo_tyrant/Makefile databases/pecl-tokyo_tyrant/Makefile >index a63fecc..804505c 100644 >--- databases/pecl-tokyo_tyrant/Makefile >+++ 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- >diff --git databases/php-adodb-ext/Makefile databases/php-adodb-ext/Makefile >index f39940a..9198a70 100644 >--- databases/php-adodb-ext/Makefile >+++ 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 @@ WRKSRC= ${WRKDIR}/adodb-${PORTVERSION:S/.//} > > USES= dos2unix php:ext zip > IGNORE_WITH_PHP=56 70 >- >-SUB_FILES= pkg-message >+PHP_MODNAME= adodb > > .include <bsd.port.pre.mk> > >diff --git databases/php-adodb-ext/files/pkg-message.in databases/php-adodb-ext/files/pkg-message.in >deleted file mode 100644 >index 2703f9f..0000000 >--- databases/php-adodb-ext/files/pkg-message.in >+++ /dev/null >@@ -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. >-***************************************************************************** >diff --git databases/php-mdcached/Makefile databases/php-mdcached/Makefile >index e755fa7..c98c382 100644 >--- databases/php-mdcached/Makefile >+++ 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- >diff --git databases/php5-pdo_cassandra/Makefile databases/php5-pdo_cassandra/Makefile >index 74b99bd..380d1f3 100644 >--- databases/php5-pdo_cassandra/Makefile >+++ databases/php5-pdo_cassandra/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= pdo_cassandra > PORTVERSION= 0.2.1 >-PORTREVISION= 5 >+PORTREVISION= 6 > CATEGORIES= databases > PKGNAMEPREFIX= php5- > >diff --git databases/php5-tarantool/Makefile databases/php5-tarantool/Makefile >index 078a314..45b2a04 100644 >--- databases/php5-tarantool/Makefile >+++ databases/php5-tarantool/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= tarantool > PORTVERSION= ${TR_VER} >+PORTREVISION= 1 > CATEGORIES= databases > PKGNAMEPREFIX= php5- > >diff --git databases/php55-dba/Makefile databases/php55-dba/Makefile >index f8c379a..3b500ab 100644 >--- databases/php55-dba/Makefile >+++ databases/php55-dba/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-interbase/Makefile databases/php55-interbase/Makefile >index 5ad5618..2c53f99 100644 >--- databases/php55-interbase/Makefile >+++ databases/php55-interbase/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-mssql/Makefile databases/php55-mssql/Makefile >index b7105fb..2253370 100644 >--- databases/php55-mssql/Makefile >+++ databases/php55-mssql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-mysql/Makefile databases/php55-mysql/Makefile >index 613989b..1ed83aa 100644 >--- databases/php55-mysql/Makefile >+++ databases/php55-mysql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-mysqli/Makefile databases/php55-mysqli/Makefile >index 0725ba0..e57a3fc 100644 >--- databases/php55-mysqli/Makefile >+++ databases/php55-mysqli/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-odbc/Makefile databases/php55-odbc/Makefile >index 367500f..c826d1f 100644 >--- databases/php55-odbc/Makefile >+++ databases/php55-odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo/Makefile databases/php55-pdo/Makefile >index 875656d..595fb70 100644 >--- databases/php55-pdo/Makefile >+++ databases/php55-pdo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_dblib/Makefile databases/php55-pdo_dblib/Makefile >index db16a7b..9b25530 100644 >--- databases/php55-pdo_dblib/Makefile >+++ databases/php55-pdo_dblib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_firebird/Makefile databases/php55-pdo_firebird/Makefile >index 13d8daf..73e8e44 100644 >--- databases/php55-pdo_firebird/Makefile >+++ databases/php55-pdo_firebird/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_mysql/Makefile databases/php55-pdo_mysql/Makefile >index a35e556..a13eae7 100644 >--- databases/php55-pdo_mysql/Makefile >+++ databases/php55-pdo_mysql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_odbc/Makefile databases/php55-pdo_odbc/Makefile >index f40c3d4..d58b140 100644 >--- databases/php55-pdo_odbc/Makefile >+++ databases/php55-pdo_odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_pgsql/Makefile databases/php55-pdo_pgsql/Makefile >index 19bef13..ae3149c 100644 >--- databases/php55-pdo_pgsql/Makefile >+++ databases/php55-pdo_pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pdo_sqlite/Makefile databases/php55-pdo_sqlite/Makefile >index c0e1c17..13c6f79 100644 >--- databases/php55-pdo_sqlite/Makefile >+++ databases/php55-pdo_sqlite/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-pgsql/Makefile databases/php55-pgsql/Makefile >index b6223ec..64e6ada 100644 >--- databases/php55-pgsql/Makefile >+++ databases/php55-pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-redis/Makefile databases/php55-redis/Makefile >index 9acaee4..c2ef254 100644 >--- databases/php55-redis/Makefile >+++ databases/php55-redis/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= redis > PORTVERSION= 2.2.4 >+PORTREVISION= 1 > CATEGORIES= databases > PKGNAMEPREFIX= php55- > >diff --git databases/php55-sqlite3/Makefile databases/php55-sqlite3/Makefile >index 28efa91..7f9daeb 100644 >--- databases/php55-sqlite3/Makefile >+++ databases/php55-sqlite3/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php55-sybase_ct/Makefile databases/php55-sybase_ct/Makefile >index cd9fe95..9e48213 100644 >--- databases/php55-sybase_ct/Makefile >+++ databases/php55-sybase_ct/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git databases/php56-dba/Makefile databases/php56-dba/Makefile >index ec617c1..799edcb 100644 >--- databases/php56-dba/Makefile >+++ databases/php56-dba/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-interbase/Makefile databases/php56-interbase/Makefile >index 894e1d5..0e3b081 100644 >--- databases/php56-interbase/Makefile >+++ databases/php56-interbase/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-mssql/Makefile databases/php56-mssql/Makefile >index 0e499597..567339c 100644 >--- databases/php56-mssql/Makefile >+++ databases/php56-mssql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-mysql/Makefile databases/php56-mysql/Makefile >index a32da06..d25f8c5 100644 >--- databases/php56-mysql/Makefile >+++ databases/php56-mysql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-mysqli/Makefile databases/php56-mysqli/Makefile >index 8dd62ac..6619847 100644 >--- databases/php56-mysqli/Makefile >+++ databases/php56-mysqli/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-odbc/Makefile databases/php56-odbc/Makefile >index df644ab..251318c 100644 >--- databases/php56-odbc/Makefile >+++ databases/php56-odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo/Makefile databases/php56-pdo/Makefile >index 744b440..892db0f 100644 >--- databases/php56-pdo/Makefile >+++ databases/php56-pdo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_dblib/Makefile databases/php56-pdo_dblib/Makefile >index b6b042b..44210c7 100644 >--- databases/php56-pdo_dblib/Makefile >+++ databases/php56-pdo_dblib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_firebird/Makefile databases/php56-pdo_firebird/Makefile >index d9d727b..b1ffc48 100644 >--- databases/php56-pdo_firebird/Makefile >+++ databases/php56-pdo_firebird/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_mysql/Makefile databases/php56-pdo_mysql/Makefile >index 29e7a60..3871aca 100644 >--- databases/php56-pdo_mysql/Makefile >+++ databases/php56-pdo_mysql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_odbc/Makefile databases/php56-pdo_odbc/Makefile >index 754565e..acafff6 100644 >--- databases/php56-pdo_odbc/Makefile >+++ databases/php56-pdo_odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_pgsql/Makefile databases/php56-pdo_pgsql/Makefile >index 4bd39db..62e4030 100644 >--- databases/php56-pdo_pgsql/Makefile >+++ databases/php56-pdo_pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pdo_sqlite/Makefile databases/php56-pdo_sqlite/Makefile >index 61af2bf..7c0be49 100644 >--- databases/php56-pdo_sqlite/Makefile >+++ databases/php56-pdo_sqlite/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-pgsql/Makefile databases/php56-pgsql/Makefile >index 3664f9d..fd05902 100644 >--- databases/php56-pgsql/Makefile >+++ databases/php56-pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-redis/Makefile databases/php56-redis/Makefile >index 4e45be4..0f564e2 100644 >--- databases/php56-redis/Makefile >+++ databases/php56-redis/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= redis > PORTVERSION= 2.2.8 >+PORTREVISION= 1 > CATEGORIES= databases > PKGNAMEPREFIX= php56- > >diff --git databases/php56-sqlite3/Makefile databases/php56-sqlite3/Makefile >index f1db013..00b59a4 100644 >--- databases/php56-sqlite3/Makefile >+++ databases/php56-sqlite3/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php56-sybase_ct/Makefile databases/php56-sybase_ct/Makefile >index 1a30716..f9adb13 100644 >--- databases/php56-sybase_ct/Makefile >+++ databases/php56-sybase_ct/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git databases/php70-dba/Makefile databases/php70-dba/Makefile >index d330c31..f7cf62d 100644 >--- databases/php70-dba/Makefile >+++ databases/php70-dba/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-interbase/Makefile databases/php70-interbase/Makefile >index 2c0aa00..de8e154 100644 >--- databases/php70-interbase/Makefile >+++ databases/php70-interbase/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-mysqli/Makefile databases/php70-mysqli/Makefile >index 5209eae..cbc87ac 100644 >--- databases/php70-mysqli/Makefile >+++ databases/php70-mysqli/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-odbc/Makefile databases/php70-odbc/Makefile >index b84c23d..f17ee40 100644 >--- databases/php70-odbc/Makefile >+++ databases/php70-odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo/Makefile databases/php70-pdo/Makefile >index bc75464..419be8f 100644 >--- databases/php70-pdo/Makefile >+++ databases/php70-pdo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_dblib/Makefile databases/php70-pdo_dblib/Makefile >index 0781984..a4886c0 100644 >--- databases/php70-pdo_dblib/Makefile >+++ databases/php70-pdo_dblib/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_firebird/Makefile databases/php70-pdo_firebird/Makefile >index 21bda3a..3a0d4d9 100644 >--- databases/php70-pdo_firebird/Makefile >+++ databases/php70-pdo_firebird/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_mysql/Makefile databases/php70-pdo_mysql/Makefile >index daf1a19..d92fd88 100644 >--- databases/php70-pdo_mysql/Makefile >+++ databases/php70-pdo_mysql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_odbc/Makefile databases/php70-pdo_odbc/Makefile >index c0a1828..5c1de83 100644 >--- databases/php70-pdo_odbc/Makefile >+++ databases/php70-pdo_odbc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_pgsql/Makefile databases/php70-pdo_pgsql/Makefile >index 95e23d1..be4d036 100644 >--- databases/php70-pdo_pgsql/Makefile >+++ databases/php70-pdo_pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pdo_sqlite/Makefile databases/php70-pdo_sqlite/Makefile >index 709e3d5..9821748 100644 >--- databases/php70-pdo_sqlite/Makefile >+++ databases/php70-pdo_sqlite/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-pgsql/Makefile databases/php70-pgsql/Makefile >index e61c968..3394207 100644 >--- databases/php70-pgsql/Makefile >+++ databases/php70-pgsql/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git databases/php70-redis/Makefile databases/php70-redis/Makefile >index e78e5b3..404c44f 100644 >--- databases/php70-redis/Makefile >+++ databases/php70-redis/Makefile >@@ -2,6 +2,7 @@ > > PORTNAME= redis > PORTVERSION= 3.0.0 >+PORTREVISION= 1 > CATEGORIES= databases > PKGNAMEPREFIX= php70- > >diff --git databases/php70-sqlite3/Makefile databases/php70-sqlite3/Makefile >index 38f6b89..e23c65c 100644 >--- databases/php70-sqlite3/Makefile >+++ databases/php70-sqlite3/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= databases > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/ioncube/Makefile devel/ioncube/Makefile >index 175e4b2..d55953a 100644 >--- devel/ioncube/Makefile >+++ devel/ioncube/Makefile >@@ -31,5 +31,10 @@ do-install: > ${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 <bsd.port.mk> >diff --git devel/ioncube/files/pkg-message.in devel/ioncube/files/pkg-message.in >index 5bb7f4f..d431bfd 100644 >--- devel/ioncube/files/pkg-message.in >+++ 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 >diff --git devel/ioncube/pkg-plist devel/ioncube/pkg-plist >index 98591e1..188863c 100644 >--- devel/ioncube/pkg-plist >+++ 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 >diff --git devel/pecl-APCu/Makefile devel/pecl-APCu/Makefile >index 6e42c3d..ef475cb 100644 >--- devel/pecl-APCu/Makefile >+++ 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- >diff --git devel/pecl-automap/Makefile devel/pecl-automap/Makefile >index 7155142..c8db47e 100644 >--- devel/pecl-automap/Makefile >+++ 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- >diff --git devel/pecl-bbcode/Makefile devel/pecl-bbcode/Makefile >index fd83f92..fb39f97 100644 >--- devel/pecl-bbcode/Makefile >+++ 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- >diff --git devel/pecl-bcompiler/Makefile devel/pecl-bcompiler/Makefile >index f8bfc77..75bd9ae 100644 >--- devel/pecl-bcompiler/Makefile >+++ 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- >diff --git devel/pecl-dio/Makefile devel/pecl-dio/Makefile >index 55dad2c..56a4a6a 100644 >--- devel/pecl-dio/Makefile >+++ 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- >diff --git devel/pecl-eio/Makefile devel/pecl-eio/Makefile >index 804633f..922550c 100644 >--- devel/pecl-eio/Makefile >+++ 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- >diff --git devel/pecl-ev/Makefile devel/pecl-ev/Makefile >index edee682..4974a53 100644 >--- devel/pecl-ev/Makefile >+++ 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- >diff --git devel/pecl-event/Makefile devel/pecl-event/Makefile >index e97ae45..47e049e 100644 >--- devel/pecl-event/Makefile >+++ 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- >diff --git devel/pecl-expect/Makefile devel/pecl-expect/Makefile >index 53a53f5..9717ae0 100644 >--- devel/pecl-expect/Makefile >+++ 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- >diff --git devel/pecl-gearman/Makefile devel/pecl-gearman/Makefile >index 63312f8..11af42f 100644 >--- devel/pecl-gearman/Makefile >+++ 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- >diff --git devel/pecl-hidef/Makefile devel/pecl-hidef/Makefile >index 22fc32b..517f72c 100644 >--- devel/pecl-hidef/Makefile >+++ 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- >diff --git devel/pecl-hrtime/Makefile devel/pecl-hrtime/Makefile >index 6bc030f..29d2022 100644 >--- devel/pecl-hrtime/Makefile >+++ 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- >diff --git devel/pecl-htscanner/Makefile devel/pecl-htscanner/Makefile >index 4353483..a6a832c 100644 >--- devel/pecl-htscanner/Makefile >+++ 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- >diff --git devel/pecl-inotify/Makefile devel/pecl-inotify/Makefile >index d254daa..400b3bd 100644 >--- devel/pecl-inotify/Makefile >+++ 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- >diff --git devel/pecl-intl/Makefile devel/pecl-intl/Makefile >index 15f9f4c..324fe5a 100644 >--- devel/pecl-intl/Makefile >+++ 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- >diff --git devel/pecl-jsmin/Makefile devel/pecl-jsmin/Makefile >index cee8df6..fee0d1d 100644 >--- devel/pecl-jsmin/Makefile >+++ 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- >diff --git devel/pecl-json_post/Makefile devel/pecl-json_post/Makefile >index c2bfe63..1b12321 100644 >--- devel/pecl-json_post/Makefile >+++ 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- >diff --git devel/pecl-jsonc/Makefile devel/pecl-jsonc/Makefile >index b3c1cb4..2e29227 100644 >--- devel/pecl-jsonc/Makefile >+++ 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- >diff --git devel/pecl-jsond/Makefile devel/pecl-jsond/Makefile >index 435b3a4..a5f6356f 100644 >--- devel/pecl-jsond/Makefile >+++ 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- >diff --git devel/pecl-jsonnet/Makefile devel/pecl-jsonnet/Makefile >index fb7967f..0b576a9 100644 >--- devel/pecl-jsonnet/Makefile >+++ 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- >diff --git devel/pecl-judy/Makefile devel/pecl-judy/Makefile >index 3ee7450..3dca6e8 100644 >--- devel/pecl-judy/Makefile >+++ 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- >diff --git devel/pecl-libevent/Makefile devel/pecl-libevent/Makefile >index adacde3..3598122 100644 >--- devel/pecl-libevent/Makefile >+++ 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- >diff --git devel/pecl-mcve/Makefile devel/pecl-mcve/Makefile >index d1ec18e..2b473f1 100644 >--- devel/pecl-mcve/Makefile >+++ 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- >diff --git devel/pecl-memoize/Makefile devel/pecl-memoize/Makefile >index 4868a56..39a9bc6 100644 >--- devel/pecl-memoize/Makefile >+++ 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- >diff --git devel/pecl-msgpack/Makefile devel/pecl-msgpack/Makefile >index d36c5cf..4e31103 100644 >--- devel/pecl-msgpack/Makefile >+++ 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- >diff --git devel/pecl-ncurses/Makefile devel/pecl-ncurses/Makefile >index cfa0ce8..70a270d 100644 >--- devel/pecl-ncurses/Makefile >+++ 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- >diff --git devel/pecl-newt/Makefile devel/pecl-newt/Makefile >index 2e79704..92b0618 100644 >--- devel/pecl-newt/Makefile >+++ 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- >diff --git devel/pecl-operator/Makefile devel/pecl-operator/Makefile >index b4518ff..8294edb 100644 >--- devel/pecl-operator/Makefile >+++ 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- >diff --git devel/pecl-params/Makefile devel/pecl-params/Makefile >index b3ce714..a2889d6 100644 >--- devel/pecl-params/Makefile >+++ 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- >diff --git devel/pecl-parsekit/Makefile devel/pecl-parsekit/Makefile >index bc1f9f5..480e131 100644 >--- devel/pecl-parsekit/Makefile >+++ 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- >diff --git devel/pecl-propro/Makefile devel/pecl-propro/Makefile >index e2de5b1..a425868 100644 >--- devel/pecl-propro/Makefile >+++ 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- >diff --git devel/pecl-propro2/Makefile devel/pecl-propro2/Makefile >index 0b361d0..de0021f 100644 >--- devel/pecl-propro2/Makefile >+++ 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- >diff --git devel/pecl-pthreads/Makefile devel/pecl-pthreads/Makefile >index 4ad8dcb..cba22b1 100644 >--- devel/pecl-pthreads/Makefile >+++ 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- >diff --git devel/pecl-qb/Makefile devel/pecl-qb/Makefile >index 9b591c7..3a0b034d 100644 >--- devel/pecl-qb/Makefile >+++ 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- >diff --git devel/pecl-raphf/Makefile devel/pecl-raphf/Makefile >index 8ef2b62..e470409 100644 >--- devel/pecl-raphf/Makefile >+++ 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- >diff --git devel/pecl-raphf2/Makefile devel/pecl-raphf2/Makefile >index 74c0779..54c55f1 100644 >--- devel/pecl-raphf2/Makefile >+++ 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- >diff --git devel/pecl-runkit/Makefile devel/pecl-runkit/Makefile >index 2f1e2ad..623515a 100644 >--- devel/pecl-runkit/Makefile >+++ 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- >diff --git devel/pecl-scream/Makefile devel/pecl-scream/Makefile >index df839a8..9760c04 100644 >--- devel/pecl-scream/Makefile >+++ 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- >diff --git devel/pecl-shape/Makefile devel/pecl-shape/Makefile >index 8e2b88a..5f2bdb2 100644 >--- devel/pecl-shape/Makefile >+++ 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- >diff --git devel/pecl-spl_types/Makefile devel/pecl-spl_types/Makefile >index 4cdae41..1e90b26 100644 >--- devel/pecl-spl_types/Makefile >+++ 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- >diff --git devel/pecl-spread/Makefile devel/pecl-spread/Makefile >index ddf31c8..2f10c11 100644 >--- devel/pecl-spread/Makefile >+++ 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- >diff --git devel/pecl-statgrab/Makefile devel/pecl-statgrab/Makefile >index 68439ff..9748297 100644 >--- devel/pecl-statgrab/Makefile >+++ 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- >diff --git devel/pecl-strict/Makefile devel/pecl-strict/Makefile >index ecd1e07..c0bd3c8 100644 >--- devel/pecl-strict/Makefile >+++ 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- >diff --git devel/pecl-svn/Makefile devel/pecl-svn/Makefile >index 76d331a..e3c401a 100644 >--- devel/pecl-svn/Makefile >+++ 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- >diff --git devel/pecl-swoole/Makefile devel/pecl-swoole/Makefile >index d341d96..4ea0e81 100644 >--- devel/pecl-swoole/Makefile >+++ 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- >diff --git devel/pecl-sync/Makefile devel/pecl-sync/Makefile >index dcb84648..8055541 100644 >--- devel/pecl-sync/Makefile >+++ 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- >diff --git devel/pecl-test_helpers/Makefile devel/pecl-test_helpers/Makefile >index d5c8b09..0e56889 100644 >--- devel/pecl-test_helpers/Makefile >+++ 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- >diff --git devel/pecl-trace/Makefile devel/pecl-trace/Makefile >index bd1df83..cafdde0 100644 >--- devel/pecl-trace/Makefile >+++ 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- >diff --git devel/pecl-uopz/Makefile devel/pecl-uopz/Makefile >index 6b6c2bb..4873e7f 100644 >--- devel/pecl-uopz/Makefile >+++ 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- >diff --git devel/pecl-uploadprogress/Makefile devel/pecl-uploadprogress/Makefile >index 3b1e60a..746bac5 100644 >--- devel/pecl-uploadprogress/Makefile >+++ 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- >diff --git devel/pecl-uri_template/Makefile devel/pecl-uri_template/Makefile >index 4044982..0875497 100644 >--- devel/pecl-uri_template/Makefile >+++ 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- >diff --git devel/pecl-uuid/Makefile devel/pecl-uuid/Makefile >index 00858d5..73ba407 100644 >--- devel/pecl-uuid/Makefile >+++ 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- >diff --git devel/pecl-vld/Makefile devel/pecl-vld/Makefile >index ead350d..030c8e3 100644 >--- devel/pecl-vld/Makefile >+++ 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- >diff --git devel/pecl-weakref/Makefile devel/pecl-weakref/Makefile >index ce229c1..47753a9 100644 >--- devel/pecl-weakref/Makefile >+++ 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- >diff --git devel/pecl-xhprof/Makefile devel/pecl-xhprof/Makefile >index ff78060..3b9afd5 100644 >--- devel/pecl-xhprof/Makefile >+++ 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- >diff --git devel/pecl-yac/Makefile devel/pecl-yac/Makefile >index 21b7d57..73e93ce 100644 >--- devel/pecl-yac/Makefile >+++ 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/ >diff --git devel/pecl-zookeeper/Makefile devel/pecl-zookeeper/Makefile >index 37a6a63..4ee76a3 100644 >--- devel/pecl-zookeeper/Makefile >+++ 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- >diff --git devel/php-jq/Makefile devel/php-jq/Makefile >index a5f8ff3..8ff4c1d 100644 >--- devel/php-jq/Makefile >+++ devel/php-jq/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= jq > PORTVERSION= 0.0.1 >+PORTREVISION= 1 > CATEGORIES= devel > PKGNAMEPREFIX= php- > >diff --git devel/php-maxminddb/Makefile devel/php-maxminddb/Makefile >index e4f703c..941e62a 100644 >--- devel/php-maxminddb/Makefile >+++ devel/php-maxminddb/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= maxminddb > PORTVERSION= 1.1.0 >+PORTREVISION= 1 > DISTVERSIONPREFIX= v > CATEGORIES= devel net > PKGNAMEPREFIX= php- >diff --git devel/php-memoize/Makefile devel/php-memoize/Makefile >index c5a0968..cc9f3f0 100644 >--- devel/php-memoize/Makefile >+++ 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 >diff --git devel/php-scalar_objects/Makefile devel/php-scalar_objects/Makefile >index efd5474..884f51c 100644 >--- devel/php-scalar_objects/Makefile >+++ devel/php-scalar_objects/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= scalar_objects > PORTVERSION= 0.0.20140124 >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= devel > PKGNAMEPREFIX= php- > >diff --git devel/php-uprofiler/Makefile devel/php-uprofiler/Makefile >index e3e3987..53b7951 100644 >--- devel/php-uprofiler/Makefile >+++ devel/php-uprofiler/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= uprofiler > PORTVERSION= 0.11.0.20150219 >+PORTREVISION= 1 > CATEGORIES= devel > PKGNAMEPREFIX= php- > >diff --git devel/php-xdebug/Makefile devel/php-xdebug/Makefile >index c6a29af..0842dea 100644 >--- devel/php-xdebug/Makefile >+++ 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- >diff --git devel/php5-blitz-devel/Makefile devel/php5-blitz-devel/Makefile >index a6df473..431beed 100644 >--- devel/php5-blitz-devel/Makefile >+++ 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- >diff --git devel/php5-blitz/Makefile devel/php5-blitz/Makefile >index c9c5bc4..810a38b 100644 >--- devel/php5-blitz/Makefile >+++ 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- >diff --git devel/php5-dav/Makefile devel/php5-dav/Makefile >index 86a2b58..70911cb 100644 >--- devel/php5-dav/Makefile >+++ 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- >diff --git devel/php5-ice/Makefile devel/php5-ice/Makefile >index 77640f0..9b4eacb 100644 >--- devel/php5-ice/Makefile >+++ devel/php5-ice/Makefile >@@ -34,27 +34,12 @@ PHP_MODNAME?= IcePHP > 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" >diff --git devel/php5-ice/pkg-plist devel/php5-ice/pkg-plist >index 570fe99..58f023e 100644 >--- devel/php5-ice/pkg-plist >+++ 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 >diff --git devel/php5-msgpack/Makefile devel/php5-msgpack/Makefile >index 2819ac5..a5d9cfc 100644 >--- devel/php5-msgpack/Makefile >+++ devel/php5-msgpack/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= msgpack > PORTVERSION= 2012.05.05 >+PORTREVISION= 1 > CATEGORIES= devel > PKGNAMEPREFIX= php5- > >diff --git devel/php5-pinba/Makefile devel/php5-pinba/Makefile >index 4965dcf..56fc2a8 100644 >--- devel/php5-pinba/Makefile >+++ devel/php5-pinba/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= pinba > PORTVERSION= 2012.03.20 >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= devel > PKGNAMEPREFIX= php5- > >diff --git devel/php5-thrift/Makefile devel/php5-thrift/Makefile >index 83e3e09..e705b3a 100644 >--- devel/php5-thrift/Makefile >+++ devel/php5-thrift/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= thrift > PORTVERSION= ${THRIFT_PORTVERSION} >+PORTREVISION= 1 > CATEGORIES= devel > MASTER_SITES= APACHE/thrift/${PORTVERSION} > PKGNAMEPREFIX= php5- >diff --git devel/php55-gettext/Makefile devel/php55-gettext/Makefile >index b759d61..a75445d 100644 >--- devel/php55-gettext/Makefile >+++ devel/php55-gettext/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-json/Makefile devel/php55-json/Makefile >index 8c52ee4..4dca366 100644 >--- devel/php55-json/Makefile >+++ devel/php55-json/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-pcntl/Makefile devel/php55-pcntl/Makefile >index 8bc2847..9c1e35d 100644 >--- devel/php55-pcntl/Makefile >+++ devel/php55-pcntl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-readline/Makefile devel/php55-readline/Makefile >index e2b6417..b28b6d0 100644 >--- devel/php55-readline/Makefile >+++ devel/php55-readline/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-shmop/Makefile devel/php55-shmop/Makefile >index 59a1062..727944b 100644 >--- devel/php55-shmop/Makefile >+++ devel/php55-shmop/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-sysvmsg/Makefile devel/php55-sysvmsg/Makefile >index a3ea351..5717934 100644 >--- devel/php55-sysvmsg/Makefile >+++ devel/php55-sysvmsg/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-sysvsem/Makefile devel/php55-sysvsem/Makefile >index 678b6b5..31076a3 100644 >--- devel/php55-sysvsem/Makefile >+++ devel/php55-sysvsem/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-sysvshm/Makefile devel/php55-sysvshm/Makefile >index 198aed4..8b0f7c5 100644 >--- devel/php55-sysvshm/Makefile >+++ devel/php55-sysvshm/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php55-tokenizer/Makefile devel/php55-tokenizer/Makefile >index b8c6576..530e707 100644 >--- devel/php55-tokenizer/Makefile >+++ devel/php55-tokenizer/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git devel/php56-gettext/Makefile devel/php56-gettext/Makefile >index 81c6411..8ec6186 100644 >--- devel/php56-gettext/Makefile >+++ devel/php56-gettext/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-json/Makefile devel/php56-json/Makefile >index 3a93d4b..f34c43a 100644 >--- devel/php56-json/Makefile >+++ devel/php56-json/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-pcntl/Makefile devel/php56-pcntl/Makefile >index 5039ad1..dfb6d37 100644 >--- devel/php56-pcntl/Makefile >+++ devel/php56-pcntl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-readline/Makefile devel/php56-readline/Makefile >index f608935..ad51763 100644 >--- devel/php56-readline/Makefile >+++ devel/php56-readline/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-shmop/Makefile devel/php56-shmop/Makefile >index f0e90e8..038c3b5 100644 >--- devel/php56-shmop/Makefile >+++ devel/php56-shmop/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-sysvmsg/Makefile devel/php56-sysvmsg/Makefile >index 2b2c27c..9139629 100644 >--- devel/php56-sysvmsg/Makefile >+++ devel/php56-sysvmsg/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-sysvsem/Makefile devel/php56-sysvsem/Makefile >index 06cdd72..f25ee06 100644 >--- devel/php56-sysvsem/Makefile >+++ devel/php56-sysvsem/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-sysvshm/Makefile devel/php56-sysvshm/Makefile >index fa8d461..8c23d0a 100644 >--- devel/php56-sysvshm/Makefile >+++ devel/php56-sysvshm/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php56-tokenizer/Makefile devel/php56-tokenizer/Makefile >index 9d48e67..a9bb2a9 100644 >--- devel/php56-tokenizer/Makefile >+++ devel/php56-tokenizer/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git devel/php70-gettext/Makefile devel/php70-gettext/Makefile >index 9d558be..fb43e9c 100644 >--- devel/php70-gettext/Makefile >+++ devel/php70-gettext/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-intl/Makefile devel/php70-intl/Makefile >index f8a572c..fa96ef9 100644 >--- devel/php70-intl/Makefile >+++ devel/php70-intl/Makefile >@@ -1,7 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-json/Makefile devel/php70-json/Makefile >index c796d66..016e110 100644 >--- devel/php70-json/Makefile >+++ devel/php70-json/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-pcntl/Makefile devel/php70-pcntl/Makefile >index 88849b5..d22be2b 100644 >--- devel/php70-pcntl/Makefile >+++ devel/php70-pcntl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-readline/Makefile devel/php70-readline/Makefile >index 72efa23..4fb5212 100644 >--- devel/php70-readline/Makefile >+++ devel/php70-readline/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-shmop/Makefile devel/php70-shmop/Makefile >index b4039dc..74111c4 100644 >--- devel/php70-shmop/Makefile >+++ devel/php70-shmop/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-sysvmsg/Makefile devel/php70-sysvmsg/Makefile >index 36a827c..2d59c2b 100644 >--- devel/php70-sysvmsg/Makefile >+++ devel/php70-sysvmsg/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-sysvsem/Makefile devel/php70-sysvsem/Makefile >index 92c9b46..eb18af8 100644 >--- devel/php70-sysvsem/Makefile >+++ devel/php70-sysvsem/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-sysvshm/Makefile devel/php70-sysvshm/Makefile >index b6ec845..7a232c5 100644 >--- devel/php70-sysvshm/Makefile >+++ devel/php70-sysvshm/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git devel/php70-tokenizer/Makefile devel/php70-tokenizer/Makefile >index 9a4351c..6227600 100644 >--- devel/php70-tokenizer/Makefile >+++ devel/php70-tokenizer/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= devel > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git finance/php-tclink/Makefile finance/php-tclink/Makefile >index 7417dce..1a8f50b 100644 >--- finance/php-tclink/Makefile >+++ 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- >diff --git ftp/php55-curl/Makefile ftp/php55-curl/Makefile >index 6b9199c..2beb18d 100644 >--- ftp/php55-curl/Makefile >+++ ftp/php55-curl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git ftp/php55-ftp/Makefile ftp/php55-ftp/Makefile >index 6b0b1f1..90faf07 100644 >--- ftp/php55-ftp/Makefile >+++ ftp/php55-ftp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git ftp/php56-curl/Makefile ftp/php56-curl/Makefile >index ec356c2..d5f3c5d 100644 >--- ftp/php56-curl/Makefile >+++ ftp/php56-curl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git ftp/php56-ftp/Makefile ftp/php56-ftp/Makefile >index e0f3d95..fa7dfc3 100644 >--- ftp/php56-ftp/Makefile >+++ ftp/php56-ftp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git ftp/php70-curl/Makefile ftp/php70-curl/Makefile >index 2c359ab..54804bb 100644 >--- ftp/php70-curl/Makefile >+++ ftp/php70-curl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git ftp/php70-ftp/Makefile ftp/php70-ftp/Makefile >index 300d5b1..b803116 100644 >--- ftp/php70-ftp/Makefile >+++ ftp/php70-ftp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= ftp > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git graphics/mapserver/Makefile graphics/mapserver/Makefile >index bf55fc1..82929e1 100644 >--- graphics/mapserver/Makefile >+++ graphics/mapserver/Makefile >@@ -125,11 +125,9 @@ CMAKE_ARGS+= -DWITH_POSTGIS=0 > .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 @@ do-install: > .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 <bsd.port.mk> >diff --git graphics/mapserver/pkg-plist graphics/mapserver/pkg-plist >index 85d35e2..2a5cc26 100644 >--- graphics/mapserver/pkg-plist >+++ graphics/mapserver/pkg-plist >@@ -8,9 +8,10 @@ bin/shptreetst > 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 >diff --git graphics/pecl-gmagick/Makefile graphics/pecl-gmagick/Makefile >index 8f3e82b..b52e100 100644 >--- graphics/pecl-gmagick/Makefile >+++ 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- >diff --git graphics/pecl-imagick/Makefile graphics/pecl-imagick/Makefile >index 5d4f8b5..0058df3 100644 >--- graphics/pecl-imagick/Makefile >+++ 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- >diff --git graphics/pecl-imlib2/Makefile graphics/pecl-imlib2/Makefile >index d9e09ba..cab4f99 100644 >--- graphics/pecl-imlib2/Makefile >+++ 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- >diff --git graphics/pecl-qrencode/Makefile graphics/pecl-qrencode/Makefile >index 43ccb3f..7c2585d 100644 >--- graphics/pecl-qrencode/Makefile >+++ graphics/pecl-qrencode/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= qrencode > PORTVERSION= 0.4 >+PORTREVISION= 1 > CATEGORIES= graphics pear > MASTER_SITES= LOCAL/vanilla > PKGNAMEPREFIX= pecl- >diff --git graphics/php-facedetect/Makefile graphics/php-facedetect/Makefile >index 94e4192..9555fb4 100644 >--- graphics/php-facedetect/Makefile >+++ graphics/php-facedetect/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= facedetect > PORTVERSION= 1.1 >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= graphics > PKGNAMEPREFIX= php- > >diff --git graphics/php-libpuzzle/Makefile graphics/php-libpuzzle/Makefile >index 2f0539e..13d9190 100644 >--- graphics/php-libpuzzle/Makefile >+++ 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/ >diff --git graphics/php-magickwand/Makefile graphics/php-magickwand/Makefile >index 9ce390d..fe68fdd 100644 >--- graphics/php-magickwand/Makefile >+++ 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- >diff --git graphics/php5-ffmpeg/Makefile graphics/php5-ffmpeg/Makefile >index 84572d0..e5da53e 100644 >--- graphics/php5-ffmpeg/Makefile >+++ 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 >diff --git graphics/php55-exif/Makefile graphics/php55-exif/Makefile >index 347a556..6b479d4 100644 >--- graphics/php55-exif/Makefile >+++ graphics/php55-exif/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git graphics/php55-gd/Makefile graphics/php55-gd/Makefile >index 6d549ce..624b80b 100644 >--- graphics/php55-gd/Makefile >+++ graphics/php55-gd/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git graphics/php56-exif/Makefile graphics/php56-exif/Makefile >index 13a6387..bd9f998 100644 >--- graphics/php56-exif/Makefile >+++ graphics/php56-exif/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git graphics/php56-gd/Makefile graphics/php56-gd/Makefile >index 4746215..4979a92 100644 >--- graphics/php56-gd/Makefile >+++ graphics/php56-gd/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git graphics/php70-exif/Makefile graphics/php70-exif/Makefile >index b82d128..7aa6b34 100644 >--- graphics/php70-exif/Makefile >+++ graphics/php70-exif/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git graphics/php70-gd/Makefile graphics/php70-gd/Makefile >index 53aff88..f42efd1 100644 >--- graphics/php70-gd/Makefile >+++ graphics/php70-gd/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= graphics > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git japanese/php5-mecab/Makefile japanese/php5-mecab/Makefile >index 45ba21d..7aeadd1 100644 >--- japanese/php5-mecab/Makefile >+++ 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} >diff --git lang/pecl-perl/Makefile lang/pecl-perl/Makefile >index aadb93c..4900f93 100644 >--- lang/pecl-perl/Makefile >+++ 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- >diff --git lang/php55/Makefile lang/php55/Makefile >index 4000fee..1bbb949 100644 >--- lang/php55/Makefile >+++ lang/php55/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= php55 > PORTVERSION= 5.5.37 >-PORTREVISION?= 0 >+PORTREVISION?= 1 > CATEGORIES?= lang devel www > MASTER_SITES= PHP/distributions > DISTNAME= php-${PORTVERSION} >diff --git lang/php55/Makefile.ext lang/php55/Makefile.ext >index 210c6ec..53547f2 100644 >--- lang/php55/Makefile.ext >+++ lang/php55/Makefile.ext >@@ -217,6 +217,8 @@ USE_OPENSSL= yes > .endif > > .if ${PHP_MODNAME} == "opcache" >+# This is needed by Zend extensions, keep before everything. >+PHP_MOD_PRIO= 10 > CONFIGURE_ARGS+=--enable-opcache > .endif > >diff --git lang/php56/Makefile lang/php56/Makefile >index 93c93c9..1ada649 100644 >--- lang/php56/Makefile >+++ lang/php56/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= php56 > PORTVERSION= 5.6.23 >-PORTREVISION?= 0 >+PORTREVISION?= 1 > CATEGORIES?= lang devel www > MASTER_SITES= PHP/distributions > DISTNAME= php-${PORTVERSION} >diff --git lang/php56/Makefile.ext lang/php56/Makefile.ext >index 609fcbf..e2d38cf 100644 >--- lang/php56/Makefile.ext >+++ lang/php56/Makefile.ext >@@ -217,6 +217,8 @@ USE_OPENSSL= yes > .endif > > .if ${PHP_MODNAME} == "opcache" >+# This is needed by Zend extensions, keep before everything. >+PHP_MOD_PRIO= 10 > CONFIGURE_ARGS+=--enable-opcache > .endif > >diff --git lang/php70/Makefile lang/php70/Makefile >index 5dcd655..be19a3d 100644 >--- lang/php70/Makefile >+++ lang/php70/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= php70 > PORTVERSION= 7.0.8 >-PORTREVISION?= 1 >+PORTREVISION?= 2 > CATEGORIES?= lang devel www > MASTER_SITES= PHP/distributions > DISTNAME= php-${PORTVERSION} >diff --git lang/php70/Makefile.ext lang/php70/Makefile.ext >index 2d1b831..ffa75e1 100644 >--- lang/php70/Makefile.ext >+++ lang/php70/Makefile.ext >@@ -209,6 +209,8 @@ USE_OPENSSL= yes > .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 >diff --git mail/pecl-esmtp/Makefile mail/pecl-esmtp/Makefile >index 237b415..247d5b6 100644 >--- mail/pecl-esmtp/Makefile >+++ 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- >diff --git mail/pecl-mailparse/Makefile mail/pecl-mailparse/Makefile >index fc514a4..1ed00e3 100644 >--- mail/pecl-mailparse/Makefile >+++ 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- >diff --git mail/pecl-pop3/Makefile mail/pecl-pop3/Makefile >index e9f6a2b..7deea3e 100644 >--- mail/pecl-pop3/Makefile >+++ 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- >diff --git mail/php55-imap/Makefile mail/php55-imap/Makefile >index bcfe09c..c83045d 100644 >--- mail/php55-imap/Makefile >+++ mail/php55-imap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= mail > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git mail/php56-imap/Makefile mail/php56-imap/Makefile >index fb2e539..20b5d23 100644 >--- mail/php56-imap/Makefile >+++ mail/php56-imap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= mail > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git mail/php70-imap/Makefile mail/php70-imap/Makefile >index 4130d5c..38b476e 100644 >--- mail/php70-imap/Makefile >+++ mail/php70-imap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= mail > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git math/pecl-big_int/Makefile math/pecl-big_int/Makefile >index 64ef898..85c2188 100644 >--- math/pecl-big_int/Makefile >+++ 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- >diff --git math/pecl-bitset/Makefile math/pecl-bitset/Makefile >index 276400b..2d6b2ae 100644 >--- math/pecl-bitset/Makefile >+++ 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- >diff --git math/pecl-bitset2/Makefile math/pecl-bitset2/Makefile >index 3b39178..3d86789 100644 >--- math/pecl-bitset2/Makefile >+++ 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- >diff --git math/pecl-stats/Makefile math/pecl-stats/Makefile >index e7ea635..00af779 100644 >--- math/pecl-stats/Makefile >+++ 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- >diff --git math/pecl-trader/Makefile math/pecl-trader/Makefile >index 40d9707..3187ac6 100644 >--- math/pecl-trader/Makefile >+++ 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- >diff --git math/php55-bcmath/Makefile math/php55-bcmath/Makefile >index 1a8ee36..e1be3745 100644 >--- math/php55-bcmath/Makefile >+++ math/php55-bcmath/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git math/php55-gmp/Makefile math/php55-gmp/Makefile >index 27f1d39..edf6c3b 100644 >--- math/php55-gmp/Makefile >+++ math/php55-gmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git math/php56-bcmath/Makefile math/php56-bcmath/Makefile >index 2aed659..ac2a3c0 100644 >--- math/php56-bcmath/Makefile >+++ math/php56-bcmath/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git math/php56-gmp/Makefile math/php56-gmp/Makefile >index 6950f80..0057177 100644 >--- math/php56-gmp/Makefile >+++ math/php56-gmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git math/php70-bcmath/Makefile math/php70-bcmath/Makefile >index df8efcb..24961d0 100644 >--- math/php70-bcmath/Makefile >+++ math/php70-bcmath/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git math/php70-gmp/Makefile math/php70-gmp/Makefile >index a785630..19e33ed 100644 >--- math/php70-gmp/Makefile >+++ math/php70-gmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= math > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git misc/pecl-timezonedb/Makefile misc/pecl-timezonedb/Makefile >index 0b5bec1..34657c4 100644 >--- misc/pecl-timezonedb/Makefile >+++ 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- >diff --git misc/php55-calendar/Makefile misc/php55-calendar/Makefile >index 6a9ff28..cad03f8 100644 >--- misc/php55-calendar/Makefile >+++ misc/php55-calendar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= misc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git misc/php56-calendar/Makefile misc/php56-calendar/Makefile >index 939eaa8..5c94bd3 100644 >--- misc/php56-calendar/Makefile >+++ misc/php56-calendar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= misc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git misc/php70-calendar/Makefile misc/php70-calendar/Makefile >index 2d8656e..12a979b 100644 >--- misc/php70-calendar/Makefile >+++ misc/php70-calendar/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= misc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git multimedia/php-pHash/Makefile multimedia/php-pHash/Makefile >index 4540c37..16914fe 100644 >--- multimedia/php-pHash/Makefile >+++ 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/ >diff --git net-im/pecl-stomp/Makefile net-im/pecl-stomp/Makefile >index 16302b1..78e2c8c 100644 >--- net-im/pecl-stomp/Makefile >+++ 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- >diff --git net-mgmt/php55-snmp/Makefile net-mgmt/php55-snmp/Makefile >index 26f81c3..d1e8007 100644 >--- net-mgmt/php55-snmp/Makefile >+++ net-mgmt/php55-snmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net-mgmt > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git net-mgmt/php56-snmp/Makefile net-mgmt/php56-snmp/Makefile >index 0c19efe..f90870c 100644 >--- net-mgmt/php56-snmp/Makefile >+++ net-mgmt/php56-snmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net-mgmt > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git net-mgmt/php70-snmp/Makefile net-mgmt/php70-snmp/Makefile >index 36711d7..72455e3 100644 >--- net-mgmt/php70-snmp/Makefile >+++ net-mgmt/php70-snmp/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net-mgmt > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git net/pecl-amqp/Makefile net/pecl-amqp/Makefile >index 9409e50..b6a121e 100644 >--- net/pecl-amqp/Makefile >+++ 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- >diff --git net/pecl-apn/Makefile net/pecl-apn/Makefile >index de4291f..1e4a1e7 100644 >--- net/pecl-apn/Makefile >+++ 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- >diff --git net/pecl-cvsclient/Makefile net/pecl-cvsclient/Makefile >index 75af09c..a7013a8 100644 >--- net/pecl-cvsclient/Makefile >+++ 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- >diff --git net/pecl-geoip/Makefile net/pecl-geoip/Makefile >index 53c0d6d..a2b87e7 100644 >--- net/pecl-geoip/Makefile >+++ 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- >diff --git net/pecl-gupnp/Makefile net/pecl-gupnp/Makefile >index 2991627..1a3e3a3 100644 >--- net/pecl-gupnp/Makefile >+++ 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- >diff --git net/pecl-ip2location/Makefile net/pecl-ip2location/Makefile >index 4d6af9c..19dcaef 100644 >--- net/pecl-ip2location/Makefile >+++ 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- >diff --git net/pecl-mosquitto/Makefile net/pecl-mosquitto/Makefile >index 6f35570..a92f085 100644 >--- net/pecl-mosquitto/Makefile >+++ 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- >diff --git net/pecl-oauth/Makefile net/pecl-oauth/Makefile >index 7ab4b20..90c1d33 100644 >--- net/pecl-oauth/Makefile >+++ 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- >diff --git net/pecl-radius/Makefile net/pecl-radius/Makefile >index 6790e9a..e8bcd8b 100644 >--- net/pecl-radius/Makefile >+++ 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- >diff --git net/pecl-smbclient/Makefile net/pecl-smbclient/Makefile >index 05783dc..47ceb8b 100644 >--- net/pecl-smbclient/Makefile >+++ 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- >diff --git net/pecl-yaz/Makefile net/pecl-yaz/Makefile >index 92f8433..9ff21b0 100644 >--- net/pecl-yaz/Makefile >+++ 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- >diff --git net/pecl-yp/Makefile net/pecl-yp/Makefile >index db620b1..cdf86b5 100644 >--- net/pecl-yp/Makefile >+++ 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- >diff --git net/pecl-zmq/Makefile net/pecl-zmq/Makefile >index d48f80a..1fcbe33 100644 >--- net/pecl-zmq/Makefile >+++ 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- >diff --git net/php55-ldap/Makefile net/php55-ldap/Makefile >index 784bef5..a6b3e6c 100644 >--- net/php55-ldap/Makefile >+++ net/php55-ldap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git net/php55-soap/Makefile net/php55-soap/Makefile >index b1b99a1..814c3d5 100644 >--- net/php55-soap/Makefile >+++ net/php55-soap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git net/php55-sockets/Makefile net/php55-sockets/Makefile >index 7ea541d..f16527d 100644 >--- net/php55-sockets/Makefile >+++ net/php55-sockets/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git net/php55-xmlrpc/Makefile net/php55-xmlrpc/Makefile >index 170db7b..271cf49 100644 >--- net/php55-xmlrpc/Makefile >+++ net/php55-xmlrpc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git net/php56-ldap/Makefile net/php56-ldap/Makefile >index 6cb9fe5..f83eba8 100644 >--- net/php56-ldap/Makefile >+++ net/php56-ldap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git net/php56-soap/Makefile net/php56-soap/Makefile >index a59fbfa..15296c8 100644 >--- net/php56-soap/Makefile >+++ net/php56-soap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git net/php56-sockets/Makefile net/php56-sockets/Makefile >index ecac83f..5179f5d 100644 >--- net/php56-sockets/Makefile >+++ net/php56-sockets/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git net/php56-xmlrpc/Makefile net/php56-xmlrpc/Makefile >index e28b875..e943374 100644 >--- net/php56-xmlrpc/Makefile >+++ net/php56-xmlrpc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git net/php70-ldap/Makefile net/php70-ldap/Makefile >index a268d1c..7198921 100644 >--- net/php70-ldap/Makefile >+++ net/php70-ldap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git net/php70-soap/Makefile net/php70-soap/Makefile >index 1424930..2010a44 100644 >--- net/php70-soap/Makefile >+++ net/php70-soap/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git net/php70-sockets/Makefile net/php70-sockets/Makefile >index 4afc3bf..ed13af6 100644 >--- net/php70-sockets/Makefile >+++ net/php70-sockets/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git net/php70-xmlrpc/Makefile net/php70-xmlrpc/Makefile >index 6faf6da..55a408c 100644 >--- net/php70-xmlrpc/Makefile >+++ net/php70-xmlrpc/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= net > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git print/pecl-haru/Makefile print/pecl-haru/Makefile >index 392352f..9c2c568 100644 >--- print/pecl-haru/Makefile >+++ 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- >diff --git print/pecl-pdflib/Makefile print/pecl-pdflib/Makefile >index c5dfd02..9dd4d4f 100644 >--- print/pecl-pdflib/Makefile >+++ 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- >diff --git print/pecl-ps/Makefile print/pecl-ps/Makefile >index 1a7257a..53a02a2 100644 >--- print/pecl-ps/Makefile >+++ 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- >diff --git security/pecl-crack/Makefile security/pecl-crack/Makefile >index 2d65c20..000cefa 100644 >--- security/pecl-crack/Makefile >+++ 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/ >diff --git security/pecl-crypto/Makefile security/pecl-crypto/Makefile >index af467bf..1aba80c 100644 >--- security/pecl-crypto/Makefile >+++ 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- >diff --git security/pecl-gnupg/Makefile security/pecl-gnupg/Makefile >index 14118f4..4d1de82 100644 >--- security/pecl-gnupg/Makefile >+++ 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- >diff --git security/pecl-pam/Makefile security/pecl-pam/Makefile >index 86fad0a..18c3e29 100644 >--- security/pecl-pam/Makefile >+++ 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- >diff --git security/pecl-scrypt/Makefile security/pecl-scrypt/Makefile >index 5ce1319..ac2cf75 100644 >--- security/pecl-scrypt/Makefile >+++ 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- >diff --git security/pecl-ssh2/Makefile security/pecl-ssh2/Makefile >index ae9ae9c..ff8d6f9 100644 >--- security/pecl-ssh2/Makefile >+++ 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- >diff --git security/pecl-tcpwrap/Makefile security/pecl-tcpwrap/Makefile >index 63fe13f..fad332b 100644 >--- security/pecl-tcpwrap/Makefile >+++ 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- >diff --git security/php-suhosin/Makefile security/php-suhosin/Makefile >index b5a9522..ade9e92 100644 >--- security/php-suhosin/Makefile >+++ 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- >diff --git security/php55-filter/Makefile security/php55-filter/Makefile >index 61f0a41..1a3515e 100644 >--- security/php55-filter/Makefile >+++ security/php55-filter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git security/php55-hash/Makefile security/php55-hash/Makefile >index 16ce618..cb4b9c9 100644 >--- security/php55-hash/Makefile >+++ security/php55-hash/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git security/php55-mcrypt/Makefile security/php55-mcrypt/Makefile >index be47403..0d6e8a5 100644 >--- security/php55-mcrypt/Makefile >+++ security/php55-mcrypt/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git security/php55-openssl/Makefile security/php55-openssl/Makefile >index c663223..0e4b3d6 100644 >--- security/php55-openssl/Makefile >+++ security/php55-openssl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git security/php56-filter/Makefile security/php56-filter/Makefile >index f15158b..528d4bb 100644 >--- security/php56-filter/Makefile >+++ security/php56-filter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git security/php56-hash/Makefile security/php56-hash/Makefile >index e5e83e7..c899d10 100644 >--- security/php56-hash/Makefile >+++ security/php56-hash/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git security/php56-mcrypt/Makefile security/php56-mcrypt/Makefile >index babb042a..9ce481f 100644 >--- security/php56-mcrypt/Makefile >+++ security/php56-mcrypt/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git security/php56-openssl/Makefile security/php56-openssl/Makefile >index 6653031..2811e5e 100644 >--- security/php56-openssl/Makefile >+++ security/php56-openssl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git security/php70-filter/Makefile security/php70-filter/Makefile >index ccb2887..c00b35c 100644 >--- security/php70-filter/Makefile >+++ security/php70-filter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git security/php70-hash/Makefile security/php70-hash/Makefile >index 3ee94a4..17b5b94 100644 >--- security/php70-hash/Makefile >+++ security/php70-hash/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git security/php70-mcrypt/Makefile security/php70-mcrypt/Makefile >index ac715c9..18b41ab 100644 >--- security/php70-mcrypt/Makefile >+++ security/php70-mcrypt/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git security/php70-openssl/Makefile security/php70-openssl/Makefile >index 7759e22..c397468 100644 >--- security/php70-openssl/Makefile >+++ security/php70-openssl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= security > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git sysutils/pecl-mogilefs/Makefile sysutils/pecl-mogilefs/Makefile >index abd075b..29ced87 100644 >--- sysutils/pecl-mogilefs/Makefile >+++ 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- >diff --git sysutils/pecl-proctitle/Makefile sysutils/pecl-proctitle/Makefile >index 02ab2d7..c10990f 100644 >--- sysutils/pecl-proctitle/Makefile >+++ 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- >diff --git sysutils/php55-fileinfo/Makefile sysutils/php55-fileinfo/Makefile >index ef2883c..79b08ea 100644 >--- sysutils/php55-fileinfo/Makefile >+++ sysutils/php55-fileinfo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git sysutils/php55-posix/Makefile sysutils/php55-posix/Makefile >index e2e68ca..b000600 100644 >--- sysutils/php55-posix/Makefile >+++ sysutils/php55-posix/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git sysutils/php56-fileinfo/Makefile sysutils/php56-fileinfo/Makefile >index 77372f0..aaf7906 100644 >--- sysutils/php56-fileinfo/Makefile >+++ sysutils/php56-fileinfo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git sysutils/php56-posix/Makefile sysutils/php56-posix/Makefile >index da38a7e..06330fd 100644 >--- sysutils/php56-posix/Makefile >+++ sysutils/php56-posix/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git sysutils/php70-fileinfo/Makefile sysutils/php70-fileinfo/Makefile >index 2f6c293..1ac4917 100644 >--- sysutils/php70-fileinfo/Makefile >+++ sysutils/php70-fileinfo/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git sysutils/php70-posix/Makefile sysutils/php70-posix/Makefile >index 45f5903..ee16e51 100644 >--- sysutils/php70-posix/Makefile >+++ sysutils/php70-posix/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= sysutils > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/libmrss-php/Makefile textproc/libmrss-php/Makefile >index e7c6ccf..5d25ecb 100644 >--- textproc/libmrss-php/Makefile >+++ 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 >diff --git textproc/pecl-cld/Makefile textproc/pecl-cld/Makefile >index 833b54b..f3aa694 100644 >--- textproc/pecl-cld/Makefile >+++ 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- >diff --git textproc/pecl-ctemplate/Makefile textproc/pecl-ctemplate/Makefile >index fce74cb..f842de9 100644 >--- textproc/pecl-ctemplate/Makefile >+++ textproc/pecl-ctemplate/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= cTemplate > PORTVERSION= 1.12 >+PORTREVISION= 1 > CATEGORIES= textproc pear > DISTVERSIONPREFIX= v > PKGNAMEPREFIX= pecl- >diff --git textproc/pecl-doublemetaphone/Makefile textproc/pecl-doublemetaphone/Makefile >index 02b8e90..d6997cc 100644 >--- textproc/pecl-doublemetaphone/Makefile >+++ 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- >diff --git textproc/pecl-enchant/Makefile textproc/pecl-enchant/Makefile >index 206b2db..ebd1315 100644 >--- textproc/pecl-enchant/Makefile >+++ 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- >diff --git textproc/pecl-html_parse/Makefile textproc/pecl-html_parse/Makefile >index d90723b..cabd147 100644 >--- textproc/pecl-html_parse/Makefile >+++ 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- >diff --git textproc/pecl-stem/Makefile textproc/pecl-stem/Makefile >index 9927f55..262ede5 100644 >--- textproc/pecl-stem/Makefile >+++ 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- >diff --git textproc/pecl-syck/Makefile textproc/pecl-syck/Makefile >index 53b715f..0efe230 100644 >--- textproc/pecl-syck/Makefile >+++ 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- >diff --git textproc/pecl-wbxml/Makefile textproc/pecl-wbxml/Makefile >index d91c736..bbcd4cc 100644 >--- textproc/pecl-wbxml/Makefile >+++ 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- >diff --git textproc/pecl-xdiff/Makefile textproc/pecl-xdiff/Makefile >index 800bcf6..fe1cc81 100644 >--- textproc/pecl-xdiff/Makefile >+++ 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- >diff --git textproc/pecl-xslcache/Makefile textproc/pecl-xslcache/Makefile >index 450565f..f526a6e 100644 >--- textproc/pecl-xslcache/Makefile >+++ 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- >diff --git textproc/pecl-yaml/Makefile textproc/pecl-yaml/Makefile >index 0e71956..13e6a79 100644 >--- textproc/pecl-yaml/Makefile >+++ 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- >diff --git textproc/php-mecab/Makefile textproc/php-mecab/Makefile >index 3abcd6c..5a3e4ae 100644 >--- textproc/php-mecab/Makefile >+++ textproc/php-mecab/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= php-mecab > PORTVERSION= 0.6.0 >+PORTREVISION= 1 > DISTVERSIONPREFIX= v > CATEGORIES= textproc > >diff --git textproc/php55-ctype/Makefile textproc/php55-ctype/Makefile >index e7d588b..ddfa800 100644 >--- textproc/php55-ctype/Makefile >+++ textproc/php55-ctype/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-dom/Makefile textproc/php55-dom/Makefile >index 22d0fa1..8873246 100644 >--- textproc/php55-dom/Makefile >+++ textproc/php55-dom/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-pspell/Makefile textproc/php55-pspell/Makefile >index ca5a0fb..8e4516a 100644 >--- textproc/php55-pspell/Makefile >+++ textproc/php55-pspell/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-simplexml/Makefile textproc/php55-simplexml/Makefile >index dd27493..8fbe224 100644 >--- textproc/php55-simplexml/Makefile >+++ textproc/php55-simplexml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-wddx/Makefile textproc/php55-wddx/Makefile >index d52e97d..ca3ed6f 100644 >--- textproc/php55-wddx/Makefile >+++ textproc/php55-wddx/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-xml/Makefile textproc/php55-xml/Makefile >index be8e8646..347ddfb 100644 >--- textproc/php55-xml/Makefile >+++ textproc/php55-xml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-xmlreader/Makefile textproc/php55-xmlreader/Makefile >index d5e8318..a2af8b1 100644 >--- textproc/php55-xmlreader/Makefile >+++ textproc/php55-xmlreader/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-xmlwriter/Makefile textproc/php55-xmlwriter/Makefile >index 79fbac0..54e5de3 100644 >--- textproc/php55-xmlwriter/Makefile >+++ textproc/php55-xmlwriter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php55-xsl/Makefile textproc/php55-xsl/Makefile >index c7d5464..9600224 100644 >--- textproc/php55-xsl/Makefile >+++ textproc/php55-xsl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git textproc/php56-ctype/Makefile textproc/php56-ctype/Makefile >index 202a932..1dc18ac 100644 >--- textproc/php56-ctype/Makefile >+++ textproc/php56-ctype/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-dom/Makefile textproc/php56-dom/Makefile >index 5c0f7ed..1c75b62 100644 >--- textproc/php56-dom/Makefile >+++ textproc/php56-dom/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-pspell/Makefile textproc/php56-pspell/Makefile >index 2112f73..b5b268b 100644 >--- textproc/php56-pspell/Makefile >+++ textproc/php56-pspell/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-simplexml/Makefile textproc/php56-simplexml/Makefile >index e716e47..ef0f55b 100644 >--- textproc/php56-simplexml/Makefile >+++ textproc/php56-simplexml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-wddx/Makefile textproc/php56-wddx/Makefile >index da78d33..35a9166 100644 >--- textproc/php56-wddx/Makefile >+++ textproc/php56-wddx/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-xml/Makefile textproc/php56-xml/Makefile >index d014fbc..8482a1b 100644 >--- textproc/php56-xml/Makefile >+++ textproc/php56-xml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-xmlreader/Makefile textproc/php56-xmlreader/Makefile >index ac3e02e..60f2ed6 100644 >--- textproc/php56-xmlreader/Makefile >+++ textproc/php56-xmlreader/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-xmlwriter/Makefile textproc/php56-xmlwriter/Makefile >index 564f238..7409f6d 100644 >--- textproc/php56-xmlwriter/Makefile >+++ textproc/php56-xmlwriter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php56-xsl/Makefile textproc/php56-xsl/Makefile >index a9f05716..ba032f4 100644 >--- textproc/php56-xsl/Makefile >+++ textproc/php56-xsl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git textproc/php70-ctype/Makefile textproc/php70-ctype/Makefile >index f6833af..04b1f81 100644 >--- textproc/php70-ctype/Makefile >+++ textproc/php70-ctype/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-dom/Makefile textproc/php70-dom/Makefile >index 9c5b181..3054560 100644 >--- textproc/php70-dom/Makefile >+++ textproc/php70-dom/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-pspell/Makefile textproc/php70-pspell/Makefile >index a2978e3..14b8aba 100644 >--- textproc/php70-pspell/Makefile >+++ textproc/php70-pspell/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-simplexml/Makefile textproc/php70-simplexml/Makefile >index a4d88cb..68106a0 100644 >--- textproc/php70-simplexml/Makefile >+++ textproc/php70-simplexml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-wddx/Makefile textproc/php70-wddx/Makefile >index 87bab09..d218fab 100644 >--- textproc/php70-wddx/Makefile >+++ textproc/php70-wddx/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-xml/Makefile textproc/php70-xml/Makefile >index 6eca62c..1c5d6a3 100644 >--- textproc/php70-xml/Makefile >+++ textproc/php70-xml/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-xmlreader/Makefile textproc/php70-xmlreader/Makefile >index dd5701b..bb4caf1 100644 >--- textproc/php70-xmlreader/Makefile >+++ textproc/php70-xmlreader/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-xmlwriter/Makefile textproc/php70-xmlwriter/Makefile >index 7827d75..0c85c9b 100644 >--- textproc/php70-xmlwriter/Makefile >+++ textproc/php70-xmlwriter/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git textproc/php70-xsl/Makefile textproc/php70-xsl/Makefile >index 7096247..95c477f 100644 >--- textproc/php70-xsl/Makefile >+++ textproc/php70-xsl/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= textproc > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git www/pecl-APC/Makefile www/pecl-APC/Makefile >index b9160a4..85fa7c9 100644 >--- www/pecl-APC/Makefile >+++ 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 >diff --git www/pecl-amfext/Makefile www/pecl-amfext/Makefile >index 2a3ea16..d71da85 100644 >--- www/pecl-amfext/Makefile >+++ 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- >diff --git www/pecl-http/Makefile www/pecl-http/Makefile >index b0d1573..2ac6be3 100644 >--- www/pecl-http/Makefile >+++ 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- >diff --git www/pecl-http1/Makefile www/pecl-http1/Makefile >index 8219055..6262e3b 100644 >--- www/pecl-http1/Makefile >+++ 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- >diff --git www/pecl-http2/Makefile www/pecl-http2/Makefile >index f19c0db..692c5b5 100644 >--- www/pecl-http2/Makefile >+++ 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- >diff --git www/pecl-solr/Makefile www/pecl-solr/Makefile >index 3b7a03a..f36bd1a 100644 >--- www/pecl-solr/Makefile >+++ 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- >diff --git www/pecl-sphinx/Makefile www/pecl-sphinx/Makefile >index 03a3b22..ad49bda 100644 >--- www/pecl-sphinx/Makefile >+++ 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- >diff --git www/pecl-swish/Makefile www/pecl-swish/Makefile >index 708218b..ab44cd6 100644 >--- www/pecl-swish/Makefile >+++ 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- >diff --git www/pecl-twig/Makefile www/pecl-twig/Makefile >index 5372eab..5c3de06 100644 >--- www/pecl-twig/Makefile >+++ 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- >diff --git www/pecl-yaf/Makefile www/pecl-yaf/Makefile >index 446e6a0..57f48c0 100644 >--- www/pecl-yaf/Makefile >+++ 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- >diff --git www/pecl-yar/Makefile www/pecl-yar/Makefile >index 111054a..767af72 100644 >--- www/pecl-yar/Makefile >+++ 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- >diff --git www/phalcon/Makefile www/phalcon/Makefile >index 709432e..7720c19 100644 >--- www/phalcon/Makefile >+++ www/phalcon/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= phalcon > PORTVERSION= 2.0.13 >+PORTREVISION= 1 > DISTVERSIONPREFIX= ${PORTNAME}-v > CATEGORIES= www > >diff --git www/php-screw/Makefile www/php-screw/Makefile >index 1fa740c..7e78462 100644 >--- www/php-screw/Makefile >+++ www/php-screw/Makefile >@@ -40,9 +40,11 @@ do-build: > > 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 <bsd.port.mk> >diff --git www/php-screw/files/pkg-message.in www/php-screw/files/pkg-message.in >index d55d343..9da4483 100644 >--- www/php-screw/files/pkg-message.in >+++ 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" > >diff --git www/php-templates/Makefile www/php-templates/Makefile >index 15b43ae..f517ee6 100644 >--- www/php-templates/Makefile >+++ www/php-templates/Makefile >@@ -31,5 +31,8 @@ do-install: > ${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 <bsd.port.mk> >diff --git www/php-templates/files/pkg-message.in www/php-templates/files/pkg-message.in >index 22b6e4c..5564701 100644 >--- www/php-templates/files/pkg-message.in >+++ 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" > >diff --git www/php55-opcache/Makefile www/php55-opcache/Makefile >index 753ea6e..3babb3c 100644 >--- www/php55-opcache/Makefile >+++ www/php55-opcache/Makefile >@@ -1,7 +1,7 @@ > # Created by: Martin Matuska <mm@FreeBSD.org> > # $FreeBSD$ > >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git www/php55-session/Makefile www/php55-session/Makefile >index 84d171b..7ac4188 100644 >--- www/php55-session/Makefile >+++ www/php55-session/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git www/php55-tidy/Makefile www/php55-tidy/Makefile >index d78c094..4289e2e 100644 >--- www/php55-tidy/Makefile >+++ www/php55-tidy/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php55 >diff --git www/php56-opcache/Makefile www/php56-opcache/Makefile >index 99b55c2..8184881 100644 >--- www/php56-opcache/Makefile >+++ www/php56-opcache/Makefile >@@ -1,7 +1,7 @@ > # Created by: Martin Matuska <mm@FreeBSD.org> > # $FreeBSD$ > >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git www/php56-session/Makefile www/php56-session/Makefile >index a8c4fc1..d4e611e 100644 >--- www/php56-session/Makefile >+++ www/php56-session/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git www/php56-tidy/Makefile www/php56-tidy/Makefile >index 8727463..80babeb 100644 >--- www/php56-tidy/Makefile >+++ www/php56-tidy/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php56 >diff --git www/php70-opcache/Makefile www/php70-opcache/Makefile >index d721076..322c1dc 100644 >--- www/php70-opcache/Makefile >+++ www/php70-opcache/Makefile >@@ -1,7 +1,7 @@ > # Created by: Martin Matuska <mm@FreeBSD.org> > # $FreeBSD$ > >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git www/php70-session/Makefile www/php70-session/Makefile >index 6b20fd0..d445ec8 100644 >--- www/php70-session/Makefile >+++ www/php70-session/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php70 >diff --git www/php70-tidy/Makefile www/php70-tidy/Makefile >index 40f6250..3a4b207 100644 >--- www/php70-tidy/Makefile >+++ www/php70-tidy/Makefile >@@ -1,6 +1,7 @@ > # Created by: Alex Dupre <ale@FreeBSD.org> > # $FreeBSD$ > >+PORTREVISION= 1 > CATEGORIES= www > > MASTERDIR= ${.CURDIR}/../../lang/php70
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 210697
:
171947
|
172751
|
173040