svn commit: r341778 - in head: converters/php5-iconv converters/php53-iconv converters/php55-iconv lang/php5 lang/php53 lang/php55

Tijl Coosemans tijl at FreeBSD.org
Wed Jan 29 20:41:29 UTC 2014


Author: tijl
Date: Wed Jan 29 20:41:27 2014
New Revision: 341778
URL: http://svnweb.freebsd.org/changeset/ports/341778
QAT: https://qat.redports.org/buildarchive/r341778/

Log:
  Allow the use of //TRANSLIT and //IGNORE with PHP iconv.
  
  PR:		ports/184596
  Tested by:	grembo
  Approved by:	ale (maintainer)

Modified:
  head/converters/php5-iconv/Makefile
  head/converters/php53-iconv/Makefile
  head/converters/php55-iconv/Makefile
  head/lang/php5/Makefile.ext
  head/lang/php53/Makefile.ext
  head/lang/php55/Makefile.ext

Modified: head/converters/php5-iconv/Makefile
==============================================================================
--- head/converters/php5-iconv/Makefile	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/converters/php5-iconv/Makefile	Wed Jan 29 20:41:27 2014	(r341778)
@@ -1,6 +1,7 @@
 # Created by: Alex Dupre <ale at FreeBSD.org>
 # $FreeBSD$
 
+PORTREVISION=	1
 CATEGORIES=	converters
 
 MASTERDIR=	${.CURDIR}/../../lang/php5

Modified: head/converters/php53-iconv/Makefile
==============================================================================
--- head/converters/php53-iconv/Makefile	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/converters/php53-iconv/Makefile	Wed Jan 29 20:41:27 2014	(r341778)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
+PORTREVISION=	1
 CATEGORIES=	converters
 
 MASTERDIR=	${.CURDIR}/../../lang/php53

Modified: head/converters/php55-iconv/Makefile
==============================================================================
--- head/converters/php55-iconv/Makefile	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/converters/php55-iconv/Makefile	Wed Jan 29 20:41:27 2014	(r341778)
@@ -1,6 +1,7 @@
 # Created by: Alex Dupre <ale at FreeBSD.org>
 # $FreeBSD$
 
+PORTREVISION=	1
 CATEGORIES=	converters
 
 MASTERDIR=	${.CURDIR}/../../lang/php55

Modified: head/lang/php5/Makefile.ext
==============================================================================
--- head/lang/php5/Makefile.ext	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/lang/php5/Makefile.ext	Wed Jan 29 20:41:27 2014	(r341778)
@@ -128,7 +128,7 @@ CONFIGURE_ARGS+=--enable-hash \
 .if ${PHP_MODNAME} == "iconv"
 CONFIGURE_ARGS+=--with-iconv
 
-USES+=	iconv
+USES+=	iconv:translit
 .endif
 
 .if ${PHP_MODNAME} == "imap"

Modified: head/lang/php53/Makefile.ext
==============================================================================
--- head/lang/php53/Makefile.ext	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/lang/php53/Makefile.ext	Wed Jan 29 20:41:27 2014	(r341778)
@@ -127,7 +127,7 @@ CONFIGURE_ARGS+=--enable-hash \
 .if ${PHP_MODNAME} == "iconv"
 CONFIGURE_ARGS+=--with-iconv
 
-USES+=	iconv
+USES+=	iconv:translit
 .endif
 
 .if ${PHP_MODNAME} == "imap"

Modified: head/lang/php55/Makefile.ext
==============================================================================
--- head/lang/php55/Makefile.ext	Wed Jan 29 20:39:35 2014	(r341777)
+++ head/lang/php55/Makefile.ext	Wed Jan 29 20:41:27 2014	(r341778)
@@ -128,7 +128,7 @@ CONFIGURE_ARGS+=--enable-hash \
 .if ${PHP_MODNAME} == "iconv"
 CONFIGURE_ARGS+=--with-iconv
 
-USES+=	iconv
+USES+=	iconv:translit
 .endif
 
 .if ${PHP_MODNAME} == "imap"


More information about the svn-ports-all mailing list