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 3DD8C1A9217 for ; Mon, 30 Nov 2020 00:08:01 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 15CD284D51; Mon, 30 Nov 2020 00:07:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AD1C584D51 for ; Mon, 30 Nov 2020 00:03:48 +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 1FYwdOT3j8TT for ; Mon, 30 Nov 2020 00:03:48 +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 F1FED84CE7 for ; Mon, 30 Nov 2020 00:03:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E1F46FA9D; Mon, 30 Nov 2020 00:03:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1606694627125860" MIME-Version: 1.0 Date: Mon, 30 Nov 2020 00:03:47 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/devel/dconf-editor To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20201130000347.E1F46FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1606694627125860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Mon Nov 30 00:03:47 UTC 2020 Modified Files: pkgsrc/devel/dconf-editor: Makefile Log Message: dconf-editor: fix sandboxed builds (on NetBSD, at least) This requires a version of msgfmt that provides the --desktop option. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/devel/dconf-editor/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1606694627125860 Content-Disposition: inline Content-Length: 783 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/dconf-editor/Makefile diff -u pkgsrc/devel/dconf-editor/Makefile:1.56 pkgsrc/devel/dconf-editor/Makefile:1.57 --- pkgsrc/devel/dconf-editor/Makefile:1.56 Sun Nov 29 17:31:27 2020 +++ pkgsrc/devel/dconf-editor/Makefile Mon Nov 30 00:03:47 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2020/11/29 17:31:27 bsiegert Exp $ +# $NetBSD: Makefile,v 1.57 2020/11/30 00:03:47 gutteridge Exp $ DISTNAME= dconf-editor-3.38.2 CATEGORIES= devel gnome @@ -11,7 +11,10 @@ COMMENT= gsettings editor LICENSE= gnu-gpl-v3 USE_LANGUAGES= c99 -USE_TOOLS+= pkg-config +USE_TOOLS+= msgfmt pkg-config + +# Requires --desktop in msgfmt. +_TOOLS_USE_PKGSRC.msgfmt= yes .include "../../devel/dconf/buildlink3.mk" BUILDLINK_API_DEPENDS.glib2+= glib2>=2.46.0 --_----------=_1606694627125860--