Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id AF97E1A921F for ; Thu, 12 Nov 2020 03:34:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1332584D90; Thu, 12 Nov 2020 03:34:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4E9F084D46 for ; Thu, 12 Nov 2020 03:34:08 +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 hETDeclyCp1A for ; Thu, 12 Nov 2020 03:34:07 +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 93B2E84D37 for ; Thu, 12 Nov 2020 03:34:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8781EFB28; Thu, 12 Nov 2020 03:34:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160515204750250" MIME-Version: 1.0 Date: Thu, 12 Nov 2020 03:34:07 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/audio/musescore To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20201112033407.8781EFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160515204750250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Thu Nov 12 03:34:07 UTC 2020 Modified Files: pkgsrc/audio/musescore: Makefile Log Message: musescore: set to a release build This package uses both CMAKE_BUILD_TYPE and now MUSESCORE_BUILD_CONFIG in different places to define its build type, so add the latter. (The former doesn't seem relevant to us now, but leave it in just in case.) To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/audio/musescore/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160515204750250 Content-Disposition: inline Content-Length: 823 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/musescore/Makefile diff -u pkgsrc/audio/musescore/Makefile:1.15 pkgsrc/audio/musescore/Makefile:1.16 --- pkgsrc/audio/musescore/Makefile:1.15 Thu Nov 5 09:07:28 2020 +++ pkgsrc/audio/musescore/Makefile Thu Nov 12 03:34:07 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2020/11/05 09:07:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.16 2020/11/12 03:34:07 gutteridge Exp $ DISTNAME= musescore-3.5.2 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GITHUB:=musescore/} GITHUB_PROJECT= MuseScore @@ -24,6 +24,7 @@ CMAKE_ARG_PATH= .. CMAKE_ARGS+= -Wno-dev CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release" +CMAKE_ARGS+= -DMUSESCORE_BUILD_CONFIG=release CMAKE_ARGS+= -DUSE_SYSTEM_FREETYPE=ON CMAKE_ARGS+= -DDOWNLOAD_SOUNDFONT=OFF CMAKE_ARGS+= -DBUILD_PCH=OFF --_----------=_160515204750250--