Received: by mail.netbsd.org (Postfix, from userid 605) id 08A2184E65; Sun, 10 Jul 2022 02:55:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4099884E5B for ; Sun, 10 Jul 2022 02:55:03 +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 dLaJtHvB5ivs for ; Sun, 10 Jul 2022 02:55:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AA12D84C2C for ; Sun, 10 Jul 2022 02:55:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A3781FB1A; Sun, 10 Jul 2022 02:55:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165742170264720" MIME-Version: 1.0 Date: Sun, 10 Jul 2022 02:55:02 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/security/pev To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20220710025502.A3781FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165742170264720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Sun Jul 10 02:55:02 UTC 2022 Modified Files: pkgsrc/security/pev: Makefile PLIST Log Message: pev: fix building on macOS Tested on NetBSD/amd64, macOS/amd64. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/pev/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/pev/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165742170264720 Content-Disposition: inline Content-Length: 1603 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/pev/Makefile diff -u pkgsrc/security/pev/Makefile:1.10 pkgsrc/security/pev/Makefile:1.11 --- pkgsrc/security/pev/Makefile:1.10 Sun May 30 00:49:51 2021 +++ pkgsrc/security/pev/Makefile Sun Jul 10 02:55:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2021/05/30 00:49:51 khorben Exp $ +# $NetBSD: Makefile,v 1.11 2022/07/10 02:55:02 khorben Exp $ .include "../../security/libpe/Makefile.common" @@ -15,5 +15,10 @@ MAKE_FLAGS+= DESTDIR=${DESTDIR} MAKE_FLAGS+= prefix=${PREFIX} MAKE_FLAGS+= mandir=${PREFIX}/${PKGMANDIR} +OPSYSVARS+= SOEXT +SOEXT.Darwin= dylib +SOEXT.*= so +PLIST_SUBST+= SOEXT=${SOEXT} + .include "../../security/libpe/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/pev/PLIST diff -u pkgsrc/security/pev/PLIST:1.4 pkgsrc/security/pev/PLIST:1.5 --- pkgsrc/security/pev/PLIST:1.4 Sat May 29 23:28:36 2021 +++ pkgsrc/security/pev/PLIST Sun Jul 10 02:55:02 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2021/05/29 23:28:36 khorben Exp $ +@comment $NetBSD: PLIST,v 1.5 2022/07/10 02:55:02 khorben Exp $ bin/ofs2rva bin/pedis bin/pehash @@ -10,11 +10,11 @@ bin/pesec bin/pestr bin/readpe bin/rva2ofs -lib/pev/plugins/csv_plugin.so -lib/pev/plugins/html_plugin.so -lib/pev/plugins/json_plugin.so -lib/pev/plugins/text_plugin.so -lib/pev/plugins/xml_plugin.so +lib/pev/plugins/csv_plugin.${SOEXT} +lib/pev/plugins/html_plugin.${SOEXT} +lib/pev/plugins/json_plugin.${SOEXT} +lib/pev/plugins/text_plugin.${SOEXT} +lib/pev/plugins/xml_plugin.${SOEXT} man/man1/ofs2rva.1 man/man1/pedis.1 man/man1/pehash.1 --_----------=_165742170264720--