View | Details | Raw Unified | Return to bug 210697 | Differences between
and this patch

Collapse All | Expand All

(-)Mk/Scripts/create-manifest.sh (-1 / +3 lines)
Lines 104-110 done Link Here
104
104
105
exec >${dp_METADIR}/+DISPLAY
105
exec >${dp_METADIR}/+DISPLAY
106
106
107
[ -f ${dp_PKGMESSAGE} ] && cat ${dp_PKGMESSAGE}
107
for message in ${dp_PKGMESSAGE}; do
108
  [ -f "${message}" ] && cat "${message}"
109
done
108
110
109
# Try and keep these messages in sync with check-deprecated
111
# Try and keep these messages in sync with check-deprecated
110
if [ ${dp_MAINTAINER} = "ports@FreeBSD.org" ]; then
112
if [ ${dp_MAINTAINER} = "ports@FreeBSD.org" ]; then
(-)Mk/Uses/php.mk (-37 / +50 lines)
Lines 21-26 Link Here
21
#
21
#
22
# USE_PHP=	ext1 ext2 ext3
22
# USE_PHP=	ext1 ext2 ext3
23
#
23
#
24
# PHP and Zend extensions built with :ext and :zend are automatically enabled
25
# when the port is installed.  Each port creates a PHP_EXT_INI_FILE file and
26
# registers the extension in it.
27
#
28
# The PHP_EXT_INI_FILE file has a priority number embeded into its name so that
29
# extensions are loaded in the right order.  The priority is defined by
30
# PHP_MOD_PRIO and is a number between 00 and 99.
31
#
32
# For extensions that do not depend on any extension, the priority is
33
# automatically set to 20, for extensions that depend on another extension, the
34
# priority is automatically set to 30.  Some extensions may need to be loaded
35
# before everyone else (for example opcache), or after an extension with a
36
# priotity of 30, in that case, add PHP_MOD_PRIO=XX in the port's Makefile.
37
# For example:
38
#
39
# USES=		php:ext
40
# USE_PHP=	xml wddx
41
# PHP_MOD_PRIO=	40
42
#
24
# The port can set these options in its Makefile before bsd.port.pre.mk:
43
# The port can set these options in its Makefile before bsd.port.pre.mk:
25
#
44
#
26
# DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed.
45
# DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed.
Lines 204-216 _INCLUDE_USES_PHP_POST_MK=yes Link Here
204
223
205
.  if ${php_ARGS:Mext} || ${php_ARGS:Mzend}
224
.  if ${php_ARGS:Mext} || ${php_ARGS:Mzend}
206
PHP_MODNAME?=	${PORTNAME}
225
PHP_MODNAME?=	${PORTNAME}
207
PHP_HEADER_DIRS?=	""
226
PHP_EXT_PKGMESSAGE=	${WRKDIR}/php-ext-pkg-message
227
PKGMESSAGE+=	${PHP_EXT_PKGMESSAGE}
228
PHP_HEADER_DIRS+=	.
229
# If there is no priority defined, we wing it.
230
.    if !defined(PHP_MOD_PRIO)
231
.      if defined(USE_PHP)
232
# If an extension needs another, put it after the others.
233
PHP_MOD_PRIO=	30
234
.      else
235
# Otherwise, put it where it with everybody.
236
PHP_MOD_PRIO=	20
237
.      endif
238
.    endif
239
PHP_EXT_INI_FILE=	etc/php/ext-${PHP_MOD_PRIO}-${PHP_MODNAME}.ini
208
240
209
do-install:
241
do-install:
210
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
242
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
211
	@${INSTALL_LIB} ${WRKSRC}/modules/${PHP_MODNAME}.so \
243
	@${INSTALL_LIB} ${WRKSRC}/modules/${PHP_MODNAME}.so \
212
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
244
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
213
.    for header in . ${PHP_HEADER_DIRS}
245
.    for header in ${PHP_HEADER_DIRS}
214
		@${MKDIR} ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header}
246
		@${MKDIR} ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header}
