Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id DDC591A921F for ; Fri, 22 Oct 2021 16:56:41 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 41F3284E54; Fri, 22 Oct 2021 16:56:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7E51D84D29 for ; Fri, 22 Oct 2021 16:56:40 +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 SPW0TW59g32A for ; Fri, 22 Oct 2021 16:56:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CB39384CBC for ; Fri, 22 Oct 2021 16:56:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C47C3FA97; Fri, 22 Oct 2021 16:56:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163492179917430" MIME-Version: 1.0 Date: Fri, 22 Oct 2021 16:56:39 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/security/mozilla-rootcerts-openssl To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20211022165639.C47C3FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163492179917430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Fri Oct 22 16:56:39 UTC 2021 Modified Files: pkgsrc/security/mozilla-rootcerts-openssl: Makefile Log Message: mozilla-rootcerts-openssl: Generate replaced PLIST automatically To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/mozilla-rootcerts-openssl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163492179917430 Content-Disposition: inline Content-Length: 1039 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/mozilla-rootcerts-openssl/Makefile diff -u pkgsrc/security/mozilla-rootcerts-openssl/Makefile:1.18 pkgsrc/security/mozilla-rootcerts-openssl/Makefile:1.19 --- pkgsrc/security/mozilla-rootcerts-openssl/Makefile:1.18 Thu Oct 14 12:42:43 2021 +++ pkgsrc/security/mozilla-rootcerts-openssl/Makefile Fri Oct 22 16:56:39 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2021/10/14 12:42:43 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2021/10/22 16:56:39 ryoon Exp $ PKGNAME= mozilla-rootcerts-openssl-2.7 CATEGORIES= security @@ -33,12 +33,14 @@ NOT_FOR_UNPRIVILEGED= yes PLACE= /etc SET_PREFIX= yes PLIST_SUBST+= MYETCDIR=etc +PRINT_PLIST_AWK+= { sub("^etc/", "$${MYETCDIR}/"); } CHECK_FILES_SUPPORTED= no .else PLACE= ${MY_PKG_SYSCONFDIR} # probably SET_PREFIX should not be set SET_PREFIX= yes PLIST_SUBST+= MYETCDIR=${MY_PKG_SYSCONFDIR:S/^${PREFIX}//} +PRINT_PLIST_AWK+= { sub("^${MY_PKG_SYSCONFDIR:S/^${PREFIX}//}/", "$${MYETCDIR}/"); } .endif OPENSSLDIR= ${PLACE}/openssl/certs --_----------=_163492179917430--