Received: by mail.netbsd.org (Postfix, from userid 605) id F0EB084D3B; Sat, 9 Dec 2017 02:23:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7CB6884D3A for ; Sat, 9 Dec 2017 02:23:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id JzXX6dq5vOU7 for ; Sat, 9 Dec 2017 02:23:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AED7084C2E for ; Sat, 9 Dec 2017 02:23:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A932BFB40; Sat, 9 Dec 2017 02:23:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1512786187102930" MIME-Version: 1.0 Date: Sat, 9 Dec 2017 02:23:07 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/converters/php-iconv To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20171209022307.A932BFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1512786187102930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Dec 9 02:23:07 UTC 2017 Modified Files: pkgsrc/converters/php-iconv: Makefile Added Files: pkgsrc/converters/php-iconv: PLIST Log Message: converters/php-iconv: Install header file Install header file ext/iconv/php_iconv.h to fix build problem of www/php-http and www/php-http3. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/converters/php-iconv/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/converters/php-iconv/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1512786187102930 Content-Disposition: inline Content-Length: 1376 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/php-iconv/Makefile diff -u pkgsrc/converters/php-iconv/Makefile:1.11 pkgsrc/converters/php-iconv/Makefile:1.12 --- pkgsrc/converters/php-iconv/Makefile:1.11 Wed Oct 3 00:20:15 2012 +++ pkgsrc/converters/php-iconv/Makefile Sat Dec 9 02:23:07 2017 @@ -1,11 +1,16 @@ -# $NetBSD: Makefile,v 1.11 2012/10/03 00:20:15 asau Exp $ +# $NetBSD: Makefile,v 1.12 2017/12/09 02:23:07 taca Exp $ MODNAME= iconv +PKGREVISION= 1 CATEGORIES+= converters COMMENT= PHP extension for character set conversion CONFLICTS= php-iconv-[0-9]* +INSTALLATION_DIRS+= ${PREFIX}/include/php/ext/iconv + +PLIST_SRC+= ${.CURDIR}/PLIST + .include "../../converters/libiconv/buildlink3.mk" # This is necessary so that PHP would find either the libc iconv @@ -23,5 +28,8 @@ CONFIGURE_ARGS+= --with-iconv=shared,${B CONFIGURE_ARGS+= --with-iconv .endif +post-install: + ${INSTALL_DATA} ${WRKSRC}/php_iconv.h ${DESTDIR}${PREFIX}/include/php/ext/iconv + .include "../../lang/php/ext.mk" .include "../../mk/bsd.pkg.mk" Added files: Index: pkgsrc/converters/php-iconv/PLIST diff -u /dev/null pkgsrc/converters/php-iconv/PLIST:1.1 --- /dev/null Sat Dec 9 02:23:07 2017 +++ pkgsrc/converters/php-iconv/PLIST Sat Dec 9 02:23:07 2017 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2017/12/09 02:23:07 taca Exp $ +include/php/ext/iconv/php_iconv.h --_----------=_1512786187102930--