diff options
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf_0.18.0.bb | 11 |
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 f7666cc0f2..e24bde4497 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" | |||
9 | SRC_URI[archive.sha256sum] = "109b1bc6078690af1ed88cb144ef5c5aee7304769d8bdc82ed48c3696f10c955" | 9 | SRC_URI[archive.sha256sum] = "109b1bc6078690af1ed88cb144ef5c5aee7304769d8bdc82ed48c3696f10c955" |
10 | GNOME_COMPRESS_TYPE = "xz" | 10 | GNOME_COMPRESS_TYPE = "xz" |
11 | 11 | ||
12 | DEPENDS = "dbus glib-2.0 gtk+3 libxml2 intltool-native" | 12 | DEPENDS = "dbus glib-2.0 libxml2 intltool-native" |
13 | 13 | ||
14 | inherit vala gtk-doc distro_features_check | 14 | inherit vala gtk-doc distro_features_check |
15 | 15 | ||
16 | REQUIRED_DISTRO_FEATURES = "x11" | 16 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "editor", "", d)}" |
17 | |||
18 | #note: editor will be removed in version 0.23.1 | ||
19 | PACKAGECONFIG[editor] = "--enable-editor,--disable-editor,gtk+3" | ||
20 | |||
21 | REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains("PACKAGECONFIG", "editor", "x11", "", d)}" | ||
17 | 22 | ||
18 | EXTRA_OECONF += "--disable-man" | 23 | EXTRA_OECONF += "--disable-man" |
19 | 24 | ||
20 | PACKAGES =+ "dconf-editor" | 25 | PACKAGES =+ "${@bb.utils.contains("DISTRO_FEATURES", "x11", "dconf-editor", "", d)}" |
21 | 26 | ||
22 | FILES_${PN} += " \ | 27 | FILES_${PN} += " \ |
23 | ${datadir}/dbus-1 \ | 28 | ${datadir}/dbus-1 \ |