Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9056D84D6B for ; Sat, 1 Jul 2023 12:29:51 +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 b7HxIxZ0Gl_N for ; Sat, 1 Jul 2023 12:29:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0BE4084D1D for ; Sat, 1 Jul 2023 12:29:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 057E2FA89; Sat, 1 Jul 2023 12:29:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688214590226570" MIME-Version: 1.0 Date: Sat, 1 Jul 2023 12:29:50 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/security/botan3 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20230701122951.057E2FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688214590226570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sat Jul 1 12:29:50 UTC 2023 Modified Files: pkgsrc/security/botan3: Makefile PLIST Log Message: botan3: fix PLIST on archs that does not have processor rng support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/botan3/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/botan3/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688214590226570 Content-Disposition: inline Content-Length: 1736 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/botan3/Makefile diff -u pkgsrc/security/botan3/Makefile:1.2 pkgsrc/security/botan3/Makefile:1.3 --- pkgsrc/security/botan3/Makefile:1.2 Mon Jun 26 11:45:48 2023 +++ pkgsrc/security/botan3/Makefile Sat Jul 1 12:29:50 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/06/26 11:45:48 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2023/07/01 12:29:50 nros Exp $ DISTNAME= Botan-3.0.0 PKGNAME= ${DISTNAME:S/Botan/botan3/} @@ -43,13 +43,17 @@ CONFIGURE_ARGS+= --cc-bin=${CXX} --cc=cl CONFIGURE_ARGS+= --cc=gcc .endif +PLIST_VARS+= prng .if ${MACHINE_ARCH} == "x86_64" +PLIST.prng= yes CONFIGURE_ARGS+= --cpu=amd64 .elif ${MACHINE_ARCH} == "i386" +PLIST.prng= yes CONFIGURE_ARGS+= --cpu=i386 .elif ${MACHINE_ARCH} == "powerpc" CONFIGURE_ARGS+= --cpu=ppc .elif ${MACHINE_ARCH} == "powerpc64" +PLIST.prng= yes CONFIGURE_ARGS+= --cpu=ppc64 .elif ${MACHINE_ARCH:Maarch64*} CONFIGURE_ARGS+= --cpu=arm64 Index: pkgsrc/security/botan3/PLIST diff -u pkgsrc/security/botan3/PLIST:1.1 pkgsrc/security/botan3/PLIST:1.2 --- pkgsrc/security/botan3/PLIST:1.1 Mon Jun 26 11:40:39 2023 +++ pkgsrc/security/botan3/PLIST Sat Jul 1 12:29:50 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2023/06/26 11:40:39 wiz Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/07/01 12:29:50 nros Exp $ bin/botan3 include/botan-3/botan/aead.h include/botan-3/botan/argon2.h @@ -103,7 +103,7 @@ include/botan-3/botan/pkcs11t.h include/botan-3/botan/pkcs8.h include/botan-3/botan/pkix_enums.h include/botan-3/botan/pkix_types.h -include/botan-3/botan/processor_rng.h +${PLIST.prng}include/botan-3/botan/processor_rng.h include/botan-3/botan/psk_db.h include/botan-3/botan/pubkey.h include/botan-3/botan/pwdhash.h --_----------=_1688214590226570--