--- Mk/Scripts/create-manifest.sh +++ Mk/Scripts/create-manifest.sh @@ -104,7 +104,9 @@ done exec >${dp_METADIR}/+DISPLAY -[ -f ${dp_PKGMESSAGE} ] && cat ${dp_PKGMESSAGE} +for message in ${dp_PKGMESSAGE}; do + [ -f "${message}" ] && cat "${message}" +done # Try and keep these messages in sync with check-deprecated if [ ${dp_MAINTAINER} = "ports@FreeBSD.org" ]; then --- Mk/Uses/php.mk +++ Mk/Uses/php.mk @@ -204,7 +204,20 @@ _INCLUDE_USES_PHP_POST_MK=yes . if ${php_ARGS:Mext} || ${php_ARGS:Mzend} PHP_MODNAME?= ${PORTNAME} +PHP_EXT_PKGMESSAGE= ${WRKDIR}/php-ext-pkg-message +PKGMESSAGE+= ${PHP_EXT_PKGMESSAGE} PHP_HEADER_DIRS?= "" +# If there is no priority defined, we wing it. +. if !defined(PHP_MOD_PRIO) +. if defined(USE_PHP) +# If an extension needs another, put it after the others. +PHP_MOD_PRIO= 30 +. else +# Otherwise, put it where it with everybody. +PHP_MOD_PRIO= 20 +. endif +. endif +INI_FILE= etc/php/ext-${PHP_MOD_PRIO}-${PHP_MODNAME}.ini do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @@ -219,8 +232,13 @@ do-install: @${GREP} "#define \(COMPILE\|HAVE\|USE\)_" ${WRKSRC}/config.h \ > ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php +. if ${php_ARGS:Mzend} + @${ECHO_CMD} "zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${INI_FILE} +. else + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${INI_FILE} +. endif -add-plist-info: add-plist-phpext +_USES_stage+= 899:add-plist-phpext add-plist-phpext: @${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \ >> ${TMPPLIST} @@ -234,44 +252,20 @@ add-plist-phpext: >> ${TMPPLIST} @${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \ >> ${TMPPLIST} - @${ECHO_CMD} "@dir etc/php" \ + @${ECHO_CMD} "${INI_FILE}" \ >> ${TMPPLIST} + @${ECHO_CMD} "****************************************************************************" > ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "The following line has been added to your ${PREFIX}/${INI_FILE}" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "configuration file to automatically load the installed extension:" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} . if ${php_ARGS:Mzend} - @${ECHO_CMD} "@exec echo zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "@unexec grep -v zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. else - @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} -. endif - @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - -package-message: php-ini - -php-ini: - @${ECHO_CMD} "****************************************************************************" - @${ECHO_CMD} "" - @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" - @${ECHO_CMD} "configuration file to automatically load the installed extension:" - @${ECHO_CMD} "" -. if ${php_ARGS:Mzend} - @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" + @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . else - @${ECHO_CMD} "extension=${PHP_MODNAME}.so" + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE} . endif - @${ECHO_CMD} "" - @${ECHO_CMD} "****************************************************************************" + @${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE} + @${ECHO_CMD} "****************************************************************************" >> ${PHP_EXT_PKGMESSAGE} . endif # Extensions --- archivers/pecl-lzf/Makefile +++ archivers/pecl-lzf/Makefile @@ -3,6 +3,7 @@ PORTNAME= lzf PORTVERSION= 1.6.3 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- archivers/pecl-phk/Makefile +++ archivers/pecl-phk/Makefile @@ -3,6 +3,7 @@ PORTNAME= phk PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- archivers/pecl-rar/Makefile +++ archivers/pecl-rar/Makefile @@ -3,6 +3,7 @@ PORTNAME= rar PORTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- archivers/php-horde_lz4/Makefile +++ archivers/php-horde_lz4/Makefile @@ -3,6 +3,7 @@ PORTNAME= horde_lz4 PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= archivers pear MASTER_SITES= http://pear.horde.org/get/ PKGNAMEPREFIX= php- --- archivers/php5-snappy/Makefile +++ archivers/php5-snappy/Makefile @@ -3,7 +3,7 @@ PORTNAME= php5-snappy PORTVERSION= 0.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= GOOGLE_CODE PROJECTHOST= php-snappy --- archivers/php55-bz2/Makefile +++ archivers/php55-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 --- archivers/php55-phar/Makefile +++ archivers/php55-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 --- archivers/php55-zip/Makefile +++ archivers/php55-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 --- archivers/php55-zlib/Makefile +++ archivers/php55-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php55 --- archivers/php56-bz2/Makefile +++ archivers/php56-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 --- archivers/php56-phar/Makefile +++ archivers/php56-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 --- archivers/php56-zip/Makefile +++ archivers/php56-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 --- archivers/php56-zlib/Makefile +++ archivers/php56-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 --- archivers/php70-bz2/Makefile +++ archivers/php70-bz2/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 --- archivers/php70-phar/Makefile +++ archivers/php70-phar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 --- archivers/php70-zip/Makefile +++ archivers/php70-zip/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 --- archivers/php70-zlib/Makefile +++ archivers/php70-zlib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php70 --- chinese/php-cconv/Makefile +++ chinese/php-cconv/Makefile @@ -3,6 +3,7 @@ PORTNAME= cconv PORTVERSION= 0.6.4 +PORTREVISION= 1 DISTVERSIONPREFIX= php- CATEGORIES= chinese converters MASTER_SITES= GOOGLE_CODE --- converters/pecl-fribidi/Makefile +++ converters/pecl-fribidi/Makefile @@ -3,7 +3,7 @@ PORTNAME= fribidi PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- converters/pecl-igbinary/Makefile +++ converters/pecl-igbinary/Makefile @@ -3,6 +3,7 @@ PORTNAME= igbinary PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= converters MASTER_SITES= http://pecl.php.net/get/ \ LOCAL/sunpoet --- converters/php5-bsdconv/Makefile +++ converters/php5-bsdconv/Makefile @@ -3,6 +3,7 @@ PORTNAME= bsdconv PORTVERSION= 11.3.0 +PORTREVISION= 1 CATEGORIES= converters PKGNAMEPREFIX= php5- --- converters/php55-iconv/Makefile +++ converters/php55-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 --- converters/php55-mbstring/Makefile +++ converters/php55-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 --- converters/php55-recode/Makefile +++ converters/php55-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php55 --- converters/php56-iconv/Makefile +++ converters/php56-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 --- converters/php56-mbstring/Makefile +++ converters/php56-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 --- converters/php56-recode/Makefile +++ converters/php56-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php56 --- converters/php70-iconv/Makefile +++ converters/php70-iconv/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 --- converters/php70-mbstring/Makefile +++ converters/php70-mbstring/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 --- converters/php70-recode/Makefile +++ converters/php70-recode/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/pecl-chdb/Makefile +++ databases/pecl-chdb/Makefile @@ -3,6 +3,7 @@ PORTNAME= chdb PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= pecl- DIST_SUBDIR= PECL --- databases/pecl-dbase/Makefile +++ databases/pecl-dbase/Makefile @@ -3,6 +3,7 @@ PORTNAME= dbase PORTVERSION= 5.1.0 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-drizzle/Makefile +++ databases/pecl-drizzle/Makefile @@ -3,6 +3,7 @@ PORTNAME= drizzle PORTVERSION= 0.4.2 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-leveldb/Makefile +++ databases/pecl-leveldb/Makefile @@ -3,6 +3,7 @@ PORTNAME= leveldb PORTVERSION= 0.1.5 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-mdbtools/Makefile +++ databases/pecl-mdbtools/Makefile @@ -3,7 +3,7 @@ PORTNAME= mdbtools PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-memcache/Makefile +++ databases/pecl-memcache/Makefile @@ -3,6 +3,7 @@ PORTNAME= memcache PORTVERSION= 3.0.8 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-memcached/Makefile +++ databases/pecl-memcached/Makefile @@ -3,7 +3,7 @@ PORTNAME= memcached PORTVERSION= 2.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-mongo/Makefile +++ databases/pecl-mongo/Makefile @@ -3,6 +3,7 @@ PORTNAME= mongo PORTVERSION= 1.6.14 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-mongodb/Makefile +++ databases/pecl-mongodb/Makefile @@ -2,6 +2,7 @@ PORTNAME= mongodb PORTVERSION= 1.1.8 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-mysqlnd_ms/Makefile +++ databases/pecl-mysqlnd_ms/Makefile @@ -3,6 +3,7 @@ PORTNAME= mysqlnd_ms PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-mysqlnd_qc/Makefile +++ databases/pecl-mysqlnd_qc/Makefile @@ -3,6 +3,7 @@ PORTNAME= mysqlnd_qc PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-pdo_user/Makefile +++ databases/pecl-pdo_user/Makefile @@ -3,6 +3,7 @@ PORTNAME= pdo_user PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-rrd/Makefile +++ databases/pecl-rrd/Makefile @@ -2,7 +2,7 @@ PORTNAME= rrd DISTVERSION= 1.1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/pecl-tokyo_tyrant/Makefile +++ databases/pecl-tokyo_tyrant/Makefile @@ -3,6 +3,7 @@ PORTNAME= tokyo_tyrant PORTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- databases/php-adodb-ext/Makefile +++ databases/php-adodb-ext/Makefile @@ -3,7 +3,7 @@ PORTNAME= adodb-ext PORTVERSION= 5.04 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= http://phplens.com/lens/dl/ PKGNAMEPREFIX= php- @@ -16,8 +16,7 @@ WRKSRC= ${WRKDIR}/adodb-${PORTVERSION:S/.//} USES= dos2unix php:ext zip IGNORE_WITH_PHP=56 70 - -SUB_FILES= pkg-message +PHP_MODNAME= adodb .include --- 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. -***************************************************************************** --- databases/php-mdcached/Makefile +++ databases/php-mdcached/Makefile @@ -3,6 +3,7 @@ PORTNAME= mdcached PORTVERSION= 1.0.9 +PORTREVISION= 1 CATEGORIES= databases devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= php- --- databases/php5-pdo_cassandra/Makefile +++ databases/php5-pdo_cassandra/Makefile @@ -3,7 +3,7 @@ PORTNAME= pdo_cassandra PORTVERSION= 0.2.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= databases PKGNAMEPREFIX= php5- --- databases/php5-tarantool/Makefile +++ databases/php5-tarantool/Makefile @@ -3,6 +3,7 @@ PORTNAME= tarantool PORTVERSION= ${TR_VER} +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php5- --- databases/php55-dba/Makefile +++ databases/php55-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-interbase/Makefile +++ databases/php55-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-mssql/Makefile +++ databases/php55-mssql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-mysql/Makefile +++ databases/php55-mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-mysqli/Makefile +++ databases/php55-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-odbc/Makefile +++ databases/php55-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo/Makefile +++ databases/php55-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_dblib/Makefile +++ databases/php55-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_firebird/Makefile +++ databases/php55-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_mysql/Makefile +++ databases/php55-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_odbc/Makefile +++ databases/php55-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_pgsql/Makefile +++ databases/php55-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pdo_sqlite/Makefile +++ databases/php55-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-pgsql/Makefile +++ databases/php55-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-redis/Makefile +++ databases/php55-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.4 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php55- --- databases/php55-sqlite3/Makefile +++ databases/php55-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php55-sybase_ct/Makefile +++ databases/php55-sybase_ct/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php55 --- databases/php56-dba/Makefile +++ databases/php56-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-interbase/Makefile +++ databases/php56-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-mssql/Makefile +++ databases/php56-mssql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-mysql/Makefile +++ databases/php56-mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-mysqli/Makefile +++ databases/php56-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-odbc/Makefile +++ databases/php56-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo/Makefile +++ databases/php56-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_dblib/Makefile +++ databases/php56-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_firebird/Makefile +++ databases/php56-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_mysql/Makefile +++ databases/php56-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_odbc/Makefile +++ databases/php56-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_pgsql/Makefile +++ databases/php56-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pdo_sqlite/Makefile +++ databases/php56-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-pgsql/Makefile +++ databases/php56-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-redis/Makefile +++ databases/php56-redis/Makefile @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.2.8 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php56- --- databases/php56-sqlite3/Makefile +++ databases/php56-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php56-sybase_ct/Makefile +++ databases/php56-sybase_ct/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php56 --- databases/php70-dba/Makefile +++ databases/php70-dba/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-interbase/Makefile +++ databases/php70-interbase/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-mysqli/Makefile +++ databases/php70-mysqli/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-odbc/Makefile +++ databases/php70-odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo/Makefile +++ databases/php70-pdo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_dblib/Makefile +++ databases/php70-pdo_dblib/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_firebird/Makefile +++ databases/php70-pdo_firebird/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_mysql/Makefile +++ databases/php70-pdo_mysql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_odbc/Makefile +++ databases/php70-pdo_odbc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_pgsql/Makefile +++ databases/php70-pdo_pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pdo_sqlite/Makefile +++ databases/php70-pdo_sqlite/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-pgsql/Makefile +++ databases/php70-pgsql/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- databases/php70-redis/Makefile +++ databases/php70-redis/Makefile @@ -2,6 +2,7 @@ PORTNAME= redis PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= php70- --- databases/php70-sqlite3/Makefile +++ databases/php70-sqlite3/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/ioncube/Makefile +++ devel/ioncube/Makefile @@ -31,5 +31,10 @@ do-install: ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so ${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}_ts.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so +# Put it before opcache, like the previous pkg-message was saying + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "[Zend]" > ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini + @${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini + @${ECHO_CMD} "zend_extension_ts=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini .include --- devel/ioncube/files/pkg-message.in +++ devel/ioncube/files/pkg-message.in @@ -1,14 +1,8 @@ - You have installed the ionCube loader package. -Edit %%LOCALBASE%%/etc/php.ini or %%LOCALBASE%%/etc/php/extensions.ini -and add this three lines: +The following lines have been added to %%PREFIX%%/etc/php/ext-05-ioncube.ini so +that the extension has been automatically activated. --------------------------------------------------------------------------------- [Zend] -zend_extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so" -zend_extension_ts="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so" --------------------------------------------------------------------------------- - -NOTE: If you have any Zend Extension already installed - you need put this before -existing zend_extension lines. +zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so +zend_extension_ts=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so --- devel/ioncube/pkg-plist +++ devel/ioncube/pkg-plist @@ -1,2 +1,3 @@ +etc/php/ext-05-ioncube.ini lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so --- devel/pecl-APCu/Makefile +++ devel/pecl-APCu/Makefile @@ -3,6 +3,7 @@ PORTNAME= APCu PORTVERSION= 4.0.10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-automap/Makefile +++ devel/pecl-automap/Makefile @@ -3,6 +3,7 @@ PORTNAME= automap PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-bbcode/Makefile +++ devel/pecl-bbcode/Makefile @@ -3,6 +3,7 @@ PORTNAME= bbcode PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-bcompiler/Makefile +++ devel/pecl-bcompiler/Makefile @@ -3,6 +3,7 @@ PORTNAME= bcompiler PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-dio/Makefile +++ devel/pecl-dio/Makefile @@ -2,6 +2,7 @@ PORTNAME= dio DISTVERSION= 0.0.7 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-eio/Makefile +++ devel/pecl-eio/Makefile @@ -3,6 +3,7 @@ PORTNAME= eio PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-ev/Makefile +++ devel/pecl-ev/Makefile @@ -3,7 +3,7 @@ PORTNAME= ev PORTVERSION= 0.2.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-event/Makefile +++ devel/pecl-event/Makefile @@ -3,6 +3,7 @@ PORTNAME= event PORTVERSION= 2.0.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-expect/Makefile +++ devel/pecl-expect/Makefile @@ -3,7 +3,7 @@ PORTNAME= expect PORTVERSION= 0.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-gearman/Makefile +++ devel/pecl-gearman/Makefile @@ -3,6 +3,7 @@ PORTNAME= gearman PORTVERSION= 1.1.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-hidef/Makefile +++ devel/pecl-hidef/Makefile @@ -3,6 +3,7 @@ PORTNAME= hidef PORTVERSION= 0.1.13 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-hrtime/Makefile +++ devel/pecl-hrtime/Makefile @@ -3,6 +3,7 @@ PORTNAME= hrtime PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-htscanner/Makefile +++ devel/pecl-htscanner/Makefile @@ -3,6 +3,7 @@ PORTNAME= htscanner PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-inotify/Makefile +++ devel/pecl-inotify/Makefile @@ -3,7 +3,7 @@ PORTNAME= inotify PORTVERSION= 0.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-intl/Makefile +++ devel/pecl-intl/Makefile @@ -3,7 +3,7 @@ PORTNAME= intl PORTVERSION= 3.0.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-jsmin/Makefile +++ devel/pecl-jsmin/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsmin PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-json_post/Makefile +++ devel/pecl-json_post/Makefile @@ -3,6 +3,7 @@ PORTNAME= json_post PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-jsonc/Makefile +++ devel/pecl-jsonc/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsonc PORTVERSION= 1.3.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-jsond/Makefile +++ devel/pecl-jsond/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsond PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-jsonnet/Makefile +++ devel/pecl-jsonnet/Makefile @@ -3,6 +3,7 @@ PORTNAME= jsonnet PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-judy/Makefile +++ devel/pecl-judy/Makefile @@ -3,6 +3,7 @@ PORTNAME= judy PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-libevent/Makefile +++ devel/pecl-libevent/Makefile @@ -3,6 +3,7 @@ PORTNAME= libevent PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-mcve/Makefile +++ devel/pecl-mcve/Makefile @@ -3,7 +3,7 @@ PORTNAME= mcve PORTVERSION= 7.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-memoize/Makefile +++ devel/pecl-memoize/Makefile @@ -3,7 +3,7 @@ PORTNAME= memoize PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-msgpack/Makefile +++ devel/pecl-msgpack/Makefile @@ -3,6 +3,7 @@ PORTNAME= msgpack PORTVERSION= 0.5.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-ncurses/Makefile +++ devel/pecl-ncurses/Makefile @@ -3,6 +3,7 @@ PORTNAME= ncurses PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-newt/Makefile +++ devel/pecl-newt/Makefile @@ -2,6 +2,7 @@ PORTNAME= newt PORTVERSION= 1.2.9 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-operator/Makefile +++ devel/pecl-operator/Makefile @@ -3,6 +3,7 @@ PORTNAME= operator PORTVERSION= 0.3 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-params/Makefile +++ devel/pecl-params/Makefile @@ -3,6 +3,7 @@ PORTNAME= params PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-parsekit/Makefile +++ devel/pecl-parsekit/Makefile @@ -3,6 +3,7 @@ PORTNAME= parsekit PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-propro/Makefile +++ devel/pecl-propro/Makefile @@ -3,7 +3,7 @@ PORTNAME= propro PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-propro2/Makefile +++ devel/pecl-propro2/Makefile @@ -3,6 +3,7 @@ PORTNAME= propro PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-pthreads/Makefile +++ devel/pecl-pthreads/Makefile @@ -3,6 +3,7 @@ PORTNAME= pthreads PORTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-qb/Makefile +++ devel/pecl-qb/Makefile @@ -3,7 +3,7 @@ PORTNAME= qb PORTVERSION= 2.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-raphf/Makefile +++ devel/pecl-raphf/Makefile @@ -3,7 +3,7 @@ PORTNAME= raphf PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-raphf2/Makefile +++ devel/pecl-raphf2/Makefile @@ -3,6 +3,7 @@ PORTNAME= raphf PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-runkit/Makefile +++ devel/pecl-runkit/Makefile @@ -3,6 +3,7 @@ PORTNAME= runkit PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-scream/Makefile +++ devel/pecl-scream/Makefile @@ -3,6 +3,7 @@ PORTNAME= scream DISTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-shape/Makefile +++ devel/pecl-shape/Makefile @@ -3,7 +3,7 @@ PORTNAME= shape PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-spl_types/Makefile +++ devel/pecl-spl_types/Makefile @@ -3,6 +3,7 @@ PORTNAME= spl_types PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-spread/Makefile +++ devel/pecl-spread/Makefile @@ -3,7 +3,7 @@ PORTNAME= spread PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-statgrab/Makefile +++ devel/pecl-statgrab/Makefile @@ -3,7 +3,7 @@ PORTNAME= statgrab PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-strict/Makefile +++ devel/pecl-strict/Makefile @@ -3,6 +3,7 @@ PORTNAME= strict PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-svn/Makefile +++ devel/pecl-svn/Makefile @@ -3,7 +3,7 @@ PORTNAME= svn PORTVERSION= 1.0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-swoole/Makefile +++ devel/pecl-swoole/Makefile @@ -3,6 +3,7 @@ PORTNAME= swoole PORTVERSION= 1.7.22 +PORTREVISION= 1 CATEGORIES= devel net MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-sync/Makefile +++ devel/pecl-sync/Makefile @@ -3,6 +3,7 @@ PORTNAME= sync PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-test_helpers/Makefile +++ devel/pecl-test_helpers/Makefile @@ -3,7 +3,7 @@ PORTNAME= test_helpers PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pear.phpunit.de/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-trace/Makefile +++ devel/pecl-trace/Makefile @@ -3,6 +3,7 @@ PORTNAME= trace PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-uopz/Makefile +++ devel/pecl-uopz/Makefile @@ -3,6 +3,7 @@ PORTNAME= uopz PORTVERSION= 2.0.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-uploadprogress/Makefile +++ devel/pecl-uploadprogress/Makefile @@ -3,6 +3,7 @@ PORTNAME= uploadprogress PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-uri_template/Makefile +++ devel/pecl-uri_template/Makefile @@ -3,6 +3,7 @@ PORTNAME= uri_template PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-uuid/Makefile +++ devel/pecl-uuid/Makefile @@ -3,6 +3,7 @@ PORTNAME= uuid PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-vld/Makefile +++ devel/pecl-vld/Makefile @@ -3,6 +3,7 @@ PORTNAME= vld PORTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-weakref/Makefile +++ devel/pecl-weakref/Makefile @@ -3,6 +3,7 @@ PORTNAME= weakref PORTVERSION= 0.2.6 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-xhprof/Makefile +++ devel/pecl-xhprof/Makefile @@ -3,6 +3,7 @@ PORTNAME= xhprof PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/pecl-yac/Makefile +++ devel/pecl-yac/Makefile @@ -3,6 +3,7 @@ PORTNAME= yac PORTVERSION= 0.9.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ --- devel/pecl-zookeeper/Makefile +++ devel/pecl-zookeeper/Makefile @@ -3,7 +3,7 @@ PORTNAME= zookeeper PORTVERSION= 0.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- devel/php-jq/Makefile +++ devel/php-jq/Makefile @@ -3,6 +3,7 @@ PORTNAME= jq PORTVERSION= 0.0.1 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- --- devel/php-maxminddb/Makefile +++ devel/php-maxminddb/Makefile @@ -3,6 +3,7 @@ PORTNAME= maxminddb PORTVERSION= 1.1.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel net PKGNAMEPREFIX= php- --- devel/php-memoize/Makefile +++ devel/php-memoize/Makefile @@ -4,7 +4,7 @@ PORTNAME= php-memoize PORTVERSION= 0.2.0b1 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= gasol.wu@gmail.com --- devel/php-scalar_objects/Makefile +++ devel/php-scalar_objects/Makefile @@ -3,7 +3,7 @@ PORTNAME= scalar_objects PORTVERSION= 0.0.20140124 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= php- --- devel/php-uprofiler/Makefile +++ devel/php-uprofiler/Makefile @@ -3,6 +3,7 @@ PORTNAME= uprofiler PORTVERSION= 0.11.0.20150219 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php- --- devel/php-xdebug/Makefile +++ devel/php-xdebug/Makefile @@ -3,6 +3,7 @@ PORTNAME= xdebug PORTVERSION= 2.4.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://xdebug.org/files/ PKGNAMEPREFIX= php- --- devel/php5-blitz-devel/Makefile +++ devel/php5-blitz-devel/Makefile @@ -3,6 +3,7 @@ PORTNAME= blitz-devel PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://alexeyrybak.com/blitz/ PKGNAMEPREFIX= php5- --- devel/php5-blitz/Makefile +++ devel/php5-blitz/Makefile @@ -3,6 +3,7 @@ PORTNAME= blitz PORTVERSION= 0.8.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://alexeyrybak.com/blitz/ PKGNAMEPREFIX= php5- --- devel/php5-dav/Makefile +++ devel/php5-dav/Makefile @@ -3,7 +3,7 @@ PORTNAME= dav PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://download.pureftpd.org/php-webdav/ PKGNAMEPREFIX= php5- --- devel/php5-ice/Makefile +++ devel/php5-ice/Makefile @@ -34,27 +34,12 @@ PHP_MODNAME?= IcePHP post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/*.so @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php - -add-plist-info: - @${ECHO_CMD} "@exec mkdir -p %D/etc/php" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ - >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/etc/php 2> /dev/null || true" \ - >> ${TMPPLIST} + @${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-ice.ini security-check: @${ECHO_CMD} "****************************************************************************" @${ECHO_CMD} "" - @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" + @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/ext-20-ice.ini" @${ECHO_CMD} "configuration file to automatically load the installed extension:" @${ECHO_CMD} "" @${ECHO_CMD} "extension=${PHP_MODNAME}.so" --- devel/php5-ice/pkg-plist +++ devel/php5-ice/pkg-plist @@ -1,3 +1,4 @@ +etc/php/ext-20-ice.ini lib/php/%%PHP_EXT_DIR%%/IcePHP.so share/pear/Glacier2.php share/pear/Glacier2/Metrics.php --- devel/php5-msgpack/Makefile +++ devel/php5-msgpack/Makefile @@ -3,6 +3,7 @@ PORTNAME= msgpack PORTVERSION= 2012.05.05 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php5- --- devel/php5-pinba/Makefile +++ devel/php5-pinba/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinba PORTVERSION= 2012.03.20 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= php5- --- devel/php5-thrift/Makefile +++ devel/php5-thrift/Makefile @@ -3,6 +3,7 @@ PORTNAME= thrift PORTVERSION= ${THRIFT_PORTVERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= APACHE/thrift/${PORTVERSION} PKGNAMEPREFIX= php5- --- devel/php55-gettext/Makefile +++ devel/php55-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-json/Makefile +++ devel/php55-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-pcntl/Makefile +++ devel/php55-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-readline/Makefile +++ devel/php55-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-shmop/Makefile +++ devel/php55-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-sysvmsg/Makefile +++ devel/php55-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-sysvsem/Makefile +++ devel/php55-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-sysvshm/Makefile +++ devel/php55-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php55-tokenizer/Makefile +++ devel/php55-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php55 --- devel/php56-gettext/Makefile +++ devel/php56-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-json/Makefile +++ devel/php56-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-pcntl/Makefile +++ devel/php56-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-readline/Makefile +++ devel/php56-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-shmop/Makefile +++ devel/php56-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-sysvmsg/Makefile +++ devel/php56-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-sysvsem/Makefile +++ devel/php56-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-sysvshm/Makefile +++ devel/php56-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php56-tokenizer/Makefile +++ devel/php56-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 --- devel/php70-gettext/Makefile +++ devel/php70-gettext/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-intl/Makefile +++ devel/php70-intl/Makefile @@ -1,7 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-json/Makefile +++ devel/php70-json/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-pcntl/Makefile +++ devel/php70-pcntl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-readline/Makefile +++ devel/php70-readline/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-shmop/Makefile +++ devel/php70-shmop/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-sysvmsg/Makefile +++ devel/php70-sysvmsg/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-sysvsem/Makefile +++ devel/php70-sysvsem/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-sysvshm/Makefile +++ devel/php70-sysvshm/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- devel/php70-tokenizer/Makefile +++ devel/php70-tokenizer/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 --- finance/php-tclink/Makefile +++ finance/php-tclink/Makefile @@ -3,7 +3,7 @@ PORTNAME= tclink PORTVERSION= 4.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance MASTER_SITES= https://vault.trustcommerce.com/downloads/ PKGNAMEPREFIX= php- --- ftp/php55-curl/Makefile +++ ftp/php55-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php55 --- ftp/php55-ftp/Makefile +++ ftp/php55-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php55 --- ftp/php56-curl/Makefile +++ ftp/php56-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php56 --- ftp/php56-ftp/Makefile +++ ftp/php56-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php56 --- ftp/php70-curl/Makefile +++ ftp/php70-curl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php70 --- ftp/php70-ftp/Makefile +++ ftp/php70-ftp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php70 --- graphics/mapserver/Makefile +++ graphics/mapserver/Makefile @@ -125,11 +125,9 @@ CMAKE_ARGS+= -DWITH_POSTGIS=0 .endif .if ${PORT_OPTIONS:MPHP} -BUILD_DEPENDS+= ${LOCALBASE}/bin/php-config:lang/php56 -RUN_BUILDS+= ${LOCALBASE}/bin/php-config:lang/php56 -PHP_EXTENSION_DIR!= ${LOCALBASE}/bin/php-config --extension-dir | ${SED} -e "s,/usr/local/,," +USES+= php:build +IGNORE_WITH_PHP= 55 70 CMAKE_ARGS+= -DWITH_PHP=1 -PLIST_SUB+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR} PLIST_SUB+= PHP="" .else CMAKE_ARGS+= -DWITH_PHP=0 @@ -188,22 +186,20 @@ do-install: .endfor ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libmapserver.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib -.if ${PORT_OPTIONS:MPHP} - @${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR} + @${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2 + @${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so + +do-install-PHP-on: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/mapscript/php/php_mapscript.so \ - ${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR}/ -.endif + ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension=php_mapscript.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-php_mapscript.ini -.if ${PORT_OPTIONS:MPYTHON} + +do-install-PYTHON-on: @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/ (cd ${BUILD_WRKSRC}/mapscript/python && ${CP} mapscript.py _mapscript.so ${STAGEDIR}${PYTHON_SITELIBDIR}/) -.endif - @${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2 - @${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so - -.if ${PORT_OPTIONS:MPHP} - @${ECHO_MSG} "Please add the line extension=php_mapscript.so to ${PREFIX}/etc/php/extensions.ini" -.endif .include --- graphics/mapserver/pkg-plist +++ graphics/mapserver/pkg-plist @@ -8,9 +8,10 @@ bin/shptreetst bin/shptreevis bin/sortshp bin/tile4ms +%%PHP%%etc/php/ext-20-php_mapscript.ini lib/libmapserver.so lib/libmapserver.so.2 lib/libmapserver.so.7.0.1 -%%PHP%%%%PHP_EXTENSION_DIR%%/php_mapscript.so +%%PHP%%lib/php/%%PHP_EXT_DIR%%/php_mapscript.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/mapscript.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/_mapscript.so --- graphics/pecl-gmagick/Makefile +++ graphics/pecl-gmagick/Makefile @@ -3,6 +3,7 @@ PORTNAME= gmagick PORTVERSION= 1.1.7RC3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- graphics/pecl-imagick/Makefile +++ graphics/pecl-imagick/Makefile @@ -3,6 +3,7 @@ PORTNAME= imagick DISTVERSION= 3.4.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- graphics/pecl-imlib2/Makefile +++ graphics/pecl-imlib2/Makefile @@ -3,7 +3,7 @@ PORTNAME= imlib2 PORTVERSION= 0.1.00 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- graphics/pecl-qrencode/Makefile +++ graphics/pecl-qrencode/Makefile @@ -3,6 +3,7 @@ PORTNAME= qrencode PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= graphics pear MASTER_SITES= LOCAL/vanilla PKGNAMEPREFIX= pecl- --- graphics/php-facedetect/Makefile +++ graphics/php-facedetect/Makefile @@ -3,7 +3,7 @@ PORTNAME= facedetect PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PKGNAMEPREFIX= php- --- graphics/php-libpuzzle/Makefile +++ graphics/php-libpuzzle/Makefile @@ -3,7 +3,7 @@ PORTNAME= libpuzzle PORTVERSION= 0.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/release/ \ ftp://ftp.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/ --- graphics/php-magickwand/Makefile +++ graphics/php-magickwand/Makefile @@ -3,7 +3,7 @@ PORTNAME= magickwand PORTVERSION= 1.0.9 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://www.magickwand.org/download/php/ PKGNAMEPREFIX= php- --- graphics/php5-ffmpeg/Makefile +++ graphics/php5-ffmpeg/Makefile @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.6.0.20120114 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= php- CATEGORIES= graphics MASTER_SITES= LOCAL/sunpoet --- graphics/php55-exif/Makefile +++ graphics/php55-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php55 --- graphics/php55-gd/Makefile +++ graphics/php55-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php55 --- graphics/php56-exif/Makefile +++ graphics/php56-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php56 --- graphics/php56-gd/Makefile +++ graphics/php56-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php56 --- graphics/php70-exif/Makefile +++ graphics/php70-exif/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php70 --- graphics/php70-gd/Makefile +++ graphics/php70-gd/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php70 --- japanese/php5-mecab/Makefile +++ japanese/php5-mecab/Makefile @@ -2,6 +2,7 @@ PORTNAME= mecab PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= http://github.com/downloads/rsky/php-${PORTNAME}/ DISTNAME= php-mecab-${PORTVERSION} --- lang/pecl-perl/Makefile +++ lang/pecl-perl/Makefile @@ -3,6 +3,7 @@ PORTNAME= perl DISTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= lang perl5 MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- lang/php55/Makefile +++ lang/php55/Makefile @@ -3,7 +3,7 @@ PORTNAME= php55 PORTVERSION= 5.5.37 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} --- lang/php55/Makefile.ext +++ lang/php55/Makefile.ext @@ -217,6 +217,8 @@ USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache .endif --- lang/php56/Makefile +++ lang/php56/Makefile @@ -3,7 +3,7 @@ PORTNAME= php56 PORTVERSION= 5.6.23 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} --- lang/php56/Makefile.ext +++ lang/php56/Makefile.ext @@ -217,6 +217,8 @@ USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache .endif --- lang/php70/Makefile +++ lang/php70/Makefile @@ -3,7 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.8 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} --- lang/php70/Makefile.ext +++ lang/php70/Makefile.ext @@ -209,6 +209,8 @@ USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "opcache" +# This is needed by Zend extensions, keep before everything. +PHP_MOD_PRIO= 10 CONFIGURE_ARGS+=--enable-opcache USES+= localbase .endif --- mail/pecl-esmtp/Makefile +++ mail/pecl-esmtp/Makefile @@ -3,7 +3,7 @@ PORTNAME= esmtp PORTVERSION= 0.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- mail/pecl-mailparse/Makefile +++ mail/pecl-mailparse/Makefile @@ -3,6 +3,7 @@ PORTNAME= mailparse PORTVERSION= 2.1.6 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- mail/pecl-pop3/Makefile +++ mail/pecl-pop3/Makefile @@ -3,6 +3,7 @@ PORTNAME= pop3 PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- mail/php55-imap/Makefile +++ mail/php55-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php55 --- mail/php56-imap/Makefile +++ mail/php56-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php56 --- mail/php70-imap/Makefile +++ mail/php70-imap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= mail MASTERDIR= ${.CURDIR}/../../lang/php70 --- math/pecl-big_int/Makefile +++ math/pecl-big_int/Makefile @@ -3,6 +3,7 @@ PORTNAME= big_int PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= math devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- math/pecl-bitset/Makefile +++ math/pecl-bitset/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitset PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- math/pecl-bitset2/Makefile +++ math/pecl-bitset2/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitset PORTVERSION= 2.0.3 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- math/pecl-stats/Makefile +++ math/pecl-stats/Makefile @@ -3,6 +3,7 @@ PORTNAME= stats PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= math textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- math/pecl-trader/Makefile +++ math/pecl-trader/Makefile @@ -3,6 +3,7 @@ PORTNAME= trader PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= math devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- math/php55-bcmath/Makefile +++ math/php55-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php55 --- math/php55-gmp/Makefile +++ math/php55-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php55 --- math/php56-bcmath/Makefile +++ math/php56-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php56 --- math/php56-gmp/Makefile +++ math/php56-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php56 --- math/php70-bcmath/Makefile +++ math/php70-bcmath/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php70 --- math/php70-gmp/Makefile +++ math/php70-gmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= math MASTERDIR= ${.CURDIR}/../../lang/php70 --- misc/pecl-timezonedb/Makefile +++ misc/pecl-timezonedb/Makefile @@ -3,6 +3,7 @@ PORTNAME= timezonedb PORTVERSION= 2016.5 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- misc/php55-calendar/Makefile +++ misc/php55-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php55 --- misc/php56-calendar/Makefile +++ misc/php56-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php56 --- misc/php70-calendar/Makefile +++ misc/php70-calendar/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= misc MASTERDIR= ${.CURDIR}/../../lang/php70 --- multimedia/php-pHash/Makefile +++ multimedia/php-pHash/Makefile @@ -3,6 +3,7 @@ PORTNAME= pHash PORTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= multimedia devel MASTER_SITES= http://phash.org/releases/ \ http://www.cyberbotx.com/pHash/ --- net-im/pecl-stomp/Makefile +++ net-im/pecl-stomp/Makefile @@ -3,6 +3,7 @@ PORTNAME= stomp PORTVERSION= 1.0.9 +PORTREVISION= 1 CATEGORIES= net-im pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net-mgmt/php55-snmp/Makefile +++ net-mgmt/php55-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php55 --- net-mgmt/php56-snmp/Makefile +++ net-mgmt/php56-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php56 --- net-mgmt/php70-snmp/Makefile +++ net-mgmt/php70-snmp/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php70 --- net/pecl-amqp/Makefile +++ net/pecl-amqp/Makefile @@ -3,7 +3,7 @@ PORTNAME= amqp PORTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-apn/Makefile +++ net/pecl-apn/Makefile @@ -3,7 +3,7 @@ PORTNAME= apn PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-cvsclient/Makefile +++ net/pecl-cvsclient/Makefile @@ -3,6 +3,7 @@ PORTNAME= cvsclient PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-geoip/Makefile +++ net/pecl-geoip/Makefile @@ -3,6 +3,7 @@ PORTNAME= geoip PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= net www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-gupnp/Makefile +++ net/pecl-gupnp/Makefile @@ -3,6 +3,7 @@ PORTNAME= gupnp PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-ip2location/Makefile +++ net/pecl-ip2location/Makefile @@ -3,6 +3,7 @@ PORTNAME= ip2location PORTVERSION= 6.0.4 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-mosquitto/Makefile +++ net/pecl-mosquitto/Makefile @@ -3,6 +3,7 @@ PORTNAME= mosquitto PORTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-oauth/Makefile +++ net/pecl-oauth/Makefile @@ -3,6 +3,7 @@ PORTNAME= oauth PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-radius/Makefile +++ net/pecl-radius/Makefile @@ -3,6 +3,7 @@ PORTNAME= radius DISTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= net security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-smbclient/Makefile +++ net/pecl-smbclient/Makefile @@ -2,6 +2,7 @@ PORTNAME= smbclient PORTVERSION= 0.8.0 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-yaz/Makefile +++ net/pecl-yaz/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaz PORTVERSION= 1.1.6 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-yp/Makefile +++ net/pecl-yp/Makefile @@ -3,6 +3,7 @@ PORTNAME= yp PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/pecl-zmq/Makefile +++ net/pecl-zmq/Makefile @@ -2,7 +2,7 @@ PORTNAME= zmq PORTVERSION= 1.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- net/php55-ldap/Makefile +++ net/php55-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 --- net/php55-soap/Makefile +++ net/php55-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 --- net/php55-sockets/Makefile +++ net/php55-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 --- net/php55-xmlrpc/Makefile +++ net/php55-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php55 --- net/php56-ldap/Makefile +++ net/php56-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 --- net/php56-soap/Makefile +++ net/php56-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 --- net/php56-sockets/Makefile +++ net/php56-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 --- net/php56-xmlrpc/Makefile +++ net/php56-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php56 --- net/php70-ldap/Makefile +++ net/php70-ldap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 --- net/php70-soap/Makefile +++ net/php70-soap/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 --- net/php70-sockets/Makefile +++ net/php70-sockets/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 --- net/php70-xmlrpc/Makefile +++ net/php70-xmlrpc/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php70 --- print/pecl-haru/Makefile +++ print/pecl-haru/Makefile @@ -3,6 +3,7 @@ PORTNAME= haru PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- print/pecl-pdflib/Makefile +++ print/pecl-pdflib/Makefile @@ -3,6 +3,7 @@ PORTNAME= pdflib PORTVERSION= 3.0.4 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- print/pecl-ps/Makefile +++ print/pecl-ps/Makefile @@ -3,6 +3,7 @@ PORTNAME= ps PORTVERSION= 1.3.7 +PORTREVISION= 1 CATEGORIES= print pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-crack/Makefile +++ security/pecl-crack/Makefile @@ -3,6 +3,7 @@ PORTNAME= crack PORTVERSION= 0.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security www MASTER_SITES= http://pecl.php.net/get/ --- security/pecl-crypto/Makefile +++ security/pecl-crypto/Makefile @@ -3,6 +3,7 @@ PORTNAME= crypto PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-gnupg/Makefile +++ security/pecl-gnupg/Makefile @@ -3,6 +3,7 @@ PORTNAME= gnupg PORTVERSION= 1.3.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-pam/Makefile +++ security/pecl-pam/Makefile @@ -3,6 +3,7 @@ PORTNAME= pam PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-scrypt/Makefile +++ security/pecl-scrypt/Makefile @@ -3,7 +3,7 @@ PORTNAME= scrypt PORTVERSION= 1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-ssh2/Makefile +++ security/pecl-ssh2/Makefile @@ -3,6 +3,7 @@ PORTNAME= ssh2 PORTVERSION= 0.12 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/pecl-tcpwrap/Makefile +++ security/pecl-tcpwrap/Makefile @@ -3,6 +3,7 @@ PORTNAME= tcpwrap PORTVERSION= 1.1.3 +PORTREVISION= 1 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- security/php-suhosin/Makefile +++ security/php-suhosin/Makefile @@ -3,6 +3,7 @@ PORTNAME= suhosin PORTVERSION= 0.9.38 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.suhosin.org/ PKGNAMEPREFIX= php- --- security/php55-filter/Makefile +++ security/php55-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 --- security/php55-hash/Makefile +++ security/php55-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 --- security/php55-mcrypt/Makefile +++ security/php55-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 --- security/php55-openssl/Makefile +++ security/php55-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php55 --- security/php56-filter/Makefile +++ security/php56-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 --- security/php56-hash/Makefile +++ security/php56-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 --- security/php56-mcrypt/Makefile +++ security/php56-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 --- security/php56-openssl/Makefile +++ security/php56-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php56 --- security/php70-filter/Makefile +++ security/php70-filter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 --- security/php70-hash/Makefile +++ security/php70-hash/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 --- security/php70-mcrypt/Makefile +++ security/php70-mcrypt/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 --- security/php70-openssl/Makefile +++ security/php70-openssl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= security MASTERDIR= ${.CURDIR}/../../lang/php70 --- sysutils/pecl-mogilefs/Makefile +++ sysutils/pecl-mogilefs/Makefile @@ -3,7 +3,7 @@ PORTNAME= mogilefs PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- sysutils/pecl-proctitle/Makefile +++ sysutils/pecl-proctitle/Makefile @@ -3,6 +3,7 @@ PORTNAME= proctitle PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= sysutils pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- sysutils/php55-fileinfo/Makefile +++ sysutils/php55-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php55 --- sysutils/php55-posix/Makefile +++ sysutils/php55-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php55 --- sysutils/php56-fileinfo/Makefile +++ sysutils/php56-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php56 --- sysutils/php56-posix/Makefile +++ sysutils/php56-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php56 --- sysutils/php70-fileinfo/Makefile +++ sysutils/php70-fileinfo/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php70 --- sysutils/php70-posix/Makefile +++ sysutils/php70-posix/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= sysutils MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/libmrss-php/Makefile +++ textproc/libmrss-php/Makefile @@ -3,7 +3,7 @@ PORTNAME= libmrss PORTVERSION= 0.19.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://www.autistici.org/bakunin/libmrss/ PKGNAMESUFFIX= -php --- textproc/pecl-cld/Makefile +++ textproc/pecl-cld/Makefile @@ -3,6 +3,7 @@ PORTNAME= cld PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-ctemplate/Makefile +++ textproc/pecl-ctemplate/Makefile @@ -3,6 +3,7 @@ PORTNAME= cTemplate PORTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= textproc pear DISTVERSIONPREFIX= v PKGNAMEPREFIX= pecl- --- textproc/pecl-doublemetaphone/Makefile +++ textproc/pecl-doublemetaphone/Makefile @@ -3,6 +3,7 @@ PORTNAME= doublemetaphone PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-enchant/Makefile +++ textproc/pecl-enchant/Makefile @@ -3,6 +3,7 @@ PORTNAME= enchant DISTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= textproc devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-html_parse/Makefile +++ textproc/pecl-html_parse/Makefile @@ -3,6 +3,7 @@ PORTNAME= html_parse PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-stem/Makefile +++ textproc/pecl-stem/Makefile @@ -3,6 +3,7 @@ PORTNAME= stem PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-syck/Makefile +++ textproc/pecl-syck/Makefile @@ -3,7 +3,7 @@ PORTNAME= syck PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-wbxml/Makefile +++ textproc/pecl-wbxml/Makefile @@ -3,7 +3,7 @@ PORTNAME= wbxml PORTVERSION= 1.0.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-xdiff/Makefile +++ textproc/pecl-xdiff/Makefile @@ -3,6 +3,7 @@ PORTNAME= xdiff PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-xslcache/Makefile +++ textproc/pecl-xslcache/Makefile @@ -3,6 +3,7 @@ PORTNAME= xslcache PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/pecl-yaml/Makefile +++ textproc/pecl-yaml/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaml PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- textproc/php-mecab/Makefile +++ textproc/php-mecab/Makefile @@ -3,6 +3,7 @@ PORTNAME= php-mecab PORTVERSION= 0.6.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= textproc --- textproc/php55-ctype/Makefile +++ textproc/php55-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-dom/Makefile +++ textproc/php55-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-pspell/Makefile +++ textproc/php55-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-simplexml/Makefile +++ textproc/php55-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-wddx/Makefile +++ textproc/php55-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-xml/Makefile +++ textproc/php55-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-xmlreader/Makefile +++ textproc/php55-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-xmlwriter/Makefile +++ textproc/php55-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php55-xsl/Makefile +++ textproc/php55-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php55 --- textproc/php56-ctype/Makefile +++ textproc/php56-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-dom/Makefile +++ textproc/php56-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-pspell/Makefile +++ textproc/php56-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-simplexml/Makefile +++ textproc/php56-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-wddx/Makefile +++ textproc/php56-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-xml/Makefile +++ textproc/php56-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-xmlreader/Makefile +++ textproc/php56-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-xmlwriter/Makefile +++ textproc/php56-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php56-xsl/Makefile +++ textproc/php56-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php56 --- textproc/php70-ctype/Makefile +++ textproc/php70-ctype/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-dom/Makefile +++ textproc/php70-dom/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-pspell/Makefile +++ textproc/php70-pspell/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-simplexml/Makefile +++ textproc/php70-simplexml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-wddx/Makefile +++ textproc/php70-wddx/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-xml/Makefile +++ textproc/php70-xml/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-xmlreader/Makefile +++ textproc/php70-xmlreader/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-xmlwriter/Makefile +++ textproc/php70-xmlwriter/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- textproc/php70-xsl/Makefile +++ textproc/php70-xsl/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= textproc MASTERDIR= ${.CURDIR}/../../lang/php70 --- www/pecl-APC/Makefile +++ www/pecl-APC/Makefile @@ -3,7 +3,7 @@ PORTNAME= APC PORTVERSION= 3.1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www #MASTER_SITES= http://pecl.php.net/get/ MASTER_SITES= LOCAL/sunpoet --- www/pecl-amfext/Makefile +++ www/pecl-amfext/Makefile @@ -3,7 +3,7 @@ PORTNAME= amfext PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-http/Makefile +++ www/pecl-http/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-http1/Makefile +++ www/pecl-http1/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 1.7.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-http2/Makefile +++ www/pecl-http2/Makefile @@ -3,6 +3,7 @@ PORTNAME= http PORTVERSION= 2.5.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-solr/Makefile +++ www/pecl-solr/Makefile @@ -3,6 +3,7 @@ PORTNAME= solr PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-sphinx/Makefile +++ www/pecl-sphinx/Makefile @@ -3,6 +3,7 @@ PORTNAME= sphinx DISTVERSION= 1.3.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-swish/Makefile +++ www/pecl-swish/Makefile @@ -3,6 +3,7 @@ PORTNAME= swish PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= www pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-twig/Makefile +++ www/pecl-twig/Makefile @@ -3,6 +3,7 @@ PORTNAME= twig PORTVERSION= 1.24.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pear.twig-project.org/get/ PKGNAMEPREFIX= pecl- --- www/pecl-yaf/Makefile +++ www/pecl-yaf/Makefile @@ -3,6 +3,7 @@ PORTNAME= yaf PORTVERSION= 2.3.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/pecl-yar/Makefile +++ www/pecl-yar/Makefile @@ -3,6 +3,7 @@ PORTNAME= yar PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- --- www/phalcon/Makefile +++ www/phalcon/Makefile @@ -3,6 +3,7 @@ PORTNAME= phalcon PORTVERSION= 2.0.13 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}-v CATEGORIES= www --- www/php-screw/Makefile +++ www/php-screw/Makefile @@ -40,9 +40,11 @@ do-build: do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} - @${INSTALL_DATA} ${WRKSRC}/modules/php_screw.so \ + @${INSTALL_LIB} ${WRKSRC}/modules/php_screw.so \ ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_PROGRAM} ${WRKSRC}/tools/screw ${STAGEDIR}${PREFIX}/bin - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so" > \ + ${STAGEDIR}${PREFIX}/etc/php/ext-30-screw.ini .include --- www/php-screw/files/pkg-message.in +++ www/php-screw/files/pkg-message.in @@ -2,7 +2,8 @@ You have installed the php-screw package. -Edit %%LOCALBASE%%/etc/php.ini and add: +The following line has been added to %%PREFIX%%/etc/php/ext-30-screw.ini, +so that the extension is automatically enabled: extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/php_screw.so" --- www/php-templates/Makefile +++ www/php-templates/Makefile @@ -31,5 +31,8 @@ do-install: ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}-doc/* ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php + @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/templates.so" > \ + ${STAGEDIR}${PREFIX}/etc/php/ext-20-templates.ini .include --- www/php-templates/files/pkg-message.in +++ www/php-templates/files/pkg-message.in @@ -2,7 +2,8 @@ You have installed the php-templates package. -Edit %%LOCALBASE%%/etc/php.ini and add: +The following line has been added to %%PREFIX%%/etc/php/ext-20-templates.ini, +so that the extension is automatically enabled: extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/templates.so" --- www/php55-opcache/Makefile +++ www/php55-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 --- www/php55-session/Makefile +++ www/php55-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 --- www/php55-tidy/Makefile +++ www/php55-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 --- www/php56-opcache/Makefile +++ www/php56-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 --- www/php56-session/Makefile +++ www/php56-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 --- www/php56-tidy/Makefile +++ www/php56-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 --- www/php70-opcache/Makefile +++ www/php70-opcache/Makefile @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 --- www/php70-session/Makefile +++ www/php70-session/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 --- www/php70-tidy/Makefile +++ www/php70-tidy/Makefile @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70