diff options
author | gutteridge <gutteridge@pkgsrc.org> | 2020-11-30 00:03:47 +0000 |
---|---|---|
committer | gutteridge <gutteridge@pkgsrc.org> | 2020-11-30 00:03:47 +0000 |
commit | 5e95818471acd41160361d3c343fe0a386f45922 (patch) | |
tree | e2e1500aeb315554dd25abf20d125514637d1201 | |
parent | 61eec40fed44320d309402eb417484c29d37f8b8 (diff) | |
download | pkgsrc-5e95818471acd41160361d3c343fe0a386f45922.tar.gz |
dconf-editor: fix sandboxed builds (on NetBSD, at least)
This requires a version of msgfmt that provides the --desktop option.
-rw-r--r-- | devel/dconf-editor/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/devel/dconf-editor/Makefile b/devel/dconf-editor/Makefile index a60d5e0bd21..e5811af5bd9 100644 --- a/devel/dconf-editor/Makefile +++ b/devel/dconf-editor/Makefile @@ -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 |