Received: by mail.netbsd.org (Postfix, from userid 605) id 155AF84E96; Fri, 26 Jan 2024 03:15:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 20A5384E7F for ; Fri, 26 Jan 2024 03:15:17 +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 HPOc2Vwan70S for ; Fri, 26 Jan 2024 03:15:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5E7A884D08 for ; Fri, 26 Jan 2024 03:15:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 53348FA43; Fri, 26 Jan 2024 03:15:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706238916228050" MIME-Version: 1.0 Date: Fri, 26 Jan 2024 03:15:16 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/security/p11-kit To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20240126031516.53348FA43@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706238916228050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Fri Jan 26 03:15:16 UTC 2024 Modified Files: pkgsrc/security/p11-kit: Makefile Log Message: security/p11-kit: Needs libtasn1 asn1Parser at build-time as tool. Fixes cross-build. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/security/p11-kit/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706238916228050 Content-Disposition: inline Content-Length: 813 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.34 pkgsrc/security/p11-kit/Makefile:1.35 --- pkgsrc/security/p11-kit/Makefile:1.34 Mon Nov 27 09:38:16 2023 +++ pkgsrc/security/p11-kit/Makefile Fri Jan 26 03:15:16 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2023/11/27 09:38:16 jperkin Exp $ +# $NetBSD: Makefile,v 1.35 2024/01/26 03:15:16 riastradh Exp $ DISTNAME= p11-kit-0.25.3 CATEGORIES= security @@ -11,6 +11,8 @@ HOMEPAGE= https://p11-glue.freedesktop.o COMMENT= PKCS\#11 module manager LICENSE= modified-bsd +TOOL_DEPENDS+= ${BUILDLINK_API_DEPENDS.libtasn1:=:../../security/libtasn1} + DEPENDS+= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts MESON_ARGS+= -Dtrust_paths=${PREFIX}/share/mozilla-rootcerts/cacert.pem --_----------=_1706238916228050--