Summary: | converters/php5-iconv: iconv transliteration support broken on 10 | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Michael Gmelin <freebsd> |
Component: | Individual Port(s) | Assignee: | Alex Dupre <ale> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Michael Gmelin
2013-12-08 16:20:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->ale Over to maintainer (via the GNATS Auto Assign Tool) 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" _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Fixed in r341778. |