Received: by mail.netbsd.org (Postfix, from userid 605) id 5D51984ECF; Thu, 16 Mar 2023 08:36:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8E2A984ECE for ; Thu, 16 Mar 2023 08:36:25 +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 gqUCLzn2BczM for ; Thu, 16 Mar 2023 08:36:25 +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 CED1C84D00 for ; Thu, 16 Mar 2023 08:36:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBE71FA90; Thu, 16 Mar 2023 08:36:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167895578423990" MIME-Version: 1.0 Date: Thu, 16 Mar 2023 08:36:24 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/binaryen To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230316083624.CBE71FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167895578423990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Mar 16 08:36:24 UTC 2023 Modified Files: pkgsrc/devel/binaryen: Makefile Log Message: binaryen: switch to cmake/build.mk To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/binaryen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167895578423990 Content-Disposition: inline Content-Length: 932 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/binaryen/Makefile diff -u pkgsrc/devel/binaryen/Makefile:1.16 pkgsrc/devel/binaryen/Makefile:1.17 --- pkgsrc/devel/binaryen/Makefile:1.16 Sun Feb 12 22:32:58 2023 +++ pkgsrc/devel/binaryen/Makefile Thu Mar 16 08:36:24 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2023/02/12 22:32:58 fcambus Exp $ +# $NetBSD: Makefile,v 1.17 2023/03/16 08:36:24 adam Exp $ VERSION= 112 DISTNAME= binaryen-${VERSION} @@ -11,7 +11,6 @@ HOMEPAGE= https://github.com/WebAssembly COMMENT= Compiler and toolchain infrastructure library for WebAssembly LICENSE= apache-2.0 -USE_CMAKE= yes USE_LANGUAGES= c c++17 WRKSRC= ${WRKDIR}/binaryen-${GITHUB_TAG} @@ -20,6 +19,7 @@ CMAKE_ARGS+= -DENABLE_WERROR=OFF PYTHON_FOR_BUILD_ONLY= yes +.include "../../devel/cmake/build.mk" .include "../../devel/googletest/buildlink3.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" --_----------=_167895578423990--