diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-08-03 12:47:05 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-08-03 12:47:05 +0000 |
commit | aef5a666706db2a5b97c1cc3d1fcc2ca05b22fcb (patch) | |
tree | 0ef0e6e265bc625030daf067c3dd5dc211eab79b | |
parent | b79eed7e6652ea9529bf37f35bb2f17c2d77063b (diff) | |
download | freebsd-ports-aef5a666706db2a5b97c1cc3d1fcc2ca05b22fcb.zip |
Don't use extension.ini any more, and have each extension install in its
file, so the order remains the same.
Every PHP (or Zend) extension now installs its own .ini file in
/usr/local/etc/php. A PHP extension will be automatically activated
when installed. The order into which extensions are loaded is
automatically guessed. In some very rare cases, the guess will be
wrong, and PHP_MOD_PRIO will need to be set. Refer to the USES=php
section of the Porter's Handbook for more information.
Convert ports touching etc/php/extensions.ini manually, or telling the
OP to do it.
And finally, bump PORTREVISION for all php extensions.
PR: 210697
Submitted by: mat
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D7022
381 files changed, 475 insertions, 174 deletions
@@ -10,6 +10,16 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160803: +AUTHOR: mat@FreeBSD.org + + Every PHP (or Zend) extension now installs its own .ini file in + /usr/local/etc/php. A PHP extension will be automatically activated when + installed. The order into which extensions are loaded is automatically + guessed. In some very rare cases, the guess will be wrong, and PHP_MOD_PRIO + will need to be set. Refer to the USES=php section of the Porter's Handbook + for more information. + 20160628: AUTHOR: mat@FreeBSD.org diff --git a/Mk/Uses/php.mk b/Mk/Uses/php.mk index 48636dac9ea6..72a1766da68f 100644 --- a/Mk/Uses/php.mk +++ b/Mk/Uses/php.mk @@ -21,6 +21,25 @@ # # USE_PHP= ext1 ext2 ext3 # +# PHP and Zend extensions built with :ext and :zend are automatically enabled +# when the port is installed. Each port creates a PHP_EXT_INI_FILE file and +# registers the extension in it. +# +# The PHP_EXT_INI_FILE file has a priority number embeded into its name so that +# extensions are loaded in the right order. The priority is defined by +# PHP_MOD_PRIO and is a number between 00 and 99. +# +# For extensions that do not depend on any extension, the priority is +# automatically set to 20, for extensions that depend on another extension, the +# priority is automatically set to 30. Some extensions may need to be loaded +# before everyone else (for example opcache), or after an extension with a +# priotity of 30, in that case, add PHP_MOD_PRIO=XX in the port's Makefile. +# For example: +# +# USES= php:ext +# USE_PHP= xml wddx +# PHP_MOD_PRIO= 40 +# # The port can set these options in its Makefile before bsd.port.pre.mk: # # DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed. @@ -202,13 +221,26 @@ _INCLUDE_USES_PHP_POST_MK=yes . if ${php_ARGS:Mext} || ${php_ARGS:Mzend} PHP_MODNAME?= ${PORTNAME} -PHP_HEADER_DIRS?= "" +PHP_EXT_PKGMESSAGE= ${WRKDIR}/php-ext-pkg-message +PKGMESSAGES+= ${PHP_EXT_PKGMESSAGE} +PHP_HEADER_DIRS+= . +# If there is no priority defined, we wing it. +. if !defined(PHP_MOD_PRIO) +. if defined(USE_PHP) +# If an extension needs another, put it after the others. +PHP_MOD_PRIO= 30 +. else +# Otherwise, put it where it with everybody. +PHP_MOD_PRIO= 20 +. endif +. endif +PHP_EXT_INI_FILE= etc/php/ext-${PHP_MOD_PRIO}-${PHP_MODNAME}.ini do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_LIB} ${WRKSRC}/modules/${PHP_MODNAME}.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} -. for header in . ${PHP_HEADER_DIRS} +. for header in ${PHP_HEADER_DIRS} @${MKDIR} ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} @${INSTALL_DATA} ${WRKSRC}/${header}/*.h \ ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} @@ -217,8 +249,13 @@ 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=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE} +. else + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE} +. endif -add-plist-info: add-plist-phpext +_USES_stage+= 899:add-plist-phpext add-plist-phpext: @${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \ >> ${TMPPLIST} @@ -232,44 +269,20 @@ add-plist-phpext: >> ${TMPPLIST} @${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \ >> ${TMPPLIST} - @${ECHO_CMD} "@dir etc/php" \ + @${ECHO_CMD} "${PHP_EXT_INI_FILE}" \ >> ${TMPPLIST} + @${ECHO_CMD} "****************************************************************************" > ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "The following line has been added to your ${PREFIX}/${PHP_EXT_INI_FILE}" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "configuration file to automatically load the installed extension:" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} . if ${php_ARGS:Mzend} - @${ECHO_CMD} "@exec echo zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "@unexec grep -v zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - -package-message: php-ini - -php-ini: - @${ECHO_CMD} "****************************************************************************" - @${ECHO_CMD} "" - @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" - @${ECHO_CMD} "configuration file to automatically load the installed extension:" - @${ECHO_CMD} "" -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" + @${ECHO_CMD} "zend_extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . else - @${ECHO_CMD} "extension=${PHP_MODNAME}.so" + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . endif - @${ECHO_CMD} "" - @${ECHO_CMD} "****************************************************************************" + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "****************************************************************************" >> ${PHP_EXT_PKGMESSAGE} . endif # Extensions diff --git a/archivers/pecl-lzf/Makefile b/archivers/pecl-lzf/Makefile index 04c87c792d3d..8896fe2d9550 100644 --- a/archivers/pecl-lzf/Makefile +++ b/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 a/archivers/pecl-phk/Makefile b/archivers/pecl-phk/Makefile index 46889b6325db..4bc69141c4e1 100644 --- a/archivers/pecl-phk/Makefile +++ b/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 a/archivers/pecl-rar/Makefile b/archivers/pecl-rar/Makefile index a6ad4521397d..9613fc2eabf3 100644 --- a/archivers/pecl-rar/Makefile +++ b/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 a/archivers/php-horde_lz4/Makefile b/archivers/php-horde_lz4/Makefile index fae9e9e31c25..a1a82847aa54 100644 --- a/archivers/php-horde_lz4/Makefile +++ b/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 a/archivers/php5-snappy/Makefile b/archivers/php5-snappy/Makefile index a3ccdcab97f2..e7458be65b3a 100644 --- a/archivers/php5-snappy/Makefile +++ b/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 a/archivers/php55-bz2/Makefile b/archivers/php55-bz2/Makefile index 2806e4e3594a..5cd5ae7ad9a8 100644 --- a/archivers/php55-bz2/Makefile +++ b/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 a/archivers/php55-phar/Makefile b/archivers/php55-phar/Makefile index 1579b90f4e22..38e926ed1c9c 100644 --- a/archivers/php55-phar/Makefile +++ b/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 a/archivers/php55-zip/Makefile b/archivers/php55-zip/Makefile index 5292174544df..59c924adf758 100644 --- a/archivers/php55-zip/Makefile +++ b/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 a/archivers/php55-zlib/Makefile b/archivers/php55-zlib/Makefile index 8183cdeeb061..26e11c201791 100644 --- a/archivers/php55-zlib/Makefile +++ b/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 a/archivers/php56-bz2/Makefile b/archivers/php56-bz2/Makefile index d65f1696013b..9a5baa6af330 100644 --- a/archivers/php56-bz2/Makefile +++ b/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 a/archivers/php56-phar/Makefile b/archivers/php56-phar/Makefile index 830ee797204f..e285e74949b5 100644 --- a/archivers/php56-phar/Makefile +++ b/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 a/archivers/php56-zip/Makefile b/archivers/php56-zip/Makefile index cc86586ec95f..c9f55a874f0e 100644 --- a/archivers/php56-zip/Makefile +++ b/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 a/archivers/php56-zlib/Makefile b/archivers/php56-zlib/Makefile index e9ba04011193..6fe5d47305b9 100644 --- a/archivers/php56-zlib/Makefile +++ b/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 a/archivers/php70-bz2/Makefile b/archivers/php70-bz2/Makefile index aa6bad49b1a7..d1b7fcbd1aaa 100644 --- a/archivers/php70-bz2/Makefile +++ b/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 a/archivers/php70-phar/Makefile b/archivers/php70-phar/Makefile index 2c7881424839..2293deb5ef31 100644 --- a/archivers/php70-phar/Makefile +++ b/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 a/archivers/php70-zip/Makefile b/archivers/php70-zip/Makefile index 9b41f5cd92d8..6054920f77fc 100644 --- a/archivers/php70-zip/Makefile +++ b/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 a/archivers/php70-zlib/Makefile b/archivers/php70-zlib/Makefile index 05853d17aaee..c393a4f5bb18 100644 --- a/archivers/php70-zlib/Makefile +++ b/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 a/chinese/php-cconv/Makefile b/chinese/php-cconv/Makefile index 5f2ed2310aeb..9e05f37f081d 100644 --- a/chinese/php-cconv/Makefile +++ b/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 a/converters/pecl-fribidi/Makefile b/converters/pecl-fribidi/Makefile index 0e5b0f62049e..0a12073171d4 100644 --- a/converters/pecl-fribidi/Makefile +++ b/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 a/converters/pecl-igbinary/Makefile b/converters/pecl-igbinary/Makefile index de7f81c71e2f..153d3868fe51 100644 --- a/converters/pecl-igbinary/Makefile +++ b/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 a/converters/php5-bsdconv/Makefile b/converters/php5-bsdconv/Makefile index 567693f9fffd..c9ddbd4bf8ba 100644 --- a/converters/php5-bsdconv/Makefile +++ b/converters/php5-bsdconv/Makefile @@ -3,6 +3,7 @@ PORTNAME= bsdconv PORTVERSION= 11.3.0 +PORTREVISION= 1 CATEGORIES= converters PKGNAMEPREFIX= php5- diff --git a/converters/php55-iconv/Makefile b/converters/php55-iconv/Makefile index 1727279f21e3..f1e0bc34edbc 100644 --- a/converters/php55-iconv/Makefile +++ b/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 a/converters/php55-mbstring/Makefile b/converters/php55-mbstring/Makefile index 0cc3d45751b5..610619fac3a2 100644 --- a/converters/php55-mbstring/Makefile +++ b/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 a/converters/php55-recode/Makefile b/converters/php55-recode/Makefile index 131bf9fd4bce..59d1969f2070 100644 --- a/converters/php55-recode/Makefile +++ b/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 a/converters/php56-iconv/Makefile b/converters/php56-iconv/Makefile index 8aa0617cb215..39666cea5888 100644 --- a/converters/php56-iconv/Makefile +++ b/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 a/converters/php56-mbstring/Makefile b/converters/php56-mbstring/Makefile index 4d11593b0ba6..46c9f188a7ed 100644 --- a/converters/php56-mbstring/Makefile +++ b/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 a/converters/php56-recode/Makefile b/converters/php56-recode/Makefile index f3358a590ad7..1a442924759b 100644 --- a/converters/php56-recode/Makefile +++ b/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 a/converters/php70-iconv/Makefile b/converters/php70-iconv/Makefile index 89058d3eefa4..f07e923a35b2 100644 --- a/converters/php70-iconv/Makefile +++ b/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 a/converters/php70-mbstring/Makefile b/converters/php70-mbstring/Makefile index 634120319c67..1527a839d331 100644 --- a/converters/php70-mbstring/Makefile +++ b/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 a/converters/php70-recode/Makefile b/converters/php70-recode/Makefile index 5534d7173f41..19c2ff924b91 100644 --- a/converters/php70-recode/Makefile +++ b/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 a/databases/pecl-chdb/Makefile b/databases/pecl-chdb/Makefile index 0fcd84f37b0e..67a96a1e9bd9 100644 --- a/databases/pecl-chdb/Makefile +++ b/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 a/databases/pecl-dbase/Makefile b/databases/pecl-dbase/Makefile index 62c04e18d482..229c5a062fb1 100644 --- a/databases/pecl-dbase/Makefile +++ b/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 a/databases/pecl-drizzle/Makefile b/databases/pecl-drizzle/Makefile index a7d50f1f4b27..f6b572baf5fd 100644 --- a/databases/pecl-drizzle/Makefile +++ b/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 a/databases/pecl-leveldb/Makefile b/databases/pecl-leveldb/Makefile index bb0b737bbd2f..51bc846f38bb 100644 --- a/databases/pecl-leveldb/Makefile +++ b/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 a/databases/pecl-mdbtools/Makefile b/databases/pecl-mdbtools/Makefile index 008e95f24336..2e3cd353274c 100644 --- a/databases/pecl-mdbtools/Makefile +++ b/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 a/databases/pecl-memcache/Makefile b/databases/pecl-memcache/Makefile index e8e497530182..7c3566011c11 100644 --- a/databases/pecl-memcache/Makefile +++ b/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 a/databases/pecl-memcached/Makefile b/databases/pecl-memcached/Makefile index 2c76a0614ca9..854f55f97438 100644 --- a/databases/pecl-memcached/Makefile +++ b/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 a/databases/pecl-mongo/Makefile b/databases/pecl-mongo/Makefile index 8ce20e24277a..b85b2ce34dd3 100644 --- a/databases/pecl-mongo/Makefile +++ b/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 a/databases/pecl-mongodb/Makefile b/databases/pecl-mongodb/Makefile index 37fa1b5cc1f1..2b431bc48921 100644 --- a/databases/pecl-mongodb/Makefile +++ b/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 a/databases/pecl-mysqlnd_ms/Makefile b/databases/pecl-mysqlnd_ms/Makefile index 30bf645ec493..1aac5e564834 100644 --- a/databases/pecl-mysqlnd_ms/Makefile +++ b/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 a/databases/pecl-mysqlnd_qc/Makefile b/databases/pecl-mysqlnd_qc/Makefile index 8d1aca962b21..d56b31384472 100644 --- a/databases/pecl-mysqlnd_qc/Makefile +++ b/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 a/databases/pecl-pdo_user/Makefile b/databases/pecl-pdo_user/Makefile index 7d35dc5015ed..e8dc508801dc 100644 --- a/databases/pecl-pdo_user/Makefile +++ b/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 a/databases/pecl-rrd/Makefile b/databases/pecl-rrd/Makefile index 6c5c9970791a..b604d5d1334f 100644 --- a/databases/pecl-rrd/Makefile +++ b/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 a/databases/pecl-tokyo_tyrant/Makefile b/databases/pecl-tokyo_tyrant/Makefile index 4c98bba9c41b..bf0d34f32944 100644 --- a/databases/pecl-tokyo_tyrant/Makefile +++ b/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 a/databases/php-adodb-ext/Makefile b/databases/php-adodb-ext/Makefile index f39940af79de..9198a70403dc 100644 --- a/databases/php-adodb-ext/Makefile +++ b/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 a/databases/php-adodb-ext/files/pkg-message.in b/databases/php-adodb-ext/files/pkg-message.in deleted file mode 100644 index 2703f9fe2071..000000000000 --- a/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 a/databases/php-mdcached/Makefile b/databases/php-mdcached/Makefile index e755fa7369d7..c98c382b4a28 100644 --- a/databases/php-mdcached/Makefile +++ b/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 a/databases/php5-pdo_cassandra/Makefile b/databases/php5-pdo_cassandra/Makefile index 74b99bd75c9d..380d1f39c4ad 100644 --- a/databases/php5-pdo_cassandra/Makefile +++ b/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 a/databases/php5-tarantool/Makefile b/databases/php5-tarantool/Makefile index 078a31473b32..45b2a04b0e2c 100644 --- a/databases/php5-tarantool/Makefile +++ b/databases/php5-tarantool/Makefile @@ -3,6 +3,7 @@ PORTNAME= tarantool PORTVERSION= ${TR_VER} +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php5- diff --git a/databases/php55-dba/Makefile b/databases/php55-dba/Makefile index f8c379a08655..3b500ab580e3 100644 --- a/databases/php55-dba/Makefile +++ b/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 a/databases/php55-interbase/Makefile b/databases/php55-interbase/Makefile index 5ad561868ef4..2c53f994afff 100644 --- a/databases/php55-interbase/Makefile +++ b/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 a/databases/php55-mssql/Makefile b/databases/php55-mssql/Makefile index b7105fba3a9e..225337076df2 100644 --- a/databases/php55-mssql/Makefile +++ b/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 a/databases/php55-mysql/Makefile b/databases/php55-mysql/Makefile index 613989b04f66..1ed83aafc35c 100644 --- a/databases/php55-mysql/Makefile +++ b/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 a/databases/php55-mysqli/Makefile b/databases/php55-mysqli/Makefile index 0725ba0b3756..e57a3fc7511e 100644 --- a/databases/php55-mysqli/Makefile +++ b/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 a/databases/php55-odbc/Makefile b/databases/php55-odbc/Makefile index 367500f04518..c826d1ff7ff8 100644 --- a/databases/php55-odbc/Makefile +++ b/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 a/databases/php55-pdo/Makefile b/databases/php55-pdo/Makefile index 875656d76931..595fb704fee1 100644 --- a/databases/php55-pdo/Makefile +++ b/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 a/databases/php55-pdo_dblib/Makefile b/databases/php55-pdo_dblib/Makefile index db16a7b71416..9b25530c9678 100644 --- a/databases/php55-pdo_dblib/Makefile +++ b/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 a/databases/php55-pdo_firebird/Makefile b/databases/php55-pdo_firebird/Makefile index 13d8dafb9386..73e8e440b77c 100644 --- a/databases/php55-pdo_firebird/Makefile +++ b/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 a/databases/php55-pdo_mysql/Makefile b/databases/php55-pdo_mysql/Makefile index a35e5564e01f..a13eae709773 100644 --- a/databases/php55-pdo_mysql/Makefile +++ b/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 a/databases/php55-pdo_odbc/Makefile b/databases/php55-pdo_odbc/Makefile index f40c3d46813d..d58b14036921 100644 --- a/databases/php55-pdo_odbc/Makefile +++ b/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 a/databases/php55-pdo_pgsql/Makefile b/databases/php55-pdo_pgsql/Makefile index 19bef135bf29..ae3149c1ab7a 100644 --- a/databases/php55-pdo_pgsql/Makefile +++ b/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 a/databases/php55-pdo_sqlite/Makefile b/databases/php55-pdo_sqlite/Makefile index c0e1c1707e6e..13c6f791fc56 100644 --- a/databases/php55-pdo_sqlite/Makefile +++ b/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 a/databases/php55-pgsql/Makefile b/databases/php55-pgsql/Makefile index b6223ec6191f..64e6ada26606 100644 --- a/databases/php55-pgsql/Makefile +++ b/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 a/databases/php55-redis/Makefile b/databases/php55-redis/Makefile index 9acaee43d470..c2ef25463cf4 100644 --- a/databases/php55-redis/Makefile +++ b/databases/php55-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.4 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php55- diff --git a/databases/php55-sqlite3/Makefile b/databases/php55-sqlite3/Makefile index 28efa9176b92..7f9daeb64dd7 100644 --- a/databases/php55-sqlite3/Makefile +++ b/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 a/databases/php55-sybase_ct/Makefile b/databases/php55-sybase_ct/Makefile index cd9fe95a2f74..9e4821327968 100644 --- a/databases/php55-sybase_ct/Makefile +++ b/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 a/databases/php56-dba/Makefile b/databases/php56-dba/Makefile index ec617c162add..799edcbcfbe7 100644 --- a/databases/php56-dba/Makefile +++ b/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 a/databases/php56-interbase/Makefile b/databases/php56-interbase/Makefile index 894e1d5df5a0..0e3b08162ee9 100644 --- a/databases/php56-interbase/Makefile +++ b/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 a/databases/php56-mssql/Makefile b/databases/php56-mssql/Makefile index 0e4995975e41..567339c1a793 100644 --- a/databases/php56-mssql/Makefile +++ b/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 a/databases/php56-mysql/Makefile b/databases/php56-mysql/Makefile index a32da0666e1b..d25f8c53e788 100644 --- a/databases/php56-mysql/Makefile +++ b/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 a/databases/php56-mysqli/Makefile b/databases/php56-mysqli/Makefile index 8dd62aca30da..6619847094a6 100644 --- a/databases/php56-mysqli/Makefile +++ b/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 a/databases/php56-odbc/Makefile b/databases/php56-odbc/Makefile index df644ab87af6..251318c2cd0a 100644 --- a/databases/php56-odbc/Makefile +++ b/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 a/databases/php56-pdo/Makefile b/databases/php56-pdo/Makefile index 744b440c3b41..892db0f88d24 100644 --- a/databases/php56-pdo/Makefile +++ b/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 a/databases/php56-pdo_dblib/Makefile b/databases/php56-pdo_dblib/Makefile index b6b042b92ecc..44210c7ce8c6 100644 --- a/databases/php56-pdo_dblib/Makefile +++ b/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 a/databases/php56-pdo_firebird/Makefile b/databases/php56-pdo_firebird/Makefile index d9d727bc9043..b1ffc489be6f 100644 --- a/databases/php56-pdo_firebird/Makefile +++ b/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 a/databases/php56-pdo_mysql/Makefile b/databases/php56-pdo_mysql/Makefile index 29e7a6040748..3871acaac89e 100644 --- a/databases/php56-pdo_mysql/Makefile +++ b/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 a/databases/php56-pdo_odbc/Makefile b/databases/php56-pdo_odbc/Makefile index 754565e6ad37..acafff6b6c45 100644 --- a/databases/php56-pdo_odbc/Makefile +++ b/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 a/databases/php56-pdo_pgsql/Makefile b/databases/php56-pdo_pgsql/Makefile index 4bd39db550b5..62e40309a706 100644 --- a/databases/php56-pdo_pgsql/Makefile +++ b/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 a/databases/php56-pdo_sqlite/Makefile b/databases/php56-pdo_sqlite/Makefile index 61af2bf32258..7c0be4935137 100644 --- a/databases/php56-pdo_sqlite/Makefile +++ b/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 a/databases/php56-pgsql/Makefile b/databases/php56-pgsql/Makefile index 3664f9d0e982..fd059021c14e 100644 --- a/databases/php56-pgsql/Makefile +++ b/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 a/databases/php56-redis/Makefile b/databases/php56-redis/Makefile index 4e45be427e60..0f564e2aef32 100644 --- a/databases/php56-redis/Makefile +++ b/databases/php56-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.8 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php56- diff --git a/databases/php56-sqlite3/Makefile b/databases/php56-sqlite3/Makefile index f1db0136fe5c..00b59a490f0d 100644 --- a/databases/php56-sqlite3/Makefile +++ b/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 a/databases/php56-sybase_ct/Makefile b/databases/php56-sybase_ct/Makefile index 1a3071676011..f9adb13e21a6 100644 --- a/databases/php56-sybase_ct/Makefile +++ b/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 a/databases/php70-dba/Makefile b/databases/php70-dba/Makefile index d330c3104c95..f7cf62da1b6d 100644 --- a/databases/php70-dba/Makefile +++ b/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 a/databases/php70-interbase/Makefile b/databases/php70-interbase/Makefile index 2c0aa00a486c..de8e15482ec7 100644 --- a/databases/php70-interbase/Makefile +++ b/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 a/databases/php70-mysqli/Makefile b/databases/php70-mysqli/Makefile index 5209eaeab888..cbc87ac02054 100644 --- a/databases/php70-mysqli/Makefile +++ b/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 a/databases/php70-odbc/Makefile b/databases/php70-odbc/Makefile index b84c23d9d678..f17ee403746a 100644 --- a/databases/php70-odbc/Makefile +++ b/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 a/databases/php70-pdo/Makefile b/databases/php70-pdo/Makefile index bc754645bb11..419be8f5b6d5 100644 --- a/databases/php70-pdo/Makefile +++ b/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 a/databases/php70-pdo_dblib/Makefile b/databases/php70-pdo_dblib/Makefile index 07819840243e..a4886c047e0c 100644 --- a/databases/php70-pdo_dblib/Makefile +++ b/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 a/databases/php70-pdo_firebird/Makefile b/databases/php70-pdo_firebird/Makefile index 21bda3ad7a35..3a0d4d932c1b 100644 --- a/databases/php70-pdo_firebird/Makefile +++ b/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 a/databases/php70-pdo_mysql/Makefile b/databases/php70-pdo_mysql/Makefile index daf1a199b932..d92fd88e989f 100644 --- a/databases/php70-pdo_mysql/Makefile +++ b/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 a/databases/php70-pdo_odbc/Makefile b/databases/php70-pdo_odbc/Makefile index c0a18286b2b7..5c1de8366f3a 100644 --- a/databases/php70-pdo_odbc/Makefile +++ b/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 a/databases/php70-pdo_pgsql/Makefile b/databases/php70-pdo_pgsql/Makefile index 95e23d156a2e..be4d0361a3e6 100644 --- a/databases/php70-pdo_pgsql/Makefile +++ b/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 a/databases/php70-pdo_sqlite/Makefile b/databases/php70-pdo_sqlite/Makefile index 709e3d52e341..9821748269e4 100644 --- a/databases/php70-pdo_sqlite/Makefile +++ b/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 a/databases/php70-pgsql/Makefile b/databases/php70-pgsql/Makefile index e61c9681fa64..339420729e25 100644 --- a/databases/php70-pgsql/Makefile +++ b/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 a/databases/php70-redis/Makefile b/databases/php70-redis/Makefile index e78e5b34b606..404c44f69b51 100644 --- a/databases/php70-redis/Makefile +++ b/databases/php70-redis/Makefile @@ -2,6 +2,7 @@ PORTNAME= redis PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php70- diff --git a/databases/php70-sqlite3/Makefile b/databases/php70-sqlite3/Makefile index 38f6b89d2080..e23c65cb927e 100644 --- a/databases/php70-sqlite3/Makefile +++ b/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 a/devel/ioncube/Makefile b/devel/ioncube/Makefile index 175e4b2bf2ac..d55953ad39f1 100644 --- a/devel/ioncube/Makefile +++ b/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 a/devel/ioncube/files/pkg-message.in b/devel/ioncube/files/pkg-message.in index 5bb7f4f2bd2d..d431bfd1ba4c 100644 --- a/devel/ioncube/files/pkg-message.in +++ b/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 a/devel/ioncube/pkg-plist b/devel/ioncube/pkg-plist index 98591e17a5ba..188863ce3056 100644 --- a/devel/ioncube/pkg-plist +++ b/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 a/devel/pecl-APCu/Makefile b/devel/pecl-APCu/Makefile index 6e42c3d093b4..ef475cba7cdb 100644 --- a/devel/pecl-APCu/Makefile +++ b/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 a/devel/pecl-automap/Makefile b/devel/pecl-automap/Makefile index 8428612883ea..875e654d2fed 100644 --- a/devel/pecl-automap/Makefile +++ b/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 a/devel/pecl-bbcode/Makefile b/devel/pecl-bbcode/Makefile index 1d5630f482dc..8e892d72eb30 100644 --- a/devel/pecl-bbcode/Makefile +++ b/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 a/devel/pecl-bcompiler/Makefile b/devel/pecl-bcompiler/Makefile index e0a85cd0c5b8..5bfc61dde82d 100644 --- a/devel/pecl-bcompiler/Makefile +++ b/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 a/devel/pecl-dio/Makefile b/devel/pecl-dio/Makefile index 55dad2ca644a..56a4a6a91b8e 100644 --- a/devel/pecl-dio/Makefile +++ b/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 a/devel/pecl-eio/Makefile b/devel/pecl-eio/Makefile index 804633f5074d..922550c958fb 100644 --- a/devel/pecl-eio/Makefile +++ b/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 a/devel/pecl-ev/Makefile b/devel/pecl-ev/Makefile index edee68255034..4974a53936dd 100644 --- a/devel/pecl-ev/Makefile +++ b/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 a/devel/pecl-event/Makefile b/devel/pecl-event/Makefile index e97ae45bec3e..47e049ec9cfe 100644 --- a/devel/pecl-event/Makefile +++ b/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 a/devel/pecl-expect/Makefile b/devel/pecl-expect/Makefile index af46ae03be49..7b278950096b 100644 --- a/devel/pecl-expect/Makefile +++ b/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 a/devel/pecl-gearman/Makefile b/devel/pecl-gearman/Makefile index ba9d4f0bdf6a..784df2a9bf22 100644 --- a/devel/pecl-gearman/Makefile +++ b/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 a/devel/pecl-hidef/Makefile b/devel/pecl-hidef/Makefile index 1a87f53338b9..6c759ddcd8b3 100644 --- a/devel/pecl-hidef/Makefile +++ b/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 a/devel/pecl-hrtime/Makefile b/devel/pecl-hrtime/Makefile index 6bc030f0475e..29d2022847f6 100644 --- a/devel/pecl-hrtime/Makefile +++ b/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 a/devel/pecl-htscanner/Makefile b/devel/pecl-htscanner/Makefile index 2aea47cd66f1..faf0e0d7731c 100644 --- a/devel/pecl-htscanner/Makefile +++ b/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 a/devel/pecl-inotify/Makefile b/devel/pecl-inotify/Makefile index d254daae417c..400b3bd66e5e 100644 --- a/devel/pecl-inotify/Makefile +++ b/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 a/devel/pecl-intl/Makefile b/devel/pecl-intl/Makefile index 15f9f4c85de9..324fe5a94570 100644 --- a/devel/pecl-intl/Makefile +++ b/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 a/devel/pecl-jsmin/Makefile b/devel/pecl-jsmin/Makefile index cee8df6f94d8..fee0d1df199b 100644 --- a/devel/pecl-jsmin/Makefile +++ b/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 a/devel/pecl-json_post/Makefile b/devel/pecl-json_post/Makefile index c2bfe63faabe..1b1232104852 100644 --- a/devel/pecl-json_post/Makefile +++ b/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 a/devel/pecl-jsonc/Makefile b/devel/pecl-jsonc/Makefile index b3c1cb45b24d..2e292272027a 100644 --- a/devel/pecl-jsonc/Makefile +++ b/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 a/devel/pecl-jsond/Makefile b/devel/pecl-jsond/Makefile index 435b3a4263f2..a5f6356f43a7 100644 --- a/devel/pecl-jsond/Makefile +++ b/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 a/devel/pecl-jsonnet/Makefile b/devel/pecl-jsonnet/Makefile index fb7967f839d5..0b576a9573ab 100644 --- a/devel/pecl-jsonnet/Makefile +++ b/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 a/devel/pecl-judy/Makefile b/devel/pecl-judy/Makefile index 3ee74502c9dd..3dca6e818d08 100644 --- a/devel/pecl-judy/Makefile +++ b/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 a/devel/pecl-libevent/Makefile b/devel/pecl-libevent/Makefile index adacde3ab84d..3598122f94ea 100644 --- a/devel/pecl-libevent/Makefile +++ b/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 a/devel/pecl-mcve/Makefile b/devel/pecl-mcve/Makefile index 02c53daa0cb1..63448baac74c 100644 --- a/devel/pecl-mcve/Makefile +++ b/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 a/devel/pecl-memoize/Makefile b/devel/pecl-memoize/Makefile index 4868a56a15c7..39a9bc6c8099 100644 --- a/devel/pecl-memoize/Makefile +++ b/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 a/devel/pecl-msgpack/Makefile b/devel/pecl-msgpack/Makefile index d36c5cf9b332..4e31103d25b5 100644 --- a/devel/pecl-msgpack/Makefile +++ b/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 a/devel/pecl-ncurses/Makefile b/devel/pecl-ncurses/Makefile index cfa0ce8f477c..70a270de55d9 100644 --- a/devel/pecl-ncurses/Makefile +++ b/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 a/devel/pecl-newt/Makefile b/devel/pecl-newt/Makefile index 2e79704bd5fa..92b0618b88e5 100644 --- a/devel/pecl-newt/Makefile +++ b/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 a/devel/pecl-operator/Makefile b/devel/pecl-operator/Makefile index c01e9ca2d2c9..9d1554a15157 100644 --- a/devel/pecl-operator/Makefile +++ b/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 a/devel/pecl-params/Makefile b/devel/pecl-params/Makefile index 5fa0fc18c1b6..0f4258915e08 100644 --- a/devel/pecl-params/Makefile +++ b/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 a/devel/pecl-parsekit/Makefile b/devel/pecl-parsekit/Makefile index bc1f9f5e744e..480e131fff68 100644 --- a/devel/pecl-parsekit/Makefile +++ b/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 a/devel/pecl-propro/Makefile b/devel/pecl-propro/Makefile index e2de5b1fff29..a425868c9cbd 100644 --- a/devel/pecl-propro/Makefile +++ b/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 a/devel/pecl-propro2/Makefile b/devel/pecl-propro2/Makefile index 0b361d07903a..de0021f6d352 100644 --- a/devel/pecl-propro2/Makefile +++ b/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 a/devel/pecl-pthreads/Makefile b/devel/pecl-pthreads/Makefile index 4ad8dcb1e6c9..cba22b184c03 100644 --- a/devel/pecl-pthreads/Makefile +++ b/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 a/devel/pecl-qb/Makefile b/devel/pecl-qb/Makefile index 9b591c782a4b..3a0b034d8b18 100644 --- a/devel/pecl-qb/Makefile +++ b/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 a/devel/pecl-raphf/Makefile b/devel/pecl-raphf/Makefile index 8ef2b62c625a..e47040933bfa 100644 --- a/devel/pecl-raphf/Makefile +++ b/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 a/devel/pecl-raphf2/Makefile b/devel/pecl-raphf2/Makefile index 74c077982cf0..54c55f11aa17 100644 --- a/devel/pecl-raphf2/Makefile +++ b/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 a/devel/pecl-runkit/Makefile b/devel/pecl-runkit/Makefile index 9654f7f41600..03e1f3cf566c 100644 --- a/devel/pecl-runkit/Makefile +++ b/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 a/devel/pecl-scream/Makefile b/devel/pecl-scream/Makefile index df839a81c3ee..9760c0445790 100644 --- a/devel/pecl-scream/Makefile +++ b/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 a/devel/pecl-shape/Makefile b/devel/pecl-shape/Makefile index c8ceea3c4b3e..a48758e393e8 100644 --- a/devel/pecl-shape/Makefile +++ b/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 a/devel/pecl-spl_types/Makefile b/devel/pecl-spl_types/Makefile index 4cdae4123272..1e90b2626813 100644 --- a/devel/pecl-spl_types/Makefile +++ b/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 a/devel/pecl-spread/Makefile b/devel/pecl-spread/Makefile index ddf31c82e3a0..2f10c1106b33 100644 --- a/devel/pecl-spread/Makefile +++ b/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 a/devel/pecl-statgrab/Makefile b/devel/pecl-statgrab/Makefile index 68439ff3ef86..97482974c8f1 100644 --- a/devel/pecl-statgrab/Makefile +++ b/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 a/devel/pecl-strict/Makefile b/devel/pecl-strict/Makefile index ecd1e07c4762..c0bd3c890a8a 100644 --- a/devel/pecl-strict/Makefile +++ b/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 a/devel/pecl-svn/Makefile b/devel/pecl-svn/Makefile index b3a398e065e8..f644c6dd4f43 100644 --- a/devel/pecl-svn/Makefile +++ b/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 a/devel/pecl-swoole/Makefile b/devel/pecl-swoole/Makefile index d341d9658c52..4ea0e81da583 100644 --- a/devel/pecl-swoole/Makefile +++ b/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 a/devel/pecl-sync/Makefile b/devel/pecl-sync/Makefile index dcb846489810..80555414febb 100644 --- a/devel/pecl-sync/Makefile +++ b/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 a/devel/pecl-test_helpers/Makefile b/devel/pecl-test_helpers/Makefile index d5c8b09c2898..3e767d82ca90 100644 --- a/devel/pecl-test_helpers/Makefile +++ b/devel/pecl-test_helpers/Makefile @@ -3,7 +3,7 @@ PORTNAME= test_helpers PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pear.phpunit.de/get/ PKGNAMEPREFIX= pecl- @@ -14,8 +14,10 @@ COMMENT= Extension to ease testing of PHP code LICENSE= BSD3CLAUSE CONFIGURE_ARGS= --enable-test-helpers -USES= php:ext tar:tgz +USES= php:zend tar:tgz SUB_FILES= pkg-message IGNORE_WITH_PHP= 70 +# This needs to be loaded *after* devel/php-xdebug +PHP_MOD_PRIO= 30 .include <bsd.port.mk> diff --git a/devel/pecl-test_helpers/files/pkg-message.in b/devel/pecl-test_helpers/files/pkg-message.in index 80b6eec9c8c2..c74134f9ea14 100644 --- a/devel/pecl-test_helpers/files/pkg-message.in +++ b/devel/pecl-test_helpers/files/pkg-message.in @@ -1,20 +1,7 @@ ***************************************************************************** The php extension 'test_helpers' has been installed successful. -Add a line containing - extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so - -or - - zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so - -If this extension is used in combination with other extensions, such as Xdebug, -which are also overloading the `ZEND_NEW` opcode you have to load it as -`zend_extension` after loading the conflicting extension. This can be done in -your `php.ini` like this: - - zend_extension=xdebug.so - zend_extension=test-helpers.so +It has been automatically activated. Please refer to `phpinfo()` to verify whether a conflict was detected and whether the work-around was enabled. diff --git a/devel/pecl-trace/Makefile b/devel/pecl-trace/Makefile index bd1df839209f..cafdde0d7173 100644 --- a/devel/pecl-trace/Makefile +++ b/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 a/devel/pecl-uopz/Makefile b/devel/pecl-uopz/Makefile index 6b6c2bb335fc..4873e7f6e03a 100644 --- a/devel/pecl-uopz/Makefile +++ b/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 a/devel/pecl-uploadprogress/Makefile b/devel/pecl-uploadprogress/Makefile index e2ad4eee07ed..dc637a603aea 100644 --- a/devel/pecl-uploadprogress/Makefile +++ b/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 a/devel/pecl-uri_template/Makefile b/devel/pecl-uri_template/Makefile index 404498285d53..0875497dbc50 100644 --- a/devel/pecl-uri_template/Makefile +++ b/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 a/devel/pecl-uuid/Makefile b/devel/pecl-uuid/Makefile index 00858d5fd3e8..73ba4072ad2a 100644 --- a/devel/pecl-uuid/Makefile +++ b/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 a/devel/pecl-vld/Makefile b/devel/pecl-vld/Makefile index 49ef266a5915..e79422e95fc0 100644 --- a/devel/pecl-vld/Makefile +++ b/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 a/devel/pecl-weakref/Makefile b/devel/pecl-weakref/Makefile index 25dd938c13cc..c2f87309f14a 100644 --- a/devel/pecl-weakref/Makefile +++ b/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 a/devel/pecl-xhprof/Makefile b/devel/pecl-xhprof/Makefile index ff78060d8aa2..3b9afd5572ea 100644 --- a/devel/pecl-xhprof/Makefile +++ b/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 a/devel/pecl-yac/Makefile b/devel/pecl-yac/Makefile index 21b7d57537c4..73e93cef465b 100644 --- a/devel/pecl-yac/Makefile +++ b/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 a/devel/pecl-zookeeper/Makefile b/devel/pecl-zookeeper/Makefile index 37a6a6306f1f..4ee76a379db9 100644 --- a/devel/pecl-zookeeper/Makefile +++ b/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 a/devel/php-jq/Makefile b/devel/php-jq/Makefile index a5f8ff314678..8ff4c1d7d517 100644 --- a/devel/php-jq/Makefile +++ b/devel/php-jq/Makefile @@ -3,6 +3,7 @@ PORTNAME= jq PORTVERSION= 0.0.1 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- diff --git a/devel/php-maxminddb/Makefile b/devel/php-maxminddb/Makefile index e4f703cdb694..941e62a71b86 100644 --- a/devel/php-maxminddb/Makefile +++ b/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 a/devel/php-memoize/Makefile b/devel/php-memoize/Makefile index c5a0968cbb88..cc9f3f049e8e 100644 --- a/devel/php-memoize/Makefile +++ b/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 a/devel/php-scalar_objects/Makefile b/devel/php-scalar_objects/Makefile index efd547433ad5..884f51c1eda9 100644 --- a/devel/php-scalar_objects/Makefile +++ b/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 a/devel/php-uprofiler/Makefile b/devel/php-uprofiler/Makefile index e3e3987cba41..53b7951c407d 100644 --- a/devel/php-uprofiler/Makefile +++ b/devel/php-uprofiler/Makefile @@ -3,6 +3,7 @@ PORTNAME= uprofiler PORTVERSION= 0.11.0.20150219 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- diff --git a/devel/php-xdebug/Makefile b/devel/php-xdebug/Makefile index c6a29af0bae1..0842deab920b 100644 --- a/devel/php-xdebug/Makefile +++ b/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 a/devel/php-xdebug/files/pkg-message.in b/devel/php-xdebug/files/pkg-message.in index 40b8ca11dcb6..d3960b2f56f2 100644 --- a/devel/php-xdebug/files/pkg-message.in +++ b/devel/php-xdebug/files/pkg-message.in @@ -1,17 +1,11 @@ ***************************************************************************** The php debugger 'xdebug' has been installed successful. -Add a line containing - extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so +It has been automatically enabled. -or - - zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so - -to your php.ini to load it. xdebug is not compatible with the extension -'Zend Optimizer' - you're only able to use one of them. So take care having -at least the lesser required extension disabled by commenting out it's -loader line in your php.ini. +xdebug is not compatible with the extension 'Zend Optimizer' - you're only able +to use one of them. So take care having at least the lesser required extension +disabled by commenting out it's loader line in its %%PREFIX%%/etc/php/ext-* file. Add following section to enable profiling: diff --git a/devel/php5-blitz-devel/Makefile b/devel/php5-blitz-devel/Makefile index a6df4733b523..431beed6a940 100644 --- a/devel/php5-blitz-devel/Makefile +++ b/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 a/devel/php5-blitz/Makefile b/devel/php5-blitz/Makefile index c9c5bc4ba02c..810a38b888b1 100644 --- a/devel/php5-blitz/Makefile +++ b/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 a/devel/php5-dav/Makefile b/devel/php5-dav/Makefile index 86a2b58f4076..70911cb32a47 100644 --- a/devel/php5-dav/Makefile +++ b/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 a/devel/php5-ice/Makefile b/devel/php5-ice/Makefile index 77640f0944fe..9b4eacbe48be 100644 --- a/devel/php5-ice/Makefile +++ b/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 a/devel/php5-ice/pkg-plist b/devel/php5-ice/pkg-plist index 570fe990a62e..58f023e11e6b 100644 --- a/devel/php5-ice/pkg-plist +++ b/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 a/devel/php5-msgpack/Makefile b/devel/php5-msgpack/Makefile index 2819ac5626c3..a5d9cfce98e8 100644 --- a/devel/php5-msgpack/Makefile +++ b/devel/php5-msgpack/Makefile @@ -3,6 +3,7 @@ PORTNAME= msgpack PORTVERSION= 2012.05.05 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php5- diff --git a/devel/php5-pinba/Makefile b/devel/php5-pinba/Makefile index 4965dcfdeacb..56fc2a821446 100644 --- a/devel/php5-pinba/Makefile +++ b/devel/php5-pinba/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinba PORTVERSION= 2012.03.20 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= php5- diff --git a/devel/php5-thrift/Makefile b/devel/php5-thrift/Makefile index 83e3e0910711..e705b3a568bb 100644 --- a/devel/php5-thrift/Makefile +++ b/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 a/devel/php55-gettext/Makefile b/devel/php55-gettext/Makefile index b759d61a398d..a75445d4c502 100644 --- a/devel/php55-gettext/Makefile +++ b/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 a/devel/php55-json/Makefile b/devel/php55-json/Makefile index 8c52ee45170f..4dca3666171a 100644 --- a/devel/php55-json/Makefile +++ b/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 a/devel/php55-pcntl/Makefile b/devel/php55-pcntl/Makefile index 8bc2847f0d62..9c1e35d6a1af 100644 --- a/devel/php55-pcntl/Makefile +++ b/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 a/devel/php55-readline/Makefile b/devel/php55-readline/Makefile index e2b6417d3224..b28b6d03e53b 100644 --- a/devel/php55-readline/Makefile +++ b/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 a/devel/php55-shmop/Makefile b/devel/php55-shmop/Makefile index 59a106243a64..727944be71cf 100644 --- a/devel/php55-shmop/Makefile +++ b/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 a/devel/php55-sysvmsg/Makefile b/devel/php55-sysvmsg/Makefile index a3ea35125f18..5717934378ca 100644 --- a/devel/php55-sysvmsg/Makefile +++ b/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 a/devel/php55-sysvsem/Makefile b/devel/php55-sysvsem/Makefile index 678b6b58780b..31076a3f8008 100644 --- a/devel/php55-sysvsem/Makefile +++ b/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 a/devel/php55-sysvshm/Makefile b/devel/php55-sysvshm/Makefile index 198aed43ed07..8b0f7c50cbc0 100644 --- a/devel/php55-sysvshm/Makefile +++ b/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 a/devel/php55-tokenizer/Makefile b/devel/php55-tokenizer/Makefile index b8c65762fc89..530e7071f029 100644 --- a/devel/php55-tokenizer/Makefile +++ b/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 a/devel/php56-gettext/Makefile b/devel/php56-gettext/Makefile index 81c6411df45c..8ec61862934a 100644 --- a/devel/php56-gettext/Makefile +++ b/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 a/devel/php56-json/Makefile b/devel/php56-json/Makefile index 3a93d4b7b0b0..f34c43a5fd87 100644 --- a/devel/php56-json/Makefile +++ b/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 a/devel/php56-pcntl/Makefile b/devel/php56-pcntl/Makefile index 5039ad10a1be..dfb6d371e3d0 100644 --- a/devel/php56-pcntl/Makefile +++ b/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 a/devel/php56-readline/Makefile b/devel/php56-readline/Makefile index f60893571692..ad51763c8d8a 100644 --- a/devel/php56-readline/Makefile +++ b/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 a/devel/php56-shmop/Makefile b/devel/php56-shmop/Makefile index f0e90e8b7d67..038c3b56f04f 100644 --- a/devel/php56-shmop/Makefile +++ b/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 a/devel/php56-sysvmsg/Makefile b/devel/php56-sysvmsg/Makefile index 2b2c27c0282e..9139629a3833 100644 --- a/devel/php56-sysvmsg/Makefile +++ b/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 a/devel/php56-sysvsem/Makefile b/devel/php56-sysvsem/Makefile index 06cdd72bd3d9..f25ee06db5bd 100644 --- a/devel/php56-sysvsem/Makefile +++ b/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 a/devel/php56-sysvshm/Makefile b/devel/php56-sysvshm/Makefile index fa8d46132875..8c23d0a7c0d4 100644 --- a/devel/php56-sysvshm/Makefile +++ b/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 a/devel/php56-tokenizer/Makefile b/devel/php56-tokenizer/Makefile index 9d48e6757f7d..a9bb2a9807d2 100644 --- a/devel/php56-tokenizer/Makefile +++ b/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 a/devel/php70-gettext/Makefile b/devel/php70-gettext/Makefile index 9d558beeaffd..fb43e9c270d7 100644 --- a/devel/php70-gettext/Makefile +++ b/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 a/devel/php70-intl/Makefile b/devel/php70-intl/Makefile index f8a572ceb788..fa96ef953672 100644 --- a/devel/php70-intl/Makefile +++ b/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 a/devel/php70-json/Makefile b/devel/php70-json/Makefile index c796d6618727..016e110ef881 100644 --- a/devel/php70-json/Makefile +++ b/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 a/devel/php70-pcntl/Makefile b/devel/php70-pcntl/Makefile index 88849b57c2c5..d22be2bbf9a2 100644 --- a/devel/php70-pcntl/Makefile +++ b/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 a/devel/php70-readline/Makefile b/devel/php70-readline/Makefile index 72efa2395e67..4fb5212936cf 100644 --- a/devel/php70-readline/Makefile +++ b/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 a/devel/php70-shmop/Makefile b/devel/php70-shmop/Makefile index b4039dc94582..74111c42ce65 100644 --- a/devel/php70-shmop/Makefile +++ b/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 a/devel/php70-sysvmsg/Makefile b/devel/php70-sysvmsg/Makefile index 36a827cb48ed..2d59c2b05708 100644 --- a/devel/php70-sysvmsg/Makefile +++ b/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 a/devel/php70-sysvsem/Makefile b/devel/php70-sysvsem/Makefile index 92c9b46fe47c..eb18af875b02 100644 --- a/devel/php70-sysvsem/Makefile +++ b/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 a/devel/php70-sysvshm/Makefile b/devel/php70-sysvshm/Makefile index b6ec845a8084..7a232c5742e6 100644 --- a/devel/php70-sysvshm/Makefile +++ b/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 a/devel/php70-tokenizer/Makefile b/devel/php70-tokenizer/Makefile index 9a4351c978b3..622760008773 100644 --- a/devel/php70-tokenizer/Makefile +++ b/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 a/finance/php-tclink/Makefile b/finance/php-tclink/Makefile index 7417dce5fdbc..1a8f50b12af3 100644 --- a/finance/php-tclink/Makefile +++ b/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 a/ftp/php55-curl/Makefile b/ftp/php55-curl/Makefile index 6b9199c38170..2beb18d4320b 100644 --- a/ftp/php55-curl/Makefile +++ b/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 a/ftp/php55-ftp/Makefile b/ftp/php55-ftp/Makefile index 6b0b1f1c0caa..90faf0766c6c 100644 --- a/ftp/php55-ftp/Makefile +++ b/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 a/ftp/php56-curl/Makefile b/ftp/php56-curl/Makefile index ec356c2b0428..d5f3c5d4e6c2 100644 --- a/ftp/php56-curl/Makefile +++ b/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 a/ftp/php56-ftp/Makefile b/ftp/php56-ftp/Makefile index e0f3d951182e..fa7dfc39c9c6 100644 --- a/ftp/php56-ftp/Makefile +++ b/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 a/ftp/php70-curl/Makefile b/ftp/php70-curl/Makefile index 2c359ab82aca..54804bb69e9d 100644 --- a/ftp/php70-curl/Makefile +++ b/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 a/ftp/php70-ftp/Makefile b/ftp/php70-ftp/Makefile index 300d5b187c92..b80311615990 100644 --- a/ftp/php70-ftp/Makefile +++ b/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 a/graphics/mapserver/Makefile b/graphics/mapserver/Makefile index bf55fc1fee75..82929e1451ab 100644 --- a/graphics/mapserver/Makefile +++ b/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 a/graphics/mapserver/pkg-plist b/graphics/mapserver/pkg-plist index 85d35e2ad67a..2a5cc2634d16 100644 --- a/graphics/mapserver/pkg-plist +++ b/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 a/graphics/pecl-gmagick/Makefile b/graphics/pecl-gmagick/Makefile index 8f3e82b87d30..b52e100fc6c3 100644 --- a/graphics/pecl-gmagick/Makefile +++ b/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 a/graphics/pecl-imagick/Makefile b/graphics/pecl-imagick/Makefile index 5d4f8b5a909a..0058df3b1ad6 100644 --- a/graphics/pecl-imagick/Makefile +++ b/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 a/graphics/pecl-imlib2/Makefile b/graphics/pecl-imlib2/Makefile index d9e09ba61d51..cab4f99374c3 100644 --- a/graphics/pecl-imlib2/Makefile +++ b/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 a/graphics/pecl-qrencode/Makefile b/graphics/pecl-qrencode/Makefile index 43ccb3f589a5..7c2585d0a6a2 100644 --- a/graphics/pecl-qrencode/Makefile +++ b/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 a/graphics/php-facedetect/Makefile b/graphics/php-facedetect/Makefile index 94e41925f140..9555fb4371c0 100644 --- a/graphics/php-facedetect/Makefile +++ b/graphics/php-facedetect/Makefile @@ -3,7 +3,7 @@ PORTNAME= facedetect PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PKGNAMEPREFIX= php- diff --git a/graphics/php-libpuzzle/Makefile b/graphics/php-libpuzzle/Makefile index 2f0539e4e143..13d919081cf6 100644 --- a/graphics/php-libpuzzle/Makefile +++ b/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 a/graphics/php-magickwand/Makefile b/graphics/php-magickwand/Makefile index 9ce390db7d7c..fe68fddf085b 100644 --- a/graphics/php-magickwand/Makefile +++ b/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 a/graphics/php5-ffmpeg/Makefile b/graphics/php5-ffmpeg/Makefile index 84572d0179fe..e5da53e5c03f 100644 --- a/graphics/php5-ffmpeg/Makefile +++ b/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 a/graphics/php55-exif/Makefile b/graphics/php55-exif/Makefile index 347a55693c95..6b479d4b9a6d 100644 --- a/graphics/php55-exif/Makefile +++ b/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 a/graphics/php55-gd/Makefile b/graphics/php55-gd/Makefile index 6d549ce17dce..624b80b64de9 100644 --- a/graphics/php55-gd/Makefile +++ b/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 a/graphics/php56-exif/Makefile b/graphics/php56-exif/Makefile index 13a6387c6997..bd9f998ffde9 100644 --- a/graphics/php56-exif/Makefile +++ b/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 a/graphics/php56-gd/Makefile b/graphics/php56-gd/Makefile index 4746215748f7..4979a92bb137 100644 --- a/graphics/php56-gd/Makefile +++ b/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 a/graphics/php70-exif/Makefile b/graphics/php70-exif/Makefile index b82d12848cce..7aa6b34ccf6f 100644 --- a/graphics/php70-exif/Makefile +++ b/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 a/graphics/php70-gd/Makefile b/graphics/php70-gd/Makefile index 53aff8871d6e..f42efd1f9ce7 100644 --- a/graphics/php70-gd/Makefile +++ b/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 a/japanese/php5-mecab/Makefile b/japanese/php5-mecab/Makefile index 45ba21d8a5c9..7aeadd10e264 100644 --- a/japanese/php5-mecab/Makefile +++ b/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 a/lang/pecl-perl/Makefile b/lang/pecl-perl/Makefile index aadb93c29853..4900f937f633 100644 --- a/lang/pecl-perl/Makefile +++ b/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 a/lang/php55/Makefile b/lang/php55/Makefile index 442629b1f5f6..483a87bc2428 100644 --- a/lang/php55/Makefile +++ b/lang/php55/Makefile @@ -3,7 +3,7 @@ PORTNAME= php55 PORTVERSION= 5.5.38 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} diff --git a/lang/php55/Makefile.ext b/lang/php55/Makefile.ext index 94d9d683c75a..8c7a1f9870be 100644 --- a/lang/php55/Makefile.ext +++ b/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 a/lang/php56/Makefile b/lang/php56/Makefile index f8417f3f11e4..530fe94ca82f 100644 --- a/lang/php56/Makefile +++ b/lang/php56/Makefile @@ -3,7 +3,7 @@ PORTNAME= php56 PORTVERSION= 5.6.24 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} diff --git a/lang/php56/Makefile.ext b/lang/php56/Makefile.ext index 9a7942269e45..71c196bd0502 100644 --- a/lang/php56/Makefile.ext +++ b/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 a/lang/php70/Makefile b/lang/php70/Makefile index f05a6c44220b..bff5436219fa 100644 --- a/lang/php70/Makefile +++ b/lang/php70/Makefile @@ -3,6 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.9 +PORTREVISION?= 2 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} diff --git a/lang/php70/Makefile.ext b/lang/php70/Makefile.ext index aa3d3c58977b..42f34ec282a3 100644 --- a/lang/php70/Makefile.ext +++ b/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 a/mail/pecl-esmtp/Makefile b/mail/pecl-esmtp/Makefile index 1b8e398d7926..57231313c7d5 100644 --- a/mail/pecl-esmtp/Makefile +++ b/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 a/mail/pecl-mailparse/Makefile b/mail/pecl-mailparse/Makefile index 18d2a7a309e0..d3434a6bc602 100644 --- a/mail/pecl-mailparse/Makefile +++ b/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 a/mail/pecl-pop3/Makefile b/mail/pecl-pop3/Makefile index e9f6a2b0a4d6..7deea3e20460 100644 --- a/mail/pecl-pop3/Makefile +++ b/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 a/mail/php55-imap/Makefile b/mail/php55-imap/Makefile index bcfe09c05117..c83045d566dc 100644 --- a/mail/php55-imap/Makefile +++ b/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 a/mail/php56-imap/Makefile b/mail/php56-imap/Makefile index fb2e5394f3e0..20b5d23254a1 100644 --- a/mail/php56-imap/Makefile +++ b/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 a/mail/php70-imap/Makefile b/mail/php70-imap/Makefile index 4130d5ca6e51..38b476e6e9ac 100644 --- a/mail/php70-imap/Makefile +++ b/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 a/math/pecl-big_int/Makefile b/math/pecl-big_int/Makefile index 307e8ebad873..ddb86c9debb6 100644 --- a/math/pecl-big_int/Makefile +++ b/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 a/math/pecl-bitset/Makefile b/math/pecl-bitset/Makefile index 276400bb4533..2d6b2ae2d357 100644 --- a/math/pecl-bitset/Makefile +++ b/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 a/math/pecl-bitset2/Makefile b/math/pecl-bitset2/Makefile index 3b3917873e3f..3d8678924a31 100644 --- a/math/pecl-bitset2/Makefile +++ b/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 a/math/pecl-stats/Makefile b/math/pecl-stats/Makefile index c6af40b315f3..092f76b8855d 100644 --- a/math/pecl-stats/Makefile +++ b/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 a/math/pecl-trader/Makefile b/math/pecl-trader/Makefile index 40d970716f66..3187ac6be655 100644 --- a/math/pecl-trader/Makefile +++ b/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 a/math/php55-bcmath/Makefile b/math/php55-bcmath/Makefile index 1a8ee3677c61..e1be3745225a 100644 --- a/math/php55-bcmath/Makefile +++ b/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 a/math/php55-gmp/Makefile b/math/php55-gmp/Makefile index 27f1d3937947..edf6c3bb3ac3 100644 --- a/math/php55-gmp/Makefile +++ b/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 a/math/php56-bcmath/Makefile b/math/php56-bcmath/Makefile index 2aed659fa7c3..ac2a3c020e71 100644 --- a/math/php56-bcmath/Makefile +++ b/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 a/math/php56-gmp/Makefile b/math/php56-gmp/Makefile index 6950f80f0203..0057177461ec 100644 --- a/math/php56-gmp/Makefile +++ b/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 a/math/php70-bcmath/Makefile b/math/php70-bcmath/Makefile index df8efcbe01e4..24961d035e94 100644 --- a/math/php70-bcmath/Makefile +++ b/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 a/math/php70-gmp/Makefile b/math/php70-gmp/Makefile index a78563035558..19e33edad2b3 100644 --- a/math/php70-gmp/Makefile +++ b/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 a/misc/pecl-timezonedb/Makefile b/misc/pecl-timezonedb/Makefile index 0b5bec12a0d3..34657c477d9e 100644 --- a/misc/pecl-timezonedb/Makefile +++ b/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 a/misc/php55-calendar/Makefile b/misc/php55-calendar/Makefile index 6a9ff2809e68..cad03f8c1d61 100644 --- a/misc/php55-calendar/Makefile +++ b/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 a/misc/php56-calendar/Makefile b/misc/php56-calendar/Makefile index 939eaa89c77d..5c94bd30f8a5 100644 --- a/misc/php56-calendar/Makefile +++ b/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 a/misc/php70-calendar/Makefile b/misc/php70-calendar/Makefile index 2d8656e28ecb..12a979b5c50a 100644 --- a/misc/php70-calendar/Makefile +++ b/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 a/multimedia/php-pHash/Makefile b/multimedia/php-pHash/Makefile index 4540c372bdb7..16914feb4d5a 100644 --- a/multimedia/php-pHash/Makefile +++ b/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 a/net-im/pecl-stomp/Makefile b/net-im/pecl-stomp/Makefile index 17405eb986b2..1ca5a6950426 100644 --- a/net-im/pecl-stomp/Makefile +++ b/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 a/net-mgmt/php55-snmp/Makefile b/net-mgmt/php55-snmp/Makefile index 26f81c3ee4e0..d1e800778932 100644 --- a/net-mgmt/php55-snmp/Makefile +++ b/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 a/net-mgmt/php56-snmp/Makefile b/net-mgmt/php56-snmp/Makefile index 0c19efed1357..f90870c40b22 100644 --- a/net-mgmt/php56-snmp/Makefile +++ b/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 a/net-mgmt/php70-snmp/Makefile b/net-mgmt/php70-snmp/Makefile index 36711d739765..72455e31f58f 100644 --- a/net-mgmt/php70-snmp/Makefile +++ b/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 a/net/pecl-amqp/Makefile b/net/pecl-amqp/Makefile index 9409e502a779..b6a121eeb985 100644 --- a/net/pecl-amqp/Makefile +++ b/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 a/net/pecl-apn/Makefile b/net/pecl-apn/Makefile index de4291fc3cc2..1e4a1e70b387 100644 --- a/net/pecl-apn/Makefile +++ b/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 a/net/pecl-cvsclient/Makefile b/net/pecl-cvsclient/Makefile index 02baa86c9ff2..9de498cbf0e5 100644 --- a/net/pecl-cvsclient/Makefile +++ b/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 a/net/pecl-geoip/Makefile b/net/pecl-geoip/Makefile index 53c0d6d6e8b2..a2b87e7dcb78 100644 --- a/net/pecl-geoip/Makefile +++ b/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 a/net/pecl-gupnp/Makefile b/net/pecl-gupnp/Makefile index 29916277ff3e..1a3e3a38f185 100644 --- a/net/pecl-gupnp/Makefile +++ b/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 a/net/pecl-ip2location/Makefile b/net/pecl-ip2location/Makefile index 4d6af9c219ac..19dcaefbaffd 100644 --- a/net/pecl-ip2location/Makefile +++ b/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 a/net/pecl-mosquitto/Makefile b/net/pecl-mosquitto/Makefile index 6f35570a7890..a92f0851069e 100644 --- a/net/pecl-mosquitto/Makefile +++ b/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 a/net/pecl-oauth/Makefile b/net/pecl-oauth/Makefile index e9327822ee92..b73f4746e3f4 100644 --- a/net/pecl-oauth/Makefile +++ b/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 a/net/pecl-radius/Makefile b/net/pecl-radius/Makefile index 22e8c51f95cd..6694285aaea5 100644 --- a/net/pecl-radius/Makefile +++ b/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 a/net/pecl-smbclient/Makefile b/net/pecl-smbclient/Makefile index 05783dc9caaf..47ceb8b53c98 100644 --- a/net/pecl-smbclient/Makefile +++ b/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 a/net/pecl-yaz/Makefile b/net/pecl-yaz/Makefile index 92f8433c1863..9ff21b0644d4 100644 --- a/net/pecl-yaz/Makefile +++ b/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 a/net/pecl-yp/Makefile b/net/pecl-yp/Makefile index db620b13a19f..cdf86b582426 100644 --- a/net/pecl-yp/Makefile +++ b/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 a/net/pecl-zmq/Makefile b/net/pecl-zmq/Makefile index d48f80acdca4..1fcbe3362ee9 100644 --- a/net/pecl-zmq/Makefile +++ b/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 a/net/php55-ldap/Makefile b/net/php55-ldap/Makefile index 784bef55a0f0..a6b3e6c78f24 100644 --- a/net/php55-ldap/Makefile +++ b/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 a/net/php55-soap/Makefile b/net/php55-soap/Makefile index b1b99a19d47c..814c3d56f1d5 100644 --- a/net/php55-soap/Makefile +++ b/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 a/net/php55-sockets/Makefile b/net/php55-sockets/Makefile index 7ea541d8a959..f16527d8c218 100644 --- a/net/php55-sockets/Makefile +++ b/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 a/net/php55-xmlrpc/Makefile b/net/php55-xmlrpc/Makefile index 170db7b5e3a1..271cf49e3817 100644 --- a/net/php55-xmlrpc/Makefile +++ b/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 a/net/php56-ldap/Makefile b/net/php56-ldap/Makefile index 6cb9fe54829a..f83eba854058 100644 --- a/net/php56-ldap/Makefile +++ b/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 a/net/php56-soap/Makefile b/net/php56-soap/Makefile index a59fbfaf74bb..15296c87dbe2 100644 --- a/net/php56-soap/Makefile +++ b/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 a/net/php56-sockets/Makefile b/net/php56-sockets/Makefile index ecac83f4eebb..5179f5d84522 100644 --- a/net/php56-sockets/Makefile +++ b/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 a/net/php56-xmlrpc/Makefile b/net/php56-xmlrpc/Makefile index e28b875d0973..e94337445981 100644 --- a/net/php56-xmlrpc/Makefile +++ b/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 a/net/php70-ldap/Makefile b/net/php70-ldap/Makefile index a268d1cbea1d..7198921576f2 100644 --- a/net/php70-ldap/Makefile +++ b/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 a/net/php70-soap/Makefile b/net/php70-soap/Makefile index 1424930d27b7..2010a44c3c82 100644 --- a/net/php70-soap/Makefile +++ b/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 a/net/php70-sockets/Makefile b/net/php70-sockets/Makefile index 4afc3bfe9b47..ed13af64d79e 100644 --- a/net/php70-sockets/Makefile +++ b/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 a/net/php70-xmlrpc/Makefile b/net/php70-xmlrpc/Makefile index 6faf6dac4808..55a408c14328 100644 --- a/net/php70-xmlrpc/Makefile +++ b/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 a/print/pecl-haru/Makefile b/print/pecl-haru/Makefile index 5d58e4df3f5c..529061d6b724 100644 --- a/print/pecl-haru/Makefile +++ b/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 a/print/pecl-pdflib/Makefile b/print/pecl-pdflib/Makefile index c5dfd026da3c..9dd4d4f4fb0a 100644 --- a/print/pecl-pdflib/Makefile +++ b/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 a/print/pecl-ps/Makefile b/print/pecl-ps/Makefile index 1a7257a6d2ab..53a02a2e8d8e 100644 --- a/print/pecl-ps/Makefile +++ b/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 a/security/pecl-crack/Makefile b/security/pecl-crack/Makefile index 9dc3e3cfa173..fccf10656fc2 100644 --- a/security/pecl-crack/Makefile +++ b/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 a/security/pecl-crypto/Makefile b/security/pecl-crypto/Makefile index af467bff4702..1aba80ceed28 100644 --- a/security/pecl-crypto/Makefile +++ b/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 a/security/pecl-gnupg/Makefile b/security/pecl-gnupg/Makefile index 14118f48c31b..4d1de82ef476 100644 --- a/security/pecl-gnupg/Makefile +++ b/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 a/security/pecl-pam/Makefile b/security/pecl-pam/Makefile index 035bec7dfc3e..fc236085ff6b 100644 --- a/security/pecl-pam/Makefile +++ b/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 a/security/pecl-scrypt/Makefile b/security/pecl-scrypt/Makefile index 5ce13192f4d0..ac2cf755d7d3 100644 --- a/security/pecl-scrypt/Makefile +++ b/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 a/security/pecl-ssh2/Makefile b/security/pecl-ssh2/Makefile index bca106965982..731d2231476d 100644 --- a/security/pecl-ssh2/Makefile +++ b/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 a/security/pecl-tcpwrap/Makefile b/security/pecl-tcpwrap/Makefile index 448f6ed1c42a..213ee4b53f5b 100644 --- a/security/pecl-tcpwrap/Makefile +++ b/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 a/security/php-suhosin/Makefile b/security/php-suhosin/Makefile index b5a9522f336d..ade9e92916f8 100644 --- a/security/php-suhosin/Makefile +++ b/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 a/security/php55-filter/Makefile b/security/php55-filter/Makefile index 61f0a4121181..1a3515ef9036 100644 --- a/security/php55-filter/Makefile +++ b/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 a/security/php55-hash/Makefile b/security/php55-hash/Makefile index 16ce618475f4..cb4b9c9cd137 100644 --- a/security/php55-hash/Makefile +++ b/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 a/security/php55-mcrypt/Makefile b/security/php55-mcrypt/Makefile index be47403f2d36..0d6e8a523525 100644 --- a/security/php55-mcrypt/Makefile +++ b/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 a/security/php55-openssl/Makefile b/security/php55-openssl/Makefile index c663223c4eab..0e4b3d6d4393 100644 --- a/security/php55-openssl/Makefile +++ b/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 a/security/php56-filter/Makefile b/security/php56-filter/Makefile index f15158b0dadf..528d4bb5caf4 100644 --- a/security/php56-filter/Makefile +++ b/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 a/security/php56-hash/Makefile b/security/php56-hash/Makefile index e5e83e776f1d..c899d10d5a01 100644 --- a/security/php56-hash/Makefile +++ b/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 a/security/php56-mcrypt/Makefile b/security/php56-mcrypt/Makefile index babb042a389f..9ce481f4ab8f 100644 --- a/security/php56-mcrypt/Makefile +++ b/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 a/security/php56-openssl/Makefile b/security/php56-openssl/Makefile index 66530318ade6..2811e5e258c7 100644 --- a/security/php56-openssl/Makefile +++ b/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 a/security/php70-filter/Makefile b/security/php70-filter/Makefile index ccb288794c5e..c00b35c22e94 100644 --- a/security/php70-filter/Makefile +++ b/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 a/security/php70-hash/Makefile b/security/php70-hash/Makefile index 3ee94a424193..17b5b944f4ce 100644 --- a/security/php70-hash/Makefile +++ b/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 a/security/php70-mcrypt/Makefile b/security/php70-mcrypt/Makefile index ac715c925209..18b41abf06aa 100644 --- a/security/php70-mcrypt/Makefile +++ b/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 a/security/php70-openssl/Makefile b/security/php70-openssl/Makefile index 7759e22394e8..c3974689a42a 100644 --- a/security/php70-openssl/Makefile +++ b/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 a/sysutils/pecl-mogilefs/Makefile b/sysutils/pecl-mogilefs/Makefile index abd075b2e2d9..29ced87dbd45 100644 --- a/sysutils/pecl-mogilefs/Makefile +++ b/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 a/sysutils/pecl-proctitle/Makefile b/sysutils/pecl-proctitle/Makefile index 02ab2d760bd8..c10990f7e516 100644 --- a/sysutils/pecl-proctitle/Makefile +++ b/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 a/sysutils/php55-fileinfo/Makefile b/sysutils/php55-fileinfo/Makefile index ef2883c4ba1b..79b08eac78e7 100644 --- a/sysutils/php55-fileinfo/Makefile +++ b/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 a/sysutils/php55-posix/Makefile b/sysutils/php55-posix/Makefile index e2e68caa9241..b000600880ad 100644 --- a/sysutils/php55-posix/Makefile +++ b/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 a/sysutils/php56-fileinfo/Makefile b/sysutils/php56-fileinfo/Makefile index 77372f0bdbf7..aaf790697ef5 100644 --- a/sysutils/php56-fileinfo/Makefile +++ b/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 a/sysutils/php56-posix/Makefile b/sysutils/php56-posix/Makefile index da38a7e1ba66..06330fdab6ee 100644 --- a/sysutils/php56-posix/Makefile +++ b/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 a/sysutils/php70-fileinfo/Makefile b/sysutils/php70-fileinfo/Makefile index 2f6c293c4be9..1ac49179818e 100644 --- a/sysutils/php70-fileinfo/Makefile +++ b/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 a/sysutils/php70-posix/Makefile b/sysutils/php70-posix/Makefile index 45f5903d1a7f..ee16e51ef75d 100644 --- a/sysutils/php70-posix/Makefile +++ b/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 a/textproc/libmrss-php/Makefile b/textproc/libmrss-php/Makefile index e7c6ccf7ca0f..5d25ecb42479 100644 --- a/textproc/libmrss-php/Makefile +++ b/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 a/textproc/pecl-cld/Makefile b/textproc/pecl-cld/Makefile index 833b54b904c0..f3aa69485c99 100644 --- a/textproc/pecl-cld/Makefile +++ b/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 a/textproc/pecl-ctemplate/Makefile b/textproc/pecl-ctemplate/Makefile index fce74cb398e9..f842de963ccb 100644 --- a/textproc/pecl-ctemplate/Makefile +++ b/textproc/pecl-ctemplate/Makefile @@ -3,6 +3,7 @@ PORTNAME= cTemplate PORTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= textproc pear DISTVERSIONPREFIX= v PKGNAMEPREFIX= pecl- diff --git a/textproc/pecl-doublemetaphone/Makefile b/textproc/pecl-doublemetaphone/Makefile index be37c41804d2..b728199ffe1d 100644 --- a/textproc/pecl-doublemetaphone/Makefile +++ b/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 a/textproc/pecl-enchant/Makefile b/textproc/pecl-enchant/Makefile index 2eba389f2346..f4620a740ca3 100644 --- a/textproc/pecl-enchant/Makefile +++ b/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 a/textproc/pecl-html_parse/Makefile b/textproc/pecl-html_parse/Makefile index 4571485a337b..32bdee3c1b8b 100644 --- a/textproc/pecl-html_parse/Makefile +++ b/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 a/textproc/pecl-stem/Makefile b/textproc/pecl-stem/Makefile index 7bc18d8b9b5e..301d1c9998f3 100644 --- a/textproc/pecl-stem/Makefile +++ b/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 a/textproc/pecl-syck/Makefile b/textproc/pecl-syck/Makefile index 53b715f634c5..0efe2309540d 100644 --- a/textproc/pecl-syck/Makefile +++ b/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 a/textproc/pecl-wbxml/Makefile b/textproc/pecl-wbxml/Makefile index d91c736f5fa1..bbcd4ccc8f56 100644 --- a/textproc/pecl-wbxml/Makefile +++ b/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 a/textproc/pecl-xdiff/Makefile b/textproc/pecl-xdiff/Makefile index 510525132608..af750fd05e78 100644 --- a/textproc/pecl-xdiff/Makefile +++ b/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 a/textproc/pecl-xslcache/Makefile b/textproc/pecl-xslcache/Makefile index 984aa796ae3f..1b49bc30155c 100644 --- a/textproc/pecl-xslcache/Makefile +++ b/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 a/textproc/pecl-yaml/Makefile b/textproc/pecl-yaml/Makefile index 10a528087e50..1a7a1e7b8d31 100644 --- a/textproc/pecl-yaml/Makefile +++ b/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 a/textproc/php-mecab/Makefile b/textproc/php-mecab/Makefile index 3abcd6c7dee2..5a3e4ae1164a 100644 --- a/textproc/php-mecab/Makefile +++ b/textproc/php-mecab/Makefile @@ -3,6 +3,7 @@ PORTNAME= php-mecab PORTVERSION= 0.6.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= textproc diff --git a/textproc/php55-ctype/Makefile b/textproc/php55-ctype/Makefile index e7d588b51654..ddfa80000748 100644 --- a/textproc/php55-ctype/Makefile +++ b/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 a/textproc/php55-dom/Makefile b/textproc/php55-dom/Makefile index 22d0fa1183c8..8873246c89c3 100644 --- a/textproc/php55-dom/Makefile +++ b/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 a/textproc/php55-pspell/Makefile b/textproc/php55-pspell/Makefile index ca5a0fbd1029..8e4516afa120 100644 --- a/textproc/php55-pspell/Makefile +++ b/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 a/textproc/php55-simplexml/Makefile b/textproc/php55-simplexml/Makefile index dd274937d988..8fbe2249fa7c 100644 --- a/textproc/php55-simplexml/Makefile +++ b/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 a/textproc/php55-wddx/Makefile b/textproc/php55-wddx/Makefile index d52e97d54dcf..ca3ed6fef259 100644 --- a/textproc/php55-wddx/Makefile +++ b/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 a/textproc/php55-xml/Makefile b/textproc/php55-xml/Makefile index be8e8646b390..347ddfb24546 100644 --- a/textproc/php55-xml/Makefile +++ b/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 a/textproc/php55-xmlreader/Makefile b/textproc/php55-xmlreader/Makefile index d5e83183b9a1..a2af8b1bae05 100644 --- a/textproc/php55-xmlreader/Makefile +++ b/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 a/textproc/php55-xmlwriter/Makefile b/textproc/php55-xmlwriter/Makefile index 79fbac052143..54e5de3f5872 100644 --- a/textproc/php55-xmlwriter/Makefile +++ b/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 a/textproc/php55-xsl/Makefile b/textproc/php55-xsl/Makefile index c7d546422a82..96002241c7b3 100644 --- a/textproc/php55-xsl/Makefile +++ b/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 a/textproc/php56-ctype/Makefile b/textproc/php56-ctype/Makefile index 202a932d42a9..1dc18acb5e79 100644 --- a/textproc/php56-ctype/Makefile +++ b/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 a/textproc/php56-dom/Makefile b/textproc/php56-dom/Makefile index 5c0f7edf8317..1c75b6296827 100644 --- a/textproc/php56-dom/Makefile +++ b/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 a/textproc/php56-pspell/Makefile b/textproc/php56-pspell/Makefile index 2112f731b99c..b5b268b9f740 100644 --- a/textproc/php56-pspell/Makefile +++ b/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 a/textproc/php56-simplexml/Makefile b/textproc/php56-simplexml/Makefile index e716e47b5ebf..ef0f55bf6554 100644 --- a/textproc/php56-simplexml/Makefile +++ b/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 a/textproc/php56-wddx/Makefile b/textproc/php56-wddx/Makefile index da78d33afa1c..35a91661c78d 100644 --- a/textproc/php56-wddx/Makefile +++ b/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 a/textproc/php56-xml/Makefile b/textproc/php56-xml/Makefile index d014fbc25630..8482a1b1a263 100644 --- a/textproc/php56-xml/Makefile +++ b/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 a/textproc/php56-xmlreader/Makefile b/textproc/php56-xmlreader/Makefile index ac3e02e97ade..60f2ed6525ca 100644 --- a/textproc/php56-xmlreader/Makefile +++ b/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 a/textproc/php56-xmlwriter/Makefile b/textproc/php56-xmlwriter/Makefile index 564f238bf45c..7409f6dcb270 100644 --- a/textproc/php56-xmlwriter/Makefile +++ b/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 a/textproc/php56-xsl/Makefile b/textproc/php56-xsl/Makefile index a9f057165de8..ba032f45e75b 100644 --- a/textproc/php56-xsl/Makefile +++ b/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 a/textproc/php70-ctype/Makefile b/textproc/php70-ctype/Makefile index f6833afb0e77..04b1f818fc0a 100644 --- a/textproc/php70-ctype/Makefile +++ b/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 a/textproc/php70-dom/Makefile b/textproc/php70-dom/Makefile index 9c5b18115755..305456047f85 100644 --- a/textproc/php70-dom/Makefile +++ b/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 a/textproc/php70-pspell/Makefile b/textproc/php70-pspell/Makefile index a2978e35831b..14b8abaa17b3 100644 --- a/textproc/php70-pspell/Makefile +++ b/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 a/textproc/php70-simplexml/Makefile b/textproc/php70-simplexml/Makefile index a4d88cb47a12..68106a054202 100644 --- a/textproc/php70-simplexml/Makefile +++ b/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 a/textproc/php70-wddx/Makefile b/textproc/php70-wddx/Makefile index 87bab097e937..d218fabd29b7 100644 --- a/textproc/php70-wddx/Makefile +++ b/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 a/textproc/php70-xml/Makefile b/textproc/php70-xml/Makefile index 6eca62cf06a7..1c5d6a32dd67 100644 --- a/textproc/php70-xml/Makefile +++ b/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 a/textproc/php70-xmlreader/Makefile b/textproc/php70-xmlreader/Makefile index dd5701bb7584..bb4caf18e4c3 100644 --- a/textproc/php70-xmlreader/Makefile +++ b/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 a/textproc/php70-xmlwriter/Makefile b/textproc/php70-xmlwriter/Makefile index 7827d75cd84b..0c85c9be77a6 100644 --- a/textproc/php70-xmlwriter/Makefile +++ b/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 a/textproc/php70-xsl/Makefile b/textproc/php70-xsl/Makefile index 7096247682e7..95c477f39d3b 100644 --- a/textproc/php70-xsl/Makefile +++ b/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 a/www/pecl-APC/Makefile b/www/pecl-APC/Makefile index b9160a41fa73..85fa7c97ef0c 100644 --- a/www/pecl-APC/Makefile +++ b/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 a/www/pecl-amfext/Makefile b/www/pecl-amfext/Makefile index 2a3ea163b9d4..d71da85414bd 100644 --- a/www/pecl-amfext/Makefile +++ b/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 a/www/pecl-http/Makefile b/www/pecl-http/Makefile index b0d1573f1fa2..2ac6be36237c 100644 --- a/www/pecl-http/Makefile +++ b/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 a/www/pecl-http1/Makefile b/www/pecl-http1/Makefile index 2f94f8507cf2..ef0ebd757420 100644 --- a/www/pecl-http1/Makefile +++ b/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 a/www/pecl-http2/Makefile b/www/pecl-http2/Makefile index f19c0dbb8a2f..692c5b51a009 100644 --- a/www/pecl-http2/Makefile +++ b/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 a/www/pecl-solr/Makefile b/www/pecl-solr/Makefile index 3b7a03a0c4df..f36bd1a6c24d 100644 --- a/www/pecl-solr/Makefile +++ b/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 a/www/pecl-sphinx/Makefile b/www/pecl-sphinx/Makefile index 03a3b22b9840..ad49bda93cb9 100644 --- a/www/pecl-sphinx/Makefile +++ b/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 a/www/pecl-swish/Makefile b/www/pecl-swish/Makefile index 1e143c9553e7..893384a09b46 100644 --- a/www/pecl-swish/Makefile +++ b/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 a/www/pecl-twig/Makefile b/www/pecl-twig/Makefile index 5372eab2680e..5c3de06ee83a 100644 --- a/www/pecl-twig/Makefile +++ b/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 a/www/pecl-yaf/Makefile b/www/pecl-yaf/Makefile index 446e6a070b44..57f48c088dbc 100644 --- a/www/pecl-yaf/Makefile +++ b/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 a/www/pecl-yar/Makefile b/www/pecl-yar/Makefile index 111054ac1af7..767af72200ab 100644 --- a/www/pecl-yar/Makefile +++ b/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 a/www/phalcon/Makefile b/www/phalcon/Makefile index 709432e7c255..7720c194f7e6 100644 --- a/www/phalcon/Makefile +++ b/www/phalcon/Makefile @@ -3,6 +3,7 @@ PORTNAME= phalcon PORTVERSION= 2.0.13 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}-v CATEGORIES= www diff --git a/www/php-screw/Makefile b/www/php-screw/Makefile index 1fa740c15dfa..7e784622a92b 100644 --- a/www/php-screw/Makefile +++ b/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 a/www/php-screw/files/pkg-message.in b/www/php-screw/files/pkg-message.in index d55d343ff0e3..9da44833d26e 100644 --- a/www/php-screw/files/pkg-message.in +++ b/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 a/www/php-templates/Makefile b/www/php-templates/Makefile index 15b43ae345a2..f517ee6c0366 100644 --- a/www/php-templates/Makefile +++ b/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 a/www/php-templates/files/pkg-message.in b/www/php-templates/files/pkg-message.in index 22b6e4c63123..5564701a3f5f 100644 --- a/www/php-templates/files/pkg-message.in +++ b/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 a/www/php55-opcache/Makefile b/www/php55-opcache/Makefile index 753ea6ed9d4c..3babb3c7b0b4 100644 --- a/www/php55-opcache/Makefile +++ b/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 a/www/php55-session/Makefile b/www/php55-session/Makefile index 84d171bd42a9..7ac4188d1273 100644 --- a/www/php55-session/Makefile +++ b/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 a/www/php55-tidy/Makefile b/www/php55-tidy/Makefile index d78c094b19ce..4289e2ecbf6c 100644 --- a/www/php55-tidy/Makefile +++ b/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 a/www/php56-opcache/Makefile b/www/php56-opcache/Makefile index 99b55c2bf18c..8184881949ac 100644 --- a/www/php56-opcache/Makefile +++ b/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 a/www/php56-session/Makefile b/www/php56-session/Makefile index a8c4fc1105fc..d4e611efb9a3 100644 --- a/www/php56-session/Makefile +++ b/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 a/www/php56-tidy/Makefile b/www/php56-tidy/Makefile index 872746370284..80babeb69959 100644 --- a/www/php56-tidy/Makefile +++ b/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 a/www/php70-opcache/Makefile b/www/php70-opcache/Makefile index d72107618e45..322c1dc921a2 100644 --- a/www/php70-opcache/Makefile +++ b/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 a/www/php70-session/Makefile b/www/php70-session/Makefile index 6b20fd0eda6c..d445ec8d63c2 100644 --- a/www/php70-session/Makefile +++ b/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 a/www/php70-tidy/Makefile b/www/php70-tidy/Makefile index 40f6250f1d08..3a4b20798c03 100644 --- a/www/php70-tidy/Makefile +++ b/www/php70-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre <ale@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 |