215
		@${INSTALL_DATA} ${WRKSRC}/${header}/*.h \
247
		@${INSTALL_DATA} ${WRKSRC}/${header}/*.h \
216
			${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header}
248
			${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/${header}
Lines 219-226 do-install: Link Here
219
	@${GREP} "#define \(COMPILE\|HAVE\|USE\)_" ${WRKSRC}/config.h \
251
	@${GREP} "#define \(COMPILE\|HAVE\|USE\)_" ${WRKSRC}/config.h \
220
		> ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h
252
		> ${STAGEDIR}${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h
221
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
253
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
254
.    if ${php_ARGS:Mzend}
255
	@${ECHO_CMD} "zend_extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE}
256
.    else
257
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/${PHP_EXT_INI_FILE}
258
.    endif
222
259
223
add-plist-info: add-plist-phpext
260
_USES_stage+=	899:add-plist-phpext
224
add-plist-phpext:
261
add-plist-phpext:
225
	@${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \
262
	@${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \
226
		>> ${TMPPLIST}
263
		>> ${TMPPLIST}
Lines 234-277 add-plist-phpext: Link Here
234
		>> ${TMPPLIST}
271
		>> ${TMPPLIST}
235
	@${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \
272
	@${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \
236
		>> ${TMPPLIST}
273
		>> ${TMPPLIST}
237
	@${ECHO_CMD} "@dir etc/php" \
274
	@${ECHO_CMD} "${PHP_EXT_INI_FILE}" \
238
		>> ${TMPPLIST}
275
		>> ${TMPPLIST}
276
	@${ECHO_CMD} "****************************************************************************" > ${PHP_EXT_PKGMESSAGE}
277
	@${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE}
278
	@${ECHO_CMD} "The following line has been added to your ${PREFIX}/${PHP_EXT_INI_FILE}" >> ${PHP_EXT_PKGMESSAGE}
279
	@${ECHO_CMD} "configuration file to automatically load the installed extension:" >> ${PHP_EXT_PKGMESSAGE}
280
	@${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE}
239
.    if ${php_ARGS:Mzend}
281
.    if ${php_ARGS:Mzend}
240
	@${ECHO_CMD} "@exec echo zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \
282
	@${ECHO_CMD} "zend_extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE}
241
		>> ${TMPPLIST}
242
.    else
243
	@${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \
244
		>> ${TMPPLIST}
245
.    endif
246
	@${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \
247
		>> ${TMPPLIST}
248
.    if ${php_ARGS:Mzend}
249
	@${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" \
250
		>> ${TMPPLIST}
251
.    else
252
	@${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \
253
		>> ${TMPPLIST}
254
.    endif
255
	@${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \
256
		>> ${TMPPLIST}
257
	@${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \
258
		>> ${TMPPLIST}
259
260
package-message: php-ini
261
262
php-ini:
263
	@${ECHO_CMD} "****************************************************************************"
264
	@${ECHO_CMD} ""
265
	@${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini"
266
	@${ECHO_CMD} "configuration file to automatically load the installed extension:"
267
	@${ECHO_CMD} ""
268
.    if ${php_ARGS:Mzend}
269
	@${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so"
270
.    else
283
.    else
271
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so"
284
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so" >> ${PHP_EXT_PKGMESSAGE}
272
.    endif
285
.    endif
273
	@${ECHO_CMD} ""
286
	@${ECHO_CMD} "" >> ${PHP_EXT_PKGMESSAGE}
274
	@${ECHO_CMD} "****************************************************************************"
287
	@${ECHO_CMD} "****************************************************************************" >> ${PHP_EXT_PKGMESSAGE}
275
.  endif
288
.  endif
276
289
277
# Extensions
290
# Extensions
(-)archivers/pecl-lzf/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	lzf
4
PORTNAME=	lzf
5
PORTVERSION=	1.6.3
5
PORTVERSION=	1.6.3
6
PORTREVISION=	1
6
CATEGORIES=	archivers pear
7
CATEGORIES=	archivers pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)archivers/pecl-phk/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	phk
4
PORTNAME=	phk
5
PORTVERSION=	3.0.1
5
PORTVERSION=	3.0.1
6
PORTREVISION=	1
6
CATEGORIES=	archivers pear
7
CATEGORIES=	archivers pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)archivers/pecl-rar/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	rar
4
PORTNAME=	rar
5
PORTVERSION=	3.0.2
5
PORTVERSION=	3.0.2
6
PORTREVISION=	1
6
CATEGORIES=	archivers pear
7
CATEGORIES=	archivers pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)archivers/php-horde_lz4/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	horde_lz4
4
PORTNAME=	horde_lz4
5
PORTVERSION=	1.0.7
5
PORTVERSION=	1.0.7
6
PORTREVISION=	1
6
CATEGORIES=	archivers pear
7
CATEGORIES=	archivers pear
7
MASTER_SITES=	http://pear.horde.org/get/
8
MASTER_SITES=	http://pear.horde.org/get/
8
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)archivers/php5-snappy/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	php5-snappy
4
PORTNAME=	php5-snappy
5
PORTVERSION=	0.0.2
5
PORTVERSION=	0.0.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	archivers
7
CATEGORIES=	archivers
8
MASTER_SITES=	GOOGLE_CODE
8
MASTER_SITES=	GOOGLE_CODE
9
PROJECTHOST=	php-snappy
9
PROJECTHOST=	php-snappy
(-)archivers/php55-bz2/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)archivers/php55-phar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)archivers/php55-zip/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)archivers/php55-zlib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)archivers/php56-bz2/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)archivers/php56-phar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)archivers/php56-zip/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)archivers/php56-zlib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)archivers/php70-bz2/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)archivers/php70-phar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)archivers/php70-zip/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)archivers/php70-zlib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	archivers
5
CATEGORIES=	archivers
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)chinese/php-cconv/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	cconv
4
PORTNAME=	cconv
5
PORTVERSION=	0.6.4
5
PORTVERSION=	0.6.4
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	php-
7
DISTVERSIONPREFIX=	php-
7
CATEGORIES=	chinese converters
8
CATEGORIES=	chinese converters
8
MASTER_SITES=	GOOGLE_CODE
9
MASTER_SITES=	GOOGLE_CODE
(-)converters/pecl-fribidi/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	fribidi
4
PORTNAME=	fribidi
5
PORTVERSION=	1.2
5
PORTVERSION=	1.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	converters pear
7
CATEGORIES=	converters pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)converters/pecl-igbinary/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	igbinary
4
PORTNAME=	igbinary
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	1
6
CATEGORIES=	converters
7
CATEGORIES=	converters
7
MASTER_SITES=	http://pecl.php.net/get/ \
8
MASTER_SITES=	http://pecl.php.net/get/ \
8
		LOCAL/sunpoet
9
		LOCAL/sunpoet
(-)converters/php5-bsdconv/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	bsdconv
4
PORTNAME=	bsdconv
5
PORTVERSION=	11.3.0
5
PORTVERSION=	11.3.0
6
PORTREVISION=	1
6
CATEGORIES=	converters
7
CATEGORIES=	converters
7
PKGNAMEPREFIX=	php5-
8
PKGNAMEPREFIX=	php5-
8
9
(-)converters/php55-iconv/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)converters/php55-mbstring/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)converters/php55-recode/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)converters/php56-iconv/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)converters/php56-mbstring/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)converters/php56-recode/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)converters/php70-iconv/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)converters/php70-mbstring/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)converters/php70-recode/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	converters
5
CATEGORIES=	converters
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/pecl-chdb/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	chdb
4
PORTNAME=	chdb
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
8
DIST_SUBDIR=	PECL
9
DIST_SUBDIR=	PECL
(-)databases/pecl-dbase/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	dbase
4
PORTNAME=	dbase
5
PORTVERSION=	5.1.0
5
PORTVERSION=	5.1.0
6
PORTREVISION=	1
6
CATEGORIES=	databases pear
7
CATEGORIES=	databases pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-drizzle/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	drizzle
4
PORTNAME=	drizzle
5
PORTVERSION=	0.4.2
5
PORTVERSION=	0.4.2
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-leveldb/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	leveldb
4
PORTNAME=	leveldb
5
PORTVERSION=	0.1.5
5
PORTVERSION=	0.1.5
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-mdbtools/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	mdbtools
4
PORTNAME=	mdbtools
5
PORTVERSION=	1.0.0
5
PORTVERSION=	1.0.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	databases pear
7
CATEGORIES=	databases pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-memcache/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	memcache
4
PORTNAME=	memcache
5
PORTVERSION=	3.0.8
5
PORTVERSION=	3.0.8
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-memcached/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	memcached
4
PORTNAME=	memcached
5
PORTVERSION=	2.2.0
5
PORTVERSION=	2.2.0
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	databases
7
CATEGORIES=	databases
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-mongo/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mongo
4
PORTNAME=	mongo
5
PORTVERSION=	1.6.14
5
PORTVERSION=	1.6.14
6
PORTREVISION=	1
6
CATEGORIES=	databases pear
7
CATEGORIES=	databases pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-mongodb/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	mongodb
3
PORTNAME=	mongodb
4
PORTVERSION=	1.1.8
4
PORTVERSION=	1.1.8
5
PORTREVISION=	1
5
CATEGORIES=	databases pear
6
CATEGORIES=	databases pear
6
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
7
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-mysqlnd_ms/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mysqlnd_ms
4
PORTNAME=	mysqlnd_ms
5
PORTVERSION=	1.5.2
5
PORTVERSION=	1.5.2
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-mysqlnd_qc/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mysqlnd_qc
4
PORTNAME=	mysqlnd_qc
5
PORTVERSION=	1.2.0
5
PORTVERSION=	1.2.0
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-pdo_user/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pdo_user
4
PORTNAME=	pdo_user
5
PORTVERSION=	0.3.0
5
PORTVERSION=	0.3.0
6
PORTREVISION=	1
6
CATEGORIES=	databases www
7
CATEGORIES=	databases www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-rrd/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	rrd
3
PORTNAME=	rrd
4
DISTVERSION=	1.1.3
4
DISTVERSION=	1.1.3
5
PORTREVISION=	3
5
PORTREVISION=	4
6
CATEGORIES=	databases pear
6
CATEGORIES=	databases pear
7
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)databases/pecl-tokyo_tyrant/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	tokyo_tyrant
4
PORTNAME=	tokyo_tyrant
5
PORTVERSION=	0.7.0
5
PORTVERSION=	0.7.0
6
PORTREVISION=	1
6
CATEGORIES=	databases pear
7
CATEGORIES=	databases pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)databases/php-adodb-ext/Makefile (-3 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	adodb-ext
4
PORTNAME=	adodb-ext
5
PORTVERSION=	5.04
5
PORTVERSION=	5.04
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	databases
7
CATEGORIES=	databases
8
MASTER_SITES=	http://phplens.com/lens/dl/
8
MASTER_SITES=	http://phplens.com/lens/dl/
9
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
Lines 16-23 WRKSRC= ${WRKDIR}/adodb-${PORTVERSION:S/.//} Link Here
16
16
17
USES=		dos2unix php:ext zip
17
USES=		dos2unix php:ext zip
18
IGNORE_WITH_PHP=56 70
18
IGNORE_WITH_PHP=56 70
19
19
PHP_MODNAME=	adodb
20
SUB_FILES=	pkg-message
21
20
22
.include <bsd.port.pre.mk>
21
.include <bsd.port.pre.mk>
23
22
(-)databases/php-adodb-ext/files/pkg-message.in (-13 lines)
Removed Link Here
1
*****************************************************************************
2
The ADOdb extension has been installed successful.
3
Add a line containing
4
5
       extension=adodb.so
6
7
to your %%LOCALBASE%%/etc/php/extensions.ini to load it.
8
If you have the Zend Optimizer installed, add the line
9
10
       zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/adodb.so
11
12
to your [zend] section in the php.ini file, too.
13
*****************************************************************************
(-)databases/php-mdcached/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mdcached
4
PORTNAME=	mdcached
5
PORTVERSION=	1.0.9
5
PORTVERSION=	1.0.9
6
PORTREVISION=	1
6
CATEGORIES=	databases devel
7
CATEGORIES=	databases devel
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
8
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)databases/php5-pdo_cassandra/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	pdo_cassandra
4
PORTNAME=	pdo_cassandra
5
PORTVERSION=	0.2.1
5
PORTVERSION=	0.2.1
6
PORTREVISION=	5
6
PORTREVISION=	6
7
CATEGORIES=	databases
7
CATEGORIES=	databases
8
PKGNAMEPREFIX=	php5-
8
PKGNAMEPREFIX=	php5-
9
9
(-)databases/php5-tarantool/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	tarantool
4
PORTNAME=	tarantool
5
PORTVERSION=	${TR_VER}
5
PORTVERSION=	${TR_VER}
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
PKGNAMEPREFIX=	php5-
8
PKGNAMEPREFIX=	php5-
8
9
(-)databases/php55-dba/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-interbase/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-mssql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-mysql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-mysqli/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_dblib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_firebird/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_mysql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pdo_sqlite/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-redis/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	redis
4
PORTNAME=	redis
5
PORTVERSION=	2.2.4
5
PORTVERSION=	2.2.4
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
PKGNAMEPREFIX=	php55-
8
PKGNAMEPREFIX=	php55-
8
9
(-)databases/php55-sqlite3/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php55-sybase_ct/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)databases/php56-dba/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-interbase/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-mssql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-mysql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-mysqli/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_dblib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_firebird/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_mysql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pdo_sqlite/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-redis/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	redis
4
PORTNAME=	redis
5
PORTVERSION=	2.2.8
5
PORTVERSION=	2.2.8
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
PKGNAMEPREFIX=	php56-
8
PKGNAMEPREFIX=	php56-
8
9
(-)databases/php56-sqlite3/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php56-sybase_ct/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)databases/php70-dba/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-interbase/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-mysqli/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_dblib/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_firebird/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_mysql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_odbc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pdo_sqlite/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-pgsql/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)databases/php70-redis/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	redis
3
PORTNAME=	redis
4
PORTVERSION=	3.0.0
4
PORTVERSION=	3.0.0
5
PORTREVISION=	1
5
CATEGORIES=	databases
6
CATEGORIES=	databases
6
PKGNAMEPREFIX=	php70-
7
PKGNAMEPREFIX=	php70-
7
8
(-)databases/php70-sqlite3/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	databases
5
CATEGORIES=	databases
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/ioncube/Makefile (+5 lines)
Lines 31-35 do-install: Link Here
31
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so
31
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so
32
	${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}_ts.so \
32
	${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}_ts.so \
33
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so
33
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so
34
# Put it before opcache, like the previous pkg-message was saying
35
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
36
	@${ECHO_CMD} "[Zend]" > ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini
37
	@${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini
38
	@${ECHO_CMD} "zend_extension_ts=${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so" >> ${STAGEDIR}${PREFIX}/etc/php/ext-05-ioncube.ini
34
39
35
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)devel/ioncube/files/pkg-message.in (-10 / +4 lines)
Lines 1-14 Link Here
1
2
You have installed the ionCube loader package.
1
You have installed the ionCube loader package.
3
2
4
Edit %%LOCALBASE%%/etc/php.ini or %%LOCALBASE%%/etc/php/extensions.ini
3
The following lines have been added to %%PREFIX%%/etc/php/ext-05-ioncube.ini so
5
and add this three lines:
4
that the extension has been automatically activated.
6
5
7
--------------------------------------------------------------------------------
8
[Zend]
6
[Zend]
9
zend_extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so"
7
zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so
10
zend_extension_ts="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so"
8
zend_extension_ts=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so
11
--------------------------------------------------------------------------------
12
13
NOTE: If you have any Zend Extension already installed - you need put this before
14
existing zend_extension lines.
(-)devel/ioncube/pkg-plist (+1 lines)
Lines 1-2 Link Here
1
etc/php/ext-05-ioncube.ini
1
lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so
2
lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader.so
2
lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so
3
lib/php/%%PHP_EXT_DIR%%/ioncube/ioncube_loader_ts.so
(-)devel/pecl-APCu/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	APCu
4
PORTNAME=	APCu
5
PORTVERSION=	4.0.10
5
PORTVERSION=	4.0.10
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-automap/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	automap
4
PORTNAME=	automap
5
PORTVERSION=	2.1.0
5
PORTVERSION=	2.1.0
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-bbcode/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	bbcode
4
PORTNAME=	bbcode
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-bcompiler/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	bcompiler
4
PORTNAME=	bcompiler
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-dio/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	dio
3
PORTNAME=	dio
4
DISTVERSION=	0.0.7
4
DISTVERSION=	0.0.7
5
PORTREVISION=	1
5
CATEGORIES=	devel pear
6
CATEGORIES=	devel pear
6
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
7
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-eio/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	eio
4
PORTNAME=	eio
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-ev/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	ev
4
PORTNAME=	ev
5
PORTVERSION=	0.2.15
5
PORTVERSION=	0.2.15
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-event/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	event
4
PORTNAME=	event
5
PORTVERSION=	2.0.4
5
PORTVERSION=	2.0.4
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-expect/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	expect
4
PORTNAME=	expect
5
PORTVERSION=	0.3.3
5
PORTVERSION=	0.3.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-gearman/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	gearman
4
PORTNAME=	gearman
5
PORTVERSION=	1.1.2
5
PORTVERSION=	1.1.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-hidef/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	hidef
4
PORTNAME=	hidef
5
PORTVERSION=	0.1.13
5
PORTVERSION=	0.1.13
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-hrtime/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	hrtime
4
PORTNAME=	hrtime
5
PORTVERSION=	0.5.1
5
PORTVERSION=	0.5.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-htscanner/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	htscanner
4
PORTNAME=	htscanner
5
PORTVERSION=	1.0.1
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-inotify/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	inotify
4
PORTNAME=	inotify
5
PORTVERSION=	0.1.6
5
PORTVERSION=	0.1.6
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-intl/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	intl
4
PORTNAME=	intl
5
PORTVERSION=	3.0.0
5
PORTVERSION=	3.0.0
6
PORTREVISION=	4
6
PORTREVISION=	5
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-jsmin/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jsmin
4
PORTNAME=	jsmin
5
PORTVERSION=	2.0.1
5
PORTVERSION=	2.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-json_post/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	json_post
4
PORTNAME=	json_post
5
PORTVERSION=	1.0.1
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-jsonc/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jsonc
4
PORTNAME=	jsonc
5
PORTVERSION=	1.3.7
5
PORTVERSION=	1.3.7
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-jsond/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jsond
4
PORTNAME=	jsond
5
PORTVERSION=	1.3.0
5
PORTVERSION=	1.3.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-jsonnet/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jsonnet
4
PORTNAME=	jsonnet
5
PORTVERSION=	1.0.0
5
PORTVERSION=	1.0.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-judy/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	judy
4
PORTNAME=	judy
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-libevent/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	libevent
4
PORTNAME=	libevent
5
PORTVERSION=	0.1.0
5
PORTVERSION=	0.1.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-mcve/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	mcve
4
PORTNAME=	mcve
5
PORTVERSION=	7.0.3
5
PORTVERSION=	7.0.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-memoize/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	memoize
4
PORTNAME=	memoize
5
PORTVERSION=	0.2.0
5
PORTVERSION=	0.2.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-msgpack/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	msgpack
4
PORTNAME=	msgpack
5
PORTVERSION=	0.5.7
5
PORTVERSION=	0.5.7
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-ncurses/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	ncurses
4
PORTNAME=	ncurses
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-newt/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	newt
3
PORTNAME=	newt
4
PORTVERSION=	1.2.9
4
PORTVERSION=	1.2.9
5
PORTREVISION=	1
5
CATEGORIES=	devel www
6
CATEGORIES=	devel www
6
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
7
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-operator/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	operator
4
PORTNAME=	operator
5
PORTVERSION=	0.3
5
PORTVERSION=	0.3
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-params/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	params
4
PORTNAME=	params
5
PORTVERSION=	1.0
5
PORTVERSION=	1.0
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-parsekit/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	parsekit
4
PORTNAME=	parsekit
5
PORTVERSION=	1.3.0
5
PORTVERSION=	1.3.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-propro/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	propro
4
PORTNAME=	propro
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-propro2/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	propro
4
PORTNAME=	propro
5
PORTVERSION=	2.0.1
5
PORTVERSION=	2.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-pthreads/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pthreads
4
PORTNAME=	pthreads
5
PORTVERSION=	2.0.10
5
PORTVERSION=	2.0.10
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-qb/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	qb
4
PORTNAME=	qb
5
PORTVERSION=	2.4.0
5
PORTVERSION=	2.4.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-raphf/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	raphf
4
PORTNAME=	raphf
5
PORTVERSION=	1.1.2
5
PORTVERSION=	1.1.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-raphf2/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	raphf
4
PORTNAME=	raphf
5
PORTVERSION=	2.0.0
5
PORTVERSION=	2.0.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-runkit/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	runkit
4
PORTNAME=	runkit
5
PORTVERSION=	1.0.4
5
PORTVERSION=	1.0.4
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-scream/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	scream
4
PORTNAME=	scream
5
DISTVERSION=	0.1.0
5
DISTVERSION=	0.1.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-shape/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	shape
4
PORTNAME=	shape
5
PORTVERSION=	0.9.2
5
PORTVERSION=	0.9.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-spl_types/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	spl_types
4
PORTNAME=	spl_types
5
PORTVERSION=	0.4.0
5
PORTVERSION=	0.4.0
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-spread/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	spread
4
PORTNAME=	spread
5
PORTVERSION=	2.1.0
5
PORTVERSION=	2.1.0
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-statgrab/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	statgrab
4
PORTNAME=	statgrab
5
PORTVERSION=	0.6.0
5
PORTVERSION=	0.6.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-strict/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	strict
4
PORTNAME=	strict
5
PORTVERSION=	0.4.1
5
PORTVERSION=	0.4.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-svn/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	svn
4
PORTNAME=	svn
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-swoole/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	swoole
4
PORTNAME=	swoole
5
PORTVERSION=	1.7.22
5
PORTVERSION=	1.7.22
6
PORTREVISION=	1
6
CATEGORIES=	devel net
7
CATEGORIES=	devel net
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-sync/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	sync
4
PORTNAME=	sync
5
PORTVERSION=	1.0.1
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-test_helpers/Makefile (-2 / +4 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	test_helpers
4
PORTNAME=	test_helpers
5
PORTVERSION=	1.1.0
5
PORTVERSION=	1.1.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
8
MASTER_SITES=	http://pear.phpunit.de/get/
8
MASTER_SITES=	http://pear.phpunit.de/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
Lines 14-21 COMMENT= Extension to ease testing of PHP code Link Here
14
LICENSE=	BSD3CLAUSE
14
LICENSE=	BSD3CLAUSE
15
15
16
CONFIGURE_ARGS=	--enable-test-helpers
16
CONFIGURE_ARGS=	--enable-test-helpers
17
USES=		php:ext tar:tgz
17
USES=		php:zend tar:tgz
18
SUB_FILES=	pkg-message
18
SUB_FILES=	pkg-message
19
IGNORE_WITH_PHP=	70
19
IGNORE_WITH_PHP=	70
20
# This needs to be loaded *after* devel/php-xdebug
21
PHP_MOD_PRIO=	30
20
22
21
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/pecl-test_helpers/files/pkg-message.in (-14 / +1 lines)
Lines 1-20 Link Here
1
*****************************************************************************
1
*****************************************************************************
2
The php extension 'test_helpers' has been installed successful.
2
The php extension 'test_helpers' has been installed successful.
3
Add a line containing
4
3
5
	extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so
4
It has been automatically activated.
6
7
or
8
9
	zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/test_helpers.so
10
11
If this extension is used in combination with other extensions, such as Xdebug,
12
which are also overloading the `ZEND_NEW` opcode you have to load it as
13
`zend_extension` after loading the conflicting extension. This can be done in
14
your `php.ini` like this:
15
16
    zend_extension=xdebug.so
17
    zend_extension=test-helpers.so
18
5
19
Please refer to `phpinfo()` to verify whether a conflict was detected and
6
Please refer to `phpinfo()` to verify whether a conflict was detected and
20
whether the work-around was enabled.
7
whether the work-around was enabled.
(-)devel/pecl-trace/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	trace
4
PORTNAME=	trace
5
PORTVERSION=	0.3.0
5
PORTVERSION=	0.3.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-uopz/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uopz
4
PORTNAME=	uopz
5
PORTVERSION=	2.0.7
5
PORTVERSION=	2.0.7
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-uploadprogress/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uploadprogress
4
PORTNAME=	uploadprogress
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-uri_template/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uri_template
4
PORTNAME=	uri_template
5
PORTVERSION=	1.0
5
PORTVERSION=	1.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-uuid/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uuid
4
PORTNAME=	uuid
5
PORTVERSION=	1.0.4
5
PORTVERSION=	1.0.4
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-vld/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	vld
4
PORTNAME=	vld
5
PORTVERSION=	0.13.0
5
PORTVERSION=	0.13.0
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-weakref/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	weakref
4
PORTNAME=	weakref
5
PORTVERSION=	0.2.6
5
PORTVERSION=	0.2.6
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-xhprof/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	xhprof
4
PORTNAME=	xhprof
5
PORTVERSION=	0.9.4
5
PORTVERSION=	0.9.4
6
PORTREVISION=	1
6
CATEGORIES=	devel pear
7
CATEGORIES=	devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/pecl-yac/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yac
4
PORTNAME=	yac
5
PORTVERSION=	0.9.2
5
PORTVERSION=	0.9.2
6
PORTREVISION=	1
6
PORTEPOCH=	1
7
PORTEPOCH=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
9
MASTER_SITES=	http://pecl.php.net/get/
(-)devel/pecl-zookeeper/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	zookeeper
4
PORTNAME=	zookeeper
5
PORTVERSION=	0.2.2
5
PORTVERSION=	0.2.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)devel/php-jq/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	jq
4
PORTNAME=	jq
5
PORTVERSION=	0.0.1
5
PORTVERSION=	0.0.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	php-
8
PKGNAMEPREFIX=	php-
8
9
(-)devel/php-maxminddb/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	maxminddb
4
PORTNAME=	maxminddb
5
PORTVERSION=	1.1.0
5
PORTVERSION=	1.1.0
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONPREFIX=	v
7
CATEGORIES=	devel net
8
CATEGORIES=	devel net
8
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)devel/php-memoize/Makefile (-1 / +1 lines)
Lines 4-10 Link Here
4
PORTNAME=	php-memoize
4
PORTNAME=	php-memoize
5
PORTVERSION=	0.2.0b1
5
PORTVERSION=	0.2.0b1
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	2
7
PORTREVISION=	3
8
CATEGORIES=	devel
8
CATEGORIES=	devel
9
9
10
MAINTAINER=	gasol.wu@gmail.com
10
MAINTAINER=	gasol.wu@gmail.com
(-)devel/php-scalar_objects/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	scalar_objects
4
PORTNAME=	scalar_objects
5
PORTVERSION=	0.0.20140124
5
PORTVERSION=	0.0.20140124
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
PKGNAMEPREFIX=	php-
8
PKGNAMEPREFIX=	php-
9
9
(-)devel/php-uprofiler/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	uprofiler
4
PORTNAME=	uprofiler
5
PORTVERSION=	0.11.0.20150219
5
PORTVERSION=	0.11.0.20150219
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	php-
8
PKGNAMEPREFIX=	php-
8
9
(-)devel/php-xdebug/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	xdebug
4
PORTNAME=	xdebug
5
PORTVERSION=	2.4.0
5
PORTVERSION=	2.4.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	https://xdebug.org/files/
8
MASTER_SITES=	https://xdebug.org/files/
8
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)devel/php-xdebug/files/pkg-message.in (-10 / +4 lines)
Lines 1-17 Link Here
1
*****************************************************************************
1
*****************************************************************************
2
The php debugger 'xdebug' has been installed successful.
2
The php debugger 'xdebug' has been installed successful.
3
Add a line containing
4
3
5
	extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so
4
It has been automatically enabled.
6
5
7
or
6
xdebug is not compatible with the extension 'Zend Optimizer' - you're only able
8
7
to use one of them.  So take care having at least the lesser required extension
9
	zend_extension=%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/xdebug.so
8
disabled by commenting out it's loader line in its %%PREFIX%%/etc/php/ext-* file.
10
11
to your php.ini to load it. xdebug is not compatible with the extension
12
'Zend Optimizer' - you're only able to use one of them. So take care having
13
at least the lesser required extension disabled by commenting out it's
14
loader line in your php.ini.
15
9
16
Add following section to enable profiling:
10
Add following section to enable profiling:
17
11
(-)devel/php5-blitz-devel/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	blitz-devel
4
PORTNAME=	blitz-devel
5
PORTVERSION=	0.7.2
5
PORTVERSION=	0.7.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://alexeyrybak.com/blitz/
8
MASTER_SITES=	http://alexeyrybak.com/blitz/
8
PKGNAMEPREFIX=	php5-
9
PKGNAMEPREFIX=	php5-
(-)devel/php5-blitz/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	blitz
4
PORTNAME=	blitz
5
PORTVERSION=	0.8.2
5
PORTVERSION=	0.8.2
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://alexeyrybak.com/blitz/
8
MASTER_SITES=	http://alexeyrybak.com/blitz/
8
PKGNAMEPREFIX=	php5-
9
PKGNAMEPREFIX=	php5-
(-)devel/php5-dav/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	dav
4
PORTNAME=	dav
5
PORTVERSION=	1.2
5
PORTVERSION=	1.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://download.pureftpd.org/php-webdav/
8
MASTER_SITES=	http://download.pureftpd.org/php-webdav/
9
PKGNAMEPREFIX=	php5-
9
PKGNAMEPREFIX=	php5-
(-)devel/php5-ice/Makefile (-17 / +2 lines)
Lines 34-60 PHP_MODNAME?= IcePHP Link Here
34
post-install:
34
post-install:
35
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/*.so
35
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/*.so
36
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
36
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
37
37
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-ice.ini
38
add-plist-info:
39
	@${ECHO_CMD} "@exec mkdir -p %D/etc/php" \
40
		>> ${TMPPLIST}
41
	@${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \
42
		>> ${TMPPLIST}
43
	@${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \
44
		>> ${TMPPLIST}
45
	@${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \
46
		>> ${TMPPLIST}
47
	@${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \
48
		>> ${TMPPLIST}
49
	@${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \
50
		>> ${TMPPLIST}
51
	@${ECHO_CMD} "@unexec rmdir %D/etc/php 2> /dev/null || true" \
52
		>> ${TMPPLIST}
53
38
54
security-check:
39
security-check:
55
	@${ECHO_CMD} "****************************************************************************"
40
	@${ECHO_CMD} "****************************************************************************"
56
	@${ECHO_CMD} ""
41
	@${ECHO_CMD} ""
57
	@${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini"
42
	@${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/ext-20-ice.ini"
58
	@${ECHO_CMD} "configuration file to automatically load the installed extension:"
43
	@${ECHO_CMD} "configuration file to automatically load the installed extension:"
59
	@${ECHO_CMD} ""
44
	@${ECHO_CMD} ""
60
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so"
45
	@${ECHO_CMD} "extension=${PHP_MODNAME}.so"
(-)devel/php5-ice/pkg-plist (+1 lines)
Lines 1-3 Link Here
1
etc/php/ext-20-ice.ini
1
lib/php/%%PHP_EXT_DIR%%/IcePHP.so
2
lib/php/%%PHP_EXT_DIR%%/IcePHP.so
2
share/pear/Glacier2.php
3
share/pear/Glacier2.php
3
share/pear/Glacier2/Metrics.php
4
share/pear/Glacier2/Metrics.php
(-)devel/php5-msgpack/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	msgpack
4
PORTNAME=	msgpack
5
PORTVERSION=	2012.05.05
5
PORTVERSION=	2012.05.05
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
PKGNAMEPREFIX=	php5-
8
PKGNAMEPREFIX=	php5-
8
9
(-)devel/php5-pinba/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	pinba
4
PORTNAME=	pinba
5
PORTVERSION=	2012.03.20
5
PORTVERSION=	2012.03.20
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
PKGNAMEPREFIX=	php5-
8
PKGNAMEPREFIX=	php5-
9
9
(-)devel/php5-thrift/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	thrift
4
PORTNAME=	thrift
5
PORTVERSION=	${THRIFT_PORTVERSION}
5
PORTVERSION=	${THRIFT_PORTVERSION}
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	APACHE/thrift/${PORTVERSION}
8
MASTER_SITES=	APACHE/thrift/${PORTVERSION}
8
PKGNAMEPREFIX=	php5-
9
PKGNAMEPREFIX=	php5-
(-)devel/php55-gettext/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-json/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-pcntl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-readline/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-shmop/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-sysvmsg/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-sysvsem/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-sysvshm/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php55-tokenizer/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)devel/php56-gettext/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-json/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-pcntl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-readline/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-shmop/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-sysvmsg/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-sysvsem/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-sysvshm/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php56-tokenizer/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)devel/php70-gettext/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-intl/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	2
4
PORTREVISION=	3
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
6
7
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-json/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-pcntl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-readline/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-shmop/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-sysvmsg/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-sysvsem/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-sysvshm/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)devel/php70-tokenizer/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	devel
5
CATEGORIES=	devel
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)finance/php-tclink/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	tclink
4
PORTNAME=	tclink
5
PORTVERSION=	4.0.2
5
PORTVERSION=	4.0.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	finance
7
CATEGORIES=	finance
8
MASTER_SITES=	https://vault.trustcommerce.com/downloads/
8
MASTER_SITES=	https://vault.trustcommerce.com/downloads/
9
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)ftp/php55-curl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)ftp/php55-ftp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)ftp/php56-curl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)ftp/php56-ftp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)ftp/php70-curl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)ftp/php70-ftp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	ftp
5
CATEGORIES=	ftp
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)graphics/mapserver/Makefile (-16 / +12 lines)
Lines 125-135 CMAKE_ARGS+= -DWITH_POSTGIS=0 Link Here
125
.endif
125
.endif
126
126
127
.if ${PORT_OPTIONS:MPHP}
127
.if ${PORT_OPTIONS:MPHP}
128
BUILD_DEPENDS+=		${LOCALBASE}/bin/php-config:lang/php56
128
USES+=			php:build
129
RUN_BUILDS+=		${LOCALBASE}/bin/php-config:lang/php56
129
IGNORE_WITH_PHP=	55 70
130
PHP_EXTENSION_DIR!=	${LOCALBASE}/bin/php-config --extension-dir | ${SED} -e "s,/usr/local/,,"
131
CMAKE_ARGS+=		-DWITH_PHP=1
130
CMAKE_ARGS+=		-DWITH_PHP=1
132
PLIST_SUB+=		PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
133
PLIST_SUB+=		PHP=""
131
PLIST_SUB+=		PHP=""
134
.else
132
.else
135
CMAKE_ARGS+=		-DWITH_PHP=0
133
CMAKE_ARGS+=		-DWITH_PHP=0
Lines 188-209 do-install: Link Here
188
.endfor
186
.endfor
189
	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libmapserver.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib
187
	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libmapserver.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib
190
188
191
.if ${PORT_OPTIONS:MPHP}
189
	@${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2
192
	@${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR}
190
	@${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so
191
192
do-install-PHP-on:
193
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
193
	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/mapscript/php/php_mapscript.so \
194
	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/mapscript/php/php_mapscript.so \
194
		${STAGEDIR}${PREFIX}/${PHP_EXTENSION_DIR}/
195
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/
195
.endif
196
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
197
	@${ECHO_CMD} "extension=php_mapscript.so" > ${STAGEDIR}${PREFIX}/etc/php/ext-20-php_mapscript.ini
196
198
197
.if ${PORT_OPTIONS:MPYTHON}
199
200
do-install-PYTHON-on:
198
	@${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/
201
	@${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/
199
	(cd ${BUILD_WRKSRC}/mapscript/python && ${CP} mapscript.py _mapscript.so ${STAGEDIR}${PYTHON_SITELIBDIR}/)
202
	(cd ${BUILD_WRKSRC}/mapscript/python && ${CP} mapscript.py _mapscript.so ${STAGEDIR}${PYTHON_SITELIBDIR}/)
200
.endif
201
203
202
	@${LN} -s ${PREFIX}/lib/libmapserver.so.7.0.1 ${STAGEDIR}${PREFIX}/lib/libmapserver.so.2
203
	@${LN} -s ${PREFIX}/lib/libmapserver.so.2 ${STAGEDIR}${PREFIX}/lib/libmapserver.so
204
205
.if ${PORT_OPTIONS:MPHP}
206
	@${ECHO_MSG} "Please add the line extension=php_mapscript.so to ${PREFIX}/etc/php/extensions.ini"
207
.endif
208
204
209
.include <bsd.port.mk>
205
.include <bsd.port.mk>
(-)graphics/mapserver/pkg-plist (-1 / +2 lines)
Lines 8-16 bin/shptreetst Link Here
8
bin/shptreevis
8
bin/shptreevis
9
bin/sortshp
9
bin/sortshp
10
bin/tile4ms
10
bin/tile4ms
11
%%PHP%%etc/php/ext-20-php_mapscript.ini
11
lib/libmapserver.so
12
lib/libmapserver.so
12
lib/libmapserver.so.2
13
lib/libmapserver.so.2
13
lib/libmapserver.so.7.0.1
14
lib/libmapserver.so.7.0.1
14
%%PHP%%%%PHP_EXTENSION_DIR%%/php_mapscript.so
15
%%PHP%%lib/php/%%PHP_EXT_DIR%%/php_mapscript.so
15
%%PYTHON%%%%PYTHON_SITELIBDIR%%/mapscript.py
16
%%PYTHON%%%%PYTHON_SITELIBDIR%%/mapscript.py
16
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_mapscript.so
17
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_mapscript.so
(-)graphics/pecl-gmagick/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	gmagick
4
PORTNAME=	gmagick
5
PORTVERSION=	1.1.7RC3
5
PORTVERSION=	1.1.7RC3
6
PORTREVISION=	1
6
CATEGORIES=	graphics
7
CATEGORIES=	graphics
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)graphics/pecl-imagick/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	imagick
4
PORTNAME=	imagick
5
DISTVERSION=	3.4.1
5
DISTVERSION=	3.4.1
6
PORTREVISION=	1
6
CATEGORIES=	graphics
7
CATEGORIES=	graphics
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)graphics/pecl-imlib2/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	imlib2
4
PORTNAME=	imlib2
5
PORTVERSION=	0.1.00
5
PORTVERSION=	0.1.00
6
PORTREVISION=	6
6
PORTREVISION=	7
7
CATEGORIES=	graphics
7
CATEGORIES=	graphics
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)graphics/pecl-qrencode/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	qrencode
4
PORTNAME=	qrencode
5
PORTVERSION=	0.4
5
PORTVERSION=	0.4
6
PORTREVISION=	1
6
CATEGORIES=	graphics pear
7
CATEGORIES=	graphics pear
7
MASTER_SITES=	LOCAL/vanilla
8
MASTER_SITES=	LOCAL/vanilla
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)graphics/php-facedetect/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	facedetect
4
PORTNAME=	facedetect
5
PORTVERSION=	1.1
5
PORTVERSION=	1.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	graphics
7
CATEGORIES=	graphics
8
PKGNAMEPREFIX=	php-
8
PKGNAMEPREFIX=	php-
9
9
(-)graphics/php-libpuzzle/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	libpuzzle
4
PORTNAME=	libpuzzle
5
PORTVERSION=	0.11
5
PORTVERSION=	0.11
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	graphics
7
CATEGORIES=	graphics
8
MASTER_SITES=	http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/release/ \
8
MASTER_SITES=	http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/release/ \
9
		ftp://ftp.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/
9
		ftp://ftp.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/
(-)graphics/php-magickwand/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	magickwand
4
PORTNAME=	magickwand
5
PORTVERSION=	1.0.9
5
PORTVERSION=	1.0.9
6
PORTREVISION=	4
6
PORTREVISION=	5
7
CATEGORIES=	graphics
7
CATEGORIES=	graphics
8
MASTER_SITES=	http://www.magickwand.org/download/php/
8
MASTER_SITES=	http://www.magickwand.org/download/php/
9
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)graphics/php5-ffmpeg/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	ffmpeg
4
PORTNAME=	ffmpeg
5
PORTVERSION=	0.6.0.20120114
5
PORTVERSION=	0.6.0.20120114
6
PORTREVISION=	1
6
PORTREVISION=	2
7
DISTVERSIONPREFIX=	php-
7
DISTVERSIONPREFIX=	php-
8
CATEGORIES=	graphics
8
CATEGORIES=	graphics
9
MASTER_SITES=	LOCAL/sunpoet
9
MASTER_SITES=	LOCAL/sunpoet
(-)graphics/php55-exif/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)graphics/php55-gd/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)graphics/php56-exif/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)graphics/php56-gd/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)graphics/php70-exif/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)graphics/php70-gd/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	graphics
5
CATEGORIES=	graphics
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)japanese/php5-mecab/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	mecab
3
PORTNAME=	mecab
4
PORTVERSION=	0.5.0
4
PORTVERSION=	0.5.0
5
PORTREVISION=	1
5
CATEGORIES=	japanese
6
CATEGORIES=	japanese
6
MASTER_SITES=	http://github.com/downloads/rsky/php-${PORTNAME}/
7
MASTER_SITES=	http://github.com/downloads/rsky/php-${PORTNAME}/
7
DISTNAME=	php-mecab-${PORTVERSION}
8
DISTNAME=	php-mecab-${PORTVERSION}
(-)lang/pecl-perl/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	perl
4
PORTNAME=	perl
5
DISTVERSION=	1.0.1
5
DISTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	lang perl5
7
CATEGORIES=	lang perl5
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)lang/php55/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	php55
4
PORTNAME=	php55
5
PORTVERSION=	5.5.38
5
PORTVERSION=	5.5.38
6
PORTREVISION?=	0
6
PORTREVISION?=	1
7
CATEGORIES?=	lang devel www
7
CATEGORIES?=	lang devel www
8
MASTER_SITES=	PHP/distributions
8
MASTER_SITES=	PHP/distributions
9
DISTNAME=	php-${PORTVERSION}
9
DISTNAME=	php-${PORTVERSION}
(-)lang/php55/Makefile.ext (+2 lines)
Lines 217-222 USE_OPENSSL= yes Link Here
217
.endif
217
.endif
218
218
219
.if ${PHP_MODNAME} == "opcache"
219
.if ${PHP_MODNAME} == "opcache"
220
# This is needed by Zend extensions, keep before everything.
221
PHP_MOD_PRIO=	10
220
CONFIGURE_ARGS+=--enable-opcache
222
CONFIGURE_ARGS+=--enable-opcache
221
.endif
223
.endif
222
224
(-)lang/php56/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	php56
4
PORTNAME=	php56
5
PORTVERSION=	5.6.24
5
PORTVERSION=	5.6.24
6
PORTREVISION?=	0
6
PORTREVISION?=	1
7
CATEGORIES?=	lang devel www
7
CATEGORIES?=	lang devel www
8
MASTER_SITES=	PHP/distributions
8
MASTER_SITES=	PHP/distributions
9
DISTNAME=	php-${PORTVERSION}
9
DISTNAME=	php-${PORTVERSION}
(-)lang/php56/Makefile.ext (+2 lines)
Lines 217-222 USE_OPENSSL= yes Link Here
217
.endif
217
.endif
218
218
219
.if ${PHP_MODNAME} == "opcache"
219
.if ${PHP_MODNAME} == "opcache"
220
# This is needed by Zend extensions, keep before everything.
221
PHP_MOD_PRIO=	10
220
CONFIGURE_ARGS+=--enable-opcache
222
CONFIGURE_ARGS+=--enable-opcache
221
.endif
223
.endif
222
224
(-)lang/php70/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	php70
4
PORTNAME=	php70
5
PORTVERSION=	7.0.9
5
PORTVERSION=	7.0.9
6
PORTREVISION?=	2
6
CATEGORIES?=	lang devel www
7
CATEGORIES?=	lang devel www
7
MASTER_SITES=	PHP/distributions
8
MASTER_SITES=	PHP/distributions
8
DISTNAME=	php-${PORTVERSION}
9
DISTNAME=	php-${PORTVERSION}
(-)lang/php70/Makefile.ext (+2 lines)
Lines 209-214 USE_OPENSSL= yes Link Here
209
.endif
209
.endif
210
210
211
.if ${PHP_MODNAME} == "opcache"
211
.if ${PHP_MODNAME} == "opcache"
212
# This is needed by Zend extensions, keep before everything.
213
PHP_MOD_PRIO=	10
212
CONFIGURE_ARGS+=--enable-opcache
214
CONFIGURE_ARGS+=--enable-opcache
213
USES+=	localbase
215
USES+=	localbase
214
.endif
216
.endif
(-)mail/pecl-esmtp/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	esmtp
4
PORTNAME=	esmtp
5
PORTVERSION=	0.3.1
5
PORTVERSION=	0.3.1
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	mail www
7
CATEGORIES=	mail www
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)mail/pecl-mailparse/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mailparse
4
PORTNAME=	mailparse
5
PORTVERSION=	2.1.6
5
PORTVERSION=	2.1.6
6
PORTREVISION=	1
6
CATEGORIES=	mail www
7
CATEGORIES=	mail www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)mail/pecl-pop3/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pop3
4
PORTNAME=	pop3
5
PORTVERSION=	1.0.2
5
PORTVERSION=	1.0.2
6
PORTREVISION=	1
6
CATEGORIES=	mail
7
CATEGORIES=	mail
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)mail/php55-imap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	mail
5
CATEGORIES=	mail
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)mail/php56-imap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	mail
5
CATEGORIES=	mail
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)mail/php70-imap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	mail
5
CATEGORIES=	mail
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)math/pecl-big_int/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	big_int
4
PORTNAME=	big_int
5
PORTVERSION=	1.0.7
5
PORTVERSION=	1.0.7
6
PORTREVISION=	1
6
CATEGORIES=	math devel pear
7
CATEGORIES=	math devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)math/pecl-bitset/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	bitset
4
PORTNAME=	bitset
5
PORTVERSION=	3.0.0
5
PORTVERSION=	3.0.0
6
PORTREVISION=	1
6
CATEGORIES=	math
7
CATEGORIES=	math
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)math/pecl-bitset2/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	bitset
4
PORTNAME=	bitset
5
PORTVERSION=	2.0.3
5
PORTVERSION=	2.0.3
6
PORTREVISION=	1
6
CATEGORIES=	math
7
CATEGORIES=	math
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)math/pecl-stats/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	stats
4
PORTNAME=	stats
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	1
6
CATEGORIES=	math textproc pear
7
CATEGORIES=	math textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)math/pecl-trader/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	trader
4
PORTNAME=	trader
5
PORTVERSION=	0.3.0
5
PORTVERSION=	0.3.0
6
PORTREVISION=	1
6
CATEGORIES=	math devel
7
CATEGORIES=	math devel
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)math/php55-bcmath/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)math/php55-gmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)math/php56-bcmath/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)math/php56-gmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)math/php70-bcmath/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)math/php70-gmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	math
5
CATEGORIES=	math
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)misc/pecl-timezonedb/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	timezonedb
4
PORTNAME=	timezonedb
5
PORTVERSION=	2016.5
5
PORTVERSION=	2016.5
6
PORTREVISION=	1
6
CATEGORIES=	misc
7
CATEGORIES=	misc
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)misc/php55-calendar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	misc
5
CATEGORIES=	misc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)misc/php56-calendar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	misc
5
CATEGORIES=	misc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)misc/php70-calendar/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	misc
5
CATEGORIES=	misc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)multimedia/php-pHash/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pHash
4
PORTNAME=	pHash
5
PORTVERSION=	0.9.6
5
PORTVERSION=	0.9.6
6
PORTREVISION=	1
6
CATEGORIES=	multimedia devel
7
CATEGORIES=	multimedia devel
7
MASTER_SITES=	http://phash.org/releases/ \
8
MASTER_SITES=	http://phash.org/releases/ \
8
		http://www.cyberbotx.com/pHash/
9
		http://www.cyberbotx.com/pHash/
(-)net-im/pecl-stomp/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	stomp
4
PORTNAME=	stomp
5
PORTVERSION=	1.0.9
5
PORTVERSION=	1.0.9
6
PORTREVISION=	1
6
CATEGORIES=	net-im pear
7
CATEGORIES=	net-im pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net-mgmt/php55-snmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net-mgmt
5
CATEGORIES=	net-mgmt
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)net-mgmt/php56-snmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net-mgmt
5
CATEGORIES=	net-mgmt
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)net-mgmt/php70-snmp/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net-mgmt
5
CATEGORIES=	net-mgmt
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)net/pecl-amqp/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	amqp
4
PORTNAME=	amqp
5
PORTVERSION=	1.4.0
5
PORTVERSION=	1.4.0
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	net pear
7
CATEGORIES=	net pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-apn/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	apn
4
PORTNAME=	apn
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	net pear
7
CATEGORIES=	net pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-cvsclient/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	cvsclient
4
PORTNAME=	cvsclient
5
PORTVERSION=	0.2
5
PORTVERSION=	0.2
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-geoip/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	geoip
4
PORTNAME=	geoip
5
PORTVERSION=	1.1.0
5
PORTVERSION=	1.1.0
6
PORTREVISION=	1
6
CATEGORIES=	net www
7
CATEGORIES=	net www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-gupnp/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	gupnp
4
PORTNAME=	gupnp
5
PORTVERSION=	1.0.0
5
PORTVERSION=	1.0.0
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-ip2location/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	ip2location
4
PORTNAME=	ip2location
5
PORTVERSION=	6.0.4
5
PORTVERSION=	6.0.4
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-mosquitto/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mosquitto
4
PORTNAME=	mosquitto
5
PORTVERSION=	0.3.0
5
PORTVERSION=	0.3.0
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-oauth/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	oauth
4
PORTNAME=	oauth
5
PORTVERSION=	1.2.3
5
PORTVERSION=	1.2.3
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-radius/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	radius
4
PORTNAME=	radius
5
DISTVERSION=	1.3.0
5
DISTVERSION=	1.3.0
6
PORTREVISION=	1
6
CATEGORIES=	net security pear
7
CATEGORIES=	net security pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-smbclient/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	smbclient
3
PORTNAME=	smbclient
4
PORTVERSION=	0.8.0
4
PORTVERSION=	0.8.0
5
PORTREVISION=	1
5
CATEGORIES=	net pear
6
CATEGORIES=	net pear
6
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
7
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)net/pecl-yaz/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yaz
4
PORTNAME=	yaz
5
PORTVERSION=	1.1.6
5
PORTVERSION=	1.1.6
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-yp/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yp
4
PORTNAME=	yp
5
PORTVERSION=	1.0.1
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	net pear
7
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)net/pecl-zmq/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	zmq
3
PORTNAME=	zmq
4
PORTVERSION=	1.1.3
4
PORTVERSION=	1.1.3
5
PORTREVISION=	1
5
PORTREVISION=	2
6
CATEGORIES=	net pear
6
CATEGORIES=	net pear
7
MASTER_SITES=	http://pecl.php.net/get/
7
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
8
PKGNAMEPREFIX=	pecl-
(-)net/php55-ldap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)net/php55-soap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)net/php55-sockets/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)net/php55-xmlrpc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)net/php56-ldap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)net/php56-soap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)net/php56-sockets/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)net/php56-xmlrpc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)net/php70-ldap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)net/php70-soap/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)net/php70-sockets/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)net/php70-xmlrpc/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	net
5
CATEGORIES=	net
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)print/pecl-haru/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	haru
4
PORTNAME=	haru
5
PORTVERSION=	1.0.4
5
PORTVERSION=	1.0.4
6
PORTREVISION=	1
6
CATEGORIES=	print pear
7
CATEGORIES=	print pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)print/pecl-pdflib/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pdflib
4
PORTNAME=	pdflib
5
PORTVERSION=	3.0.4
5
PORTVERSION=	3.0.4
6
PORTREVISION=	1
6
CATEGORIES=	print pear
7
CATEGORIES=	print pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)print/pecl-ps/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	ps
4
PORTNAME=	ps
5
PORTVERSION=	1.3.7
5
PORTVERSION=	1.3.7
6
PORTREVISION=	1
6
CATEGORIES=	print pear
7
CATEGORIES=	print pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-crack/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	crack
4
PORTNAME=	crack
5
PORTVERSION=	0.4
5
PORTVERSION=	0.4
6
PORTREVISION=	1
6
PORTEPOCH=	1
7
PORTEPOCH=	1
7
CATEGORIES=	security www
8
CATEGORIES=	security www
8
MASTER_SITES=	http://pecl.php.net/get/
9
MASTER_SITES=	http://pecl.php.net/get/
(-)security/pecl-crypto/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	crypto
4
PORTNAME=	crypto
5
PORTVERSION=	0.2.2
5
PORTVERSION=	0.2.2
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-gnupg/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	gnupg
4
PORTNAME=	gnupg
5
PORTVERSION=	1.3.6
5
PORTVERSION=	1.3.6
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-pam/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pam
4
PORTNAME=	pam
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	1
6
CATEGORIES=	security pear
7
CATEGORIES=	security pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-scrypt/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	scrypt
4
PORTNAME=	scrypt
5
PORTVERSION=	1.2
5
PORTVERSION=	1.2
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	security pear
7
CATEGORIES=	security pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-ssh2/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	ssh2
4
PORTNAME=	ssh2
5
PORTVERSION=	0.12
5
PORTVERSION=	0.12
6
PORTREVISION=	1
6
CATEGORIES=	security pear
7
CATEGORIES=	security pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/pecl-tcpwrap/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	tcpwrap
4
PORTNAME=	tcpwrap
5
PORTVERSION=	1.1.3
5
PORTVERSION=	1.1.3
6
PORTREVISION=	1
6
CATEGORIES=	security pear
7
CATEGORIES=	security pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)security/php-suhosin/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	suhosin
4
PORTNAME=	suhosin
5
PORTVERSION=	0.9.38
5
PORTVERSION=	0.9.38
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	http://download.suhosin.org/
8
MASTER_SITES=	http://download.suhosin.org/
8
PKGNAMEPREFIX=	php-
9
PKGNAMEPREFIX=	php-
(-)security/php55-filter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)security/php55-hash/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)security/php55-mcrypt/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)security/php55-openssl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)security/php56-filter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)security/php56-hash/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)security/php56-mcrypt/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)security/php56-openssl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)security/php70-filter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)security/php70-hash/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)security/php70-mcrypt/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)security/php70-openssl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	security
5
CATEGORIES=	security
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)sysutils/pecl-mogilefs/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	mogilefs
4
PORTNAME=	mogilefs
5
PORTVERSION=	0.9.2
5
PORTVERSION=	0.9.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	sysutils pear
7
CATEGORIES=	sysutils pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)sysutils/pecl-proctitle/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	proctitle
4
PORTNAME=	proctitle
5
PORTVERSION=	0.1.2
5
PORTVERSION=	0.1.2
6
PORTREVISION=	1
6
CATEGORIES=	sysutils pear
7
CATEGORIES=	sysutils pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)sysutils/php55-fileinfo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)sysutils/php55-posix/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)sysutils/php56-fileinfo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)sysutils/php56-posix/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)sysutils/php70-fileinfo/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)sysutils/php70-posix/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/libmrss-php/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	libmrss
4
PORTNAME=	libmrss
5
PORTVERSION=	0.19.2
5
PORTVERSION=	0.19.2
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	textproc
7
CATEGORIES=	textproc
8
MASTER_SITES=	http://www.autistici.org/bakunin/libmrss/
8
MASTER_SITES=	http://www.autistici.org/bakunin/libmrss/
9
PKGNAMESUFFIX=	-php
9
PKGNAMESUFFIX=	-php
(-)textproc/pecl-cld/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	cld
4
PORTNAME=	cld
5
PORTVERSION=	0.5.0
5
PORTVERSION=	0.5.0
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-ctemplate/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	cTemplate
4
PORTNAME=	cTemplate
5
PORTVERSION=	1.12
5
PORTVERSION=	1.12
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
DISTVERSIONPREFIX=	v
8
DISTVERSIONPREFIX=	v
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-doublemetaphone/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	doublemetaphone
4
PORTNAME=	doublemetaphone
5
PORTVERSION=	1.0.1
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-enchant/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	enchant
4
PORTNAME=	enchant
5
DISTVERSION=	1.1.0
5
DISTVERSION=	1.1.0
6
PORTREVISION=	1
6
CATEGORIES=	textproc devel pear
7
CATEGORIES=	textproc devel pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-html_parse/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	html_parse
4
PORTNAME=	html_parse
5
PORTVERSION=	1.0.0
5
PORTVERSION=	1.0.0
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-stem/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	stem
4
PORTNAME=	stem
5
PORTVERSION=	1.5.1
5
PORTVERSION=	1.5.1
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-syck/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	syck
4
PORTNAME=	syck
5
PORTVERSION=	0.9.3
5
PORTVERSION=	0.9.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-wbxml/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	wbxml
4
PORTNAME=	wbxml
5
PORTVERSION=	1.0.3
5
PORTVERSION=	1.0.3
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-xdiff/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	xdiff
4
PORTNAME=	xdiff
5
PORTVERSION=	1.5.2
5
PORTVERSION=	1.5.2
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-xslcache/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	xslcache
4
PORTNAME=	xslcache
5
PORTVERSION=	0.7.2
5
PORTVERSION=	0.7.2
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/pecl-yaml/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yaml
4
PORTNAME=	yaml
5
PORTVERSION=	1.2.0
5
PORTVERSION=	1.2.0
6
PORTREVISION=	1
6
CATEGORIES=	textproc pear
7
CATEGORIES=	textproc pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)textproc/php-mecab/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	php-mecab
4
PORTNAME=	php-mecab
5
PORTVERSION=	0.6.0
5
PORTVERSION=	0.6.0
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONPREFIX=	v
7
CATEGORIES=	textproc
8
CATEGORIES=	textproc
8
9
(-)textproc/php55-ctype/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-dom/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-pspell/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-simplexml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-wddx/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-xml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-xmlreader/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-xmlwriter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php55-xsl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)textproc/php56-ctype/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-dom/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-pspell/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-simplexml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-wddx/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-xml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-xmlreader/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-xmlwriter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php56-xsl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)textproc/php70-ctype/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-dom/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-pspell/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-simplexml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-wddx/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-xml/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-xmlreader/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-xmlwriter/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)textproc/php70-xsl/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	textproc
5
CATEGORIES=	textproc
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)www/pecl-APC/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	APC
4
PORTNAME=	APC
5
PORTVERSION=	3.1.14
5
PORTVERSION=	3.1.14
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	www
7
CATEGORIES=	www
8
#MASTER_SITES=	http://pecl.php.net/get/
8
#MASTER_SITES=	http://pecl.php.net/get/
9
MASTER_SITES=	LOCAL/sunpoet
9
MASTER_SITES=	LOCAL/sunpoet
(-)www/pecl-amfext/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	amfext
4
PORTNAME=	amfext
5
PORTVERSION=	0.9.2
5
PORTVERSION=	0.9.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	www
7
CATEGORIES=	www
8
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
9
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-http/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	http
4
PORTNAME=	http
5
PORTVERSION=	3.0.1
5
PORTVERSION=	3.0.1
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-http1/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	http
4
PORTNAME=	http
5
PORTVERSION=	1.7.6
5
PORTVERSION=	1.7.6
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-http2/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	http
4
PORTNAME=	http
5
PORTVERSION=	2.5.6
5
PORTVERSION=	2.5.6
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-solr/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	solr
4
PORTNAME=	solr
5
PORTVERSION=	1.1.1
5
PORTVERSION=	1.1.1
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-sphinx/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	sphinx
4
PORTNAME=	sphinx
5
DISTVERSION=	1.3.3
5
DISTVERSION=	1.3.3
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-swish/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	swish
4
PORTNAME=	swish
5
PORTVERSION=	0.5.0
5
PORTVERSION=	0.5.0
6
PORTREVISION=	1
6
CATEGORIES=	www pear
7
CATEGORIES=	www pear
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-twig/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	twig
4
PORTNAME=	twig
5
PORTVERSION=	1.24.1
5
PORTVERSION=	1.24.1
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pear.twig-project.org/get/
8
MASTER_SITES=	http://pear.twig-project.org/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-yaf/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yaf
4
PORTNAME=	yaf
5
PORTVERSION=	2.3.5
5
PORTVERSION=	2.3.5
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/pecl-yar/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	yar
4
PORTNAME=	yar
5
PORTVERSION=	1.2.5
5
PORTVERSION=	1.2.5
6
PORTREVISION=	1
6
CATEGORIES=	www
7
CATEGORIES=	www
7
MASTER_SITES=	http://pecl.php.net/get/
8
MASTER_SITES=	http://pecl.php.net/get/
8
PKGNAMEPREFIX=	pecl-
9
PKGNAMEPREFIX=	pecl-
(-)www/phalcon/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	phalcon
4
PORTNAME=	phalcon
5
PORTVERSION=	2.0.13
5
PORTVERSION=	2.0.13
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	${PORTNAME}-v
7
DISTVERSIONPREFIX=	${PORTNAME}-v
7
CATEGORIES=	www
8
CATEGORIES=	www
8
9
(-)www/php-screw/Makefile (-2 / +4 lines)
Lines 40-48 do-build: Link Here
40
40
41
do-install:
41
do-install:
42
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
42
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
43
	@${INSTALL_DATA} ${WRKSRC}/modules/php_screw.so \
43
	@${INSTALL_LIB} ${WRKSRC}/modules/php_screw.so \
44
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
44
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
45
	@${INSTALL_PROGRAM} ${WRKSRC}/tools/screw ${STAGEDIR}${PREFIX}/bin
45
	@${INSTALL_PROGRAM} ${WRKSRC}/tools/screw ${STAGEDIR}${PREFIX}/bin
46
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so
46
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
47
	@${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so" > \
48
		${STAGEDIR}${PREFIX}/etc/php/ext-30-screw.ini
47
49
48
.include <bsd.port.mk>
50
.include <bsd.port.mk>
(-)www/php-screw/files/pkg-message.in (-1 / +2 lines)
Lines 2-8 Link Here
2
2
3
You have installed the php-screw package.
3
You have installed the php-screw package.
4
4
5
Edit %%LOCALBASE%%/etc/php.ini and add:
5
The following line has been added to %%PREFIX%%/etc/php/ext-30-screw.ini,
6
so that the extension is automatically enabled:
6
7
7
extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/php_screw.so"
8
extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/php_screw.so"
8
9
(-)www/php-templates/Makefile (+3 lines)
Lines 31-35 do-install: Link Here
31
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
31
		${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	${INSTALL_DATA} ${WRKSRC}-doc/* ${STAGEDIR}${DOCSDIR}
33
	${INSTALL_DATA} ${WRKSRC}-doc/* ${STAGEDIR}${DOCSDIR}
34
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/php
35
	@${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/templates.so" > \
36
		${STAGEDIR}${PREFIX}/etc/php/ext-20-templates.ini
34
37
35
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)www/php-templates/files/pkg-message.in (-1 / +2 lines)
Lines 2-8 Link Here
2
2
3
You have installed the php-templates package.
3
You have installed the php-templates package.
4
4
5
Edit %%LOCALBASE%%/etc/php.ini and add:
5
The following line has been added to %%PREFIX%%/etc/php/ext-20-templates.ini,
6
so that the extension is automatically enabled:
6
7
7
extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/templates.so"
8
extension="%%PREFIX%%/lib/php/%%PHP_EXT_DIR%%/templates.so"
8
9
(-)www/php55-opcache/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Martin Matuska <mm@FreeBSD.org>
1
# Created by: Martin Matuska <mm@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
PORTREVISION=	2
5
CATEGORIES=	www
5
CATEGORIES=	www
6
6
7
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)www/php55-session/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)www/php55-tidy/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php55
7
MASTERDIR=	${.CURDIR}/../../lang/php55
(-)www/php56-opcache/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Martin Matuska <mm@FreeBSD.org>
1
# Created by: Martin Matuska <mm@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
PORTREVISION=	2
5
CATEGORIES=	www
5
CATEGORIES=	www
6
6
7
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)www/php56-session/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)www/php56-tidy/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php56
7
MASTERDIR=	${.CURDIR}/../../lang/php56
(-)www/php70-opcache/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Martin Matuska <mm@FreeBSD.org>
1
# Created by: Martin Matuska <mm@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	2
4
PORTREVISION=	3
5
CATEGORIES=	www
5
CATEGORIES=	www
6
6
7
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)www/php70-session/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70
(-)www/php70-tidy/Makefile (+1 lines)
Lines 1-6 Link Here
1
# Created by: Alex Dupre <ale@FreeBSD.org>
1
# Created by: Alex Dupre <ale@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	1
4
CATEGORIES=	www
5
CATEGORIES=	www
5
6
6
MASTERDIR=	${.CURDIR}/../../lang/php70
7
MASTERDIR=	${.CURDIR}/../../lang/php70

Return to bug 210697