Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Jan 2014 20:41:28 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r341778 - in head: converters/php5-iconv converters/php53-iconv converters/php55-iconv lang/php5 lang/php53 lang/php55
Message-ID:  <201401292041.s0TKfSH4038663@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401292041.s0TKfSH4038663>