Received: by mail.netbsd.org (Postfix, from userid 605) id 494D184D2D; Sun, 7 Mar 2021 13:09:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 83C8884D27 for ; Sun, 7 Mar 2021 13:09:38 +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 g1H2P82yq_mw for ; Sun, 7 Mar 2021 13:09:38 +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 DA8E684CE3 for ; Sun, 7 Mar 2021 13:09:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7DB8FA95; Sun, 7 Mar 2021 13:09:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161512257777550" MIME-Version: 1.0 Date: Sun, 7 Mar 2021 13:09:37 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/databases/phppgadmin To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210307130937.D7DB8FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161512257777550 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:09:37 UTC 2021 Modified Files: pkgsrc/databases/phppgadmin: Makefile Log Message: databases/phppgadmin: prefix PKGNAME with ${PHP_PKG_PREFIX} Prefix PKGNAME with ${PHP_PKG_PREFIX} to coexist of binary packages build by differenet PHP. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/databases/phppgadmin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161512257777550 Content-Disposition: inline Content-Length: 677 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/phppgadmin/Makefile diff -u pkgsrc/databases/phppgadmin/Makefile:1.36 pkgsrc/databases/phppgadmin/Makefile:1.37 --- pkgsrc/databases/phppgadmin/Makefile:1.36 Fri May 22 19:30:16 2020 +++ pkgsrc/databases/phppgadmin/Makefile Sun Mar 7 13:09:37 2021 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.36 2020/05/22 19:30:16 rillig Exp $ +# $NetBSD: Makefile,v 1.37 2021/03/07 13:09:37 taca Exp $ DISTNAME= phpPgAdmin-5.1 -PKGNAME= ${DISTNAME:S/PgAdmin/pgadmin/} -PKGREVISION= 2 +PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME:S/PgAdmin/pgadmin/} CATEGORIES= databases www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=phppgadmin/} EXTRACT_SUFX= .tar.bz2 --_----------=_161512257777550--