Received: by mail.netbsd.org (Postfix, from userid 605) id 5FC0084D2D; Sun, 7 Mar 2021 13:42:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9B93F84D27 for ; Sun, 7 Mar 2021 13:42:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id RXLSbY70sMLE for ; Sun, 7 Mar 2021 13:42:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2069384CE3 for ; Sun, 7 Mar 2021 13:42:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1DB69FA95; Sun, 7 Mar 2021 13:42:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1615124565295370" MIME-Version: 1.0 Date: Sun, 7 Mar 2021 13:42:45 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/converters/php-mbstring To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210307134245.1DB69FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1615124565295370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Mar 7 13:42:45 UTC 2021 Modified Files: pkgsrc/converters/php-mbstring: Makefile PLIST Log Message: converters/php-mbstring: add php80 support Add php80 support. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/converters/php-mbstring/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/converters/php-mbstring/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1615124565295370 Content-Disposition: inline Content-Length: 2032 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/php-mbstring/Makefile diff -u pkgsrc/converters/php-mbstring/Makefile:1.6 pkgsrc/converters/php-mbstring/Makefile:1.7 --- pkgsrc/converters/php-mbstring/Makefile:1.6 Sun Dec 15 17:59:42 2019 +++ pkgsrc/converters/php-mbstring/Makefile Sun Mar 7 13:42:44 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2019/12/15 17:59:42 taca Exp $ +# $NetBSD: Makefile,v 1.7 2021/03/07 13:42:44 taca Exp $ MODNAME= mbstring CATEGORIES+= converters @@ -12,6 +12,7 @@ INSTALLATION_DIRS+= ${PREFIX}/include/ph INSTALLATION_DIRS+= ${PREFIX}/include/php/ext/mbstring/libmbfl/nls PLIST_SRC+= ${.CURDIR}/PLIST +PLIST_VARS+= php7 CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR} @@ -24,4 +25,7 @@ post-install: .if ${PKG_PHP_VERSION} >= 74 .include "../../textproc/oniguruma/buildlink3.mk" .endif +.if ${PKG_PHP_MAJOR_VERS} < 8 +PLIST.php7= yes +.endif .include "../../mk/bsd.pkg.mk" Index: pkgsrc/converters/php-mbstring/PLIST diff -u pkgsrc/converters/php-mbstring/PLIST:1.1 pkgsrc/converters/php-mbstring/PLIST:1.2 --- pkgsrc/converters/php-mbstring/PLIST:1.1 Thu Jul 7 13:59:00 2016 +++ pkgsrc/converters/php-mbstring/PLIST Sun Mar 7 13:42:44 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2016/07/07 13:59:00 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/03/07 13:42:44 taca Exp $ include/php/ext/mbstring/libmbfl/filters/cp932_table.h include/php/ext/mbstring/libmbfl/filters/emoji2uni.h include/php/ext/mbstring/libmbfl/filters/html_entities.h @@ -102,7 +102,7 @@ include/php/ext/mbstring/libmbfl/mbfl/mb include/php/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.h include/php/ext/mbstring/libmbfl/mbfl/mbfilter_pass.h include/php/ext/mbstring/libmbfl/mbfl/mbfilter_wchar.h -include/php/ext/mbstring/libmbfl/mbfl/mbfl_allocators.h +${PLIST.php7}include/php/ext/mbstring/libmbfl/mbfl/mbfl_allocators.h include/php/ext/mbstring/libmbfl/mbfl/mbfl_consts.h include/php/ext/mbstring/libmbfl/mbfl/mbfl_convert.h include/php/ext/mbstring/libmbfl/mbfl/mbfl_defs.h --_----------=_1615124565295370--