Received: by mail.netbsd.org (Postfix, from userid 605) id 86ED584D93; Wed, 12 Dec 2018 22:29:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8543C84D8D for ; Wed, 12 Dec 2018 22:29:37 +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 H8pw2HTFs_65 for ; Wed, 12 Dec 2018 22:29:37 +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 A9EFA84CEE for ; Wed, 12 Dec 2018 22:29:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A382AFB16; Wed, 12 Dec 2018 22:29:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1544653776242250" MIME-Version: 1.0 Date: Wed, 12 Dec 2018 22:29:36 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/security/p11-kit To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20181212222936.A382AFB16@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. --_----------=_1544653776242250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Wed Dec 12 22:29:36 UTC 2018 Modified Files: pkgsrc/security/p11-kit: Makefile Log Message: p11-kit: Use `+=' to append to DEPENDS (not `=') (NFC) To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/security/p11-kit/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1544653776242250 Content-Disposition: inline Content-Length: 818 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/p11-kit/Makefile diff -u pkgsrc/security/p11-kit/Makefile:1.12 pkgsrc/security/p11-kit/Makefile:1.13 --- pkgsrc/security/p11-kit/Makefile:1.12 Wed Sep 5 08:34:10 2018 +++ pkgsrc/security/p11-kit/Makefile Wed Dec 12 22:29:36 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2018/09/05 08:34:10 prlw1 Exp $ +# $NetBSD: Makefile,v 1.13 2018/12/12 22:29:36 leot Exp $ DISTNAME= p11-kit-0.23.14 CATEGORIES= security @@ -11,7 +11,7 @@ HOMEPAGE= https://p11-glue.freedesktop.o COMMENT= PKCS\#11 module manager LICENSE= modified-bsd -DEPENDS= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts +DEPENDS+= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts CONFIGURE_ARGS+= --with-trust-paths=${PREFIX}/share/mozilla-rootcerts/cacert.pem --_----------=_1544653776242250--