From owner-svn-ports-head@FreeBSD.ORG Wed Jan 29 20:41:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ACF9D4D; Wed, 29 Jan 2014 20:41:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B1E41393; Wed, 29 Jan 2014 20:41:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0TKfTsD038675; Wed, 29 Jan 2014 20:41:29 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0TKfSH4038663; Wed, 29 Jan 2014 20:41:28 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201401292041.s0TKfSH4038663@svn.freebsd.org> From: Tijl Coosemans Date: Wed, 29 Jan 2014 20:41:28 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Jan 2014 20:41:29 -0000 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 # $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 # $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"