Received: by mail.netbsd.org (Postfix, from userid 605) id C1D0B84D65; Thu, 3 Nov 2022 07:46:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F3F3E84E93 for ; Thu, 3 Nov 2022 07:45:59 +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 TpDmdBN5lCsC for ; Thu, 3 Nov 2022 07:45:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 44E1584D65 for ; Thu, 3 Nov 2022 07:45:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38F89FA90; Thu, 3 Nov 2022 07:45:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667461559264540" MIME-Version: 1.0 Date: Thu, 3 Nov 2022 07:45:59 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/security/pear-Crypt_GPG To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20221103074559.38F89FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667461559264540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Nov 3 07:45:59 UTC 2022 Modified Files: pkgsrc/security/pear-Crypt_GPG: Makefile Log Message: security/pear-Crypt_GPG: utilize REPLACE_PHP Instead of using own REPLACE_INTERPRETER, use REPLACE_PHP. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/security/pear-Crypt_GPG/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667461559264540 Content-Disposition: inline Content-Length: 1043 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/pear-Crypt_GPG/Makefile diff -u pkgsrc/security/pear-Crypt_GPG/Makefile:1.12 pkgsrc/security/pear-Crypt_GPG/Makefile:1.13 --- pkgsrc/security/pear-Crypt_GPG/Makefile:1.12 Sat Jul 30 14:50:01 2022 +++ pkgsrc/security/pear-Crypt_GPG/Makefile Thu Nov 3 07:45:59 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2022/07/30 14:50:01 taca Exp $ +# $NetBSD: Makefile,v 1.13 2022/11/03 07:45:59 taca Exp $ DISTNAME= Crypt_GPG-1.6.7 PKGREVISION= 1 @@ -11,11 +11,8 @@ LICENSE= gnu-lgpl-v2.1 DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=${PHP_VERSION}:../../converters/php-mbstring DEPENDS+= ${PHP_PKG_PREFIX}-pear-Console_CommandLine>=1.1.10:../../devel/pear-Console_CommandLine -# maybe resides in lang/php/phpversion.mk -REPLACE_INTERPRETER+= php -REPLACE.php.old= .*php[^ ]* -REPLACE.php.new= ${PREFIX}/bin/php -REPLACE_FILES.php= scripts/crypt-gpg-pinentry +REPLACE_PHP+= scripts/crypt-gpg-pinentry +.include "../../lang/php/replace.mk" .include "../../lang/php/pear.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1667461559264540--