From: Peter Bergin Date: Sat, 19 Jan 2019 21:35:21 +0000 (+0100) Subject: at-spi2-core: only depend of x11 if in DISTRO_FEATURES X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~15588 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e80bfa6bdfc1ad97c6232f8387d1bf8a8c7a8b20;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git at-spi2-core: only depend of x11 if in DISTRO_FEATURES Build system for at-spi2-core package have auto detection of x11 dependency since version 2.26.1. Remove the hardcoded dependency in the recipe and let DISTRO_FEATURES decide. Signed-off-by: Peter Bergin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/atk/at-spi2-core_2.30.0.bb b/meta/recipes-support/atk/at-spi2-core_2.30.0.bb index d7ea9be87fe..7d2d406cbc2 100644 --- a/meta/recipes-support/atk/at-spi2-core_2.30.0.bb +++ b/meta/recipes-support/atk/at-spi2-core_2.30.0.bb @@ -11,11 +11,12 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \ SRC_URI[md5sum] = "d4f22c66b3210ffe6b10d01c04e008b5" SRC_URI[sha256sum] = "0175f5393d19da51f4c11462cba4ba6ef3fa042abf1611a70bdfed586b7bfb2b" -DEPENDS = "dbus glib-2.0 virtual/libx11 libxi libxtst" +X11DEPENDS = "virtual/libx11 libxi libxtst" -inherit meson gtk-doc gettext systemd pkgconfig distro_features_check upstream-version-is-even gobject-introspection -# depends on virtual/libx11 -REQUIRED_DISTRO_FEATURES = "x11" +DEPENDS = "dbus glib-2.0" +DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" + +inherit meson gtk-doc gettext systemd pkgconfig upstream-version-is-even gobject-introspection EXTRA_OEMESON = " -Dsystemd_user_dir=${systemd_user_unitdir} \ -Ddbus_daemon=${bindir}/dbus-daemon"