summaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorAndy Kling <andreas.kling@peiker-cee.de>2017-02-10 10:07:22 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2017-02-13 18:43:36 +0100
commitf93ea40311679d528cb20514a455347c75fd6046 (patch)
tree5cb5f676bccedfed8c5c131a7b6224c93955f901 /meta-gnome
parentf2b6681cb6fb6c4d14f32cf7a0c95671e8798a35 (diff)
downloadmeta-openembedded-f93ea40311679d528cb20514a455347c75fd6046.tar.gz
dconf: make gtk+3 dependency optional
dconf requires gtk+3 only for dconf-editor and is useful even on systems without gui. add PACKAGECONFIG for editor, enable it by default if x11 is present in DISTRO_FEATURES add x11 to REQUIRED_DISTRO_FEATURES only if editor is enabled Note: editor will be dropped from dconf in version 0.23.1 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb11
1 files changed, 8 insertions, 3 deletions
diff --git a/meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb b/meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb
index f7666cc0f..e24bde449 100644
--- a/meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb
+++ b/meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb
@@ -9,15 +9,20 @@ SRC_URI[archive.md5sum] = "69a12ed68893f2e1e81ac4e531bc1515"
9SRC_URI[archive.sha256sum] = "109b1bc6078690af1ed88cb144ef5c5aee7304769d8bdc82ed48c3696f10c955" 9SRC_URI[archive.sha256sum] = "109b1bc6078690af1ed88cb144ef5c5aee7304769d8bdc82ed48c3696f10c955"
10GNOME_COMPRESS_TYPE = "xz" 10GNOME_COMPRESS_TYPE = "xz"
11 11
12DEPENDS = "dbus glib-2.0 gtk+3 libxml2 intltool-native" 12DEPENDS = "dbus glib-2.0 libxml2 intltool-native"
13 13
14inherit vala gtk-doc distro_features_check 14inherit vala gtk-doc distro_features_check
15 15
16REQUIRED_DISTRO_FEATURES = "x11" 16PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "editor", "", d)}"
17
18#note: editor will be removed in version 0.23.1
19PACKAGECONFIG[editor] = "--enable-editor,--disable-editor,gtk+3"
20
21REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains("PACKAGECONFIG", "editor", "x11", "", d)}"
17 22
18EXTRA_OECONF += "--disable-man" 23EXTRA_OECONF += "--disable-man"
19 24
20PACKAGES =+ "dconf-editor" 25PACKAGES =+ "${@bb.utils.contains("DISTRO_FEATURES", "x11", "dconf-editor", "", d)}"
21 26
22FILES_${PN} += " \ 27FILES_${PN} += " \
23 ${datadir}/dbus-1 \ 28 ${datadir}/dbus-1 \