From 48e257b4c7c8990c9afba90d5b3fcc957a1d8e73 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 27 Aug 2024 15:44:17 +0200 Subject: vdpauinfo: require x11 in DISTRO_FEATURES It depends on libvdpau and libvdpau has: inherit features_check REQUIRED_DISTRO_FEATURES = "x11" since: commit 0055684612edddae0f041e984c8497c5e5b32e74 Author: Armin Kuster Date: Tue Mar 6 17:27:30 2018 -0800 Subject: libvdpau: only include when x11 in DISTRO_FEATURES the same restriction should be repeated here to avoid: ERROR: Nothing PROVIDES 'libvdpau' (but meta-oe/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb DEPENDS on or otherwise requires it) libvdpau was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES) Also add it to packagegroup-meta-oe and fix libvdpau there. Signed-off-by: Martin Jansa Signed-off-by: Khem Raj --- meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-oe/recipes-core') diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index d13a8980d0..6f31283fb3 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb @@ -606,7 +606,7 @@ RDEPENDS:packagegroup-meta-oe-graphics ="\ ${@bb.utils.contains("DISTRO_FEATURES", "x11 pam", "tigervnc", "", d)} \ tslib \ unclutter-xfixes \ - libvdpau \ + ${@bb.utils.contains("DISTRO_FEATURES", "x11", "libvdpau vdpauinfo", "", d)} \ xcursorgen \ ${@bb.utils.contains("DISTRO_FEATURES", "x11 pam", "xscreensaver", "", d)} \ yad \ -- cgit v1.2.3-54-g00ecf