mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Commit 5dfca64b78 ("dbus-glib: depend on
dbus, not dbus-x11") mentions that
dbus-x11 hasn't existed as a package since 2012[1] and is just a
RPROVIDES in dbus, so depend on dbus directly instead.
Since similar change here would induce an error:
An allarch packagegroup shouldn't depend on packages which are dynamically renamed (dbus to dbus-1)
and since dbus package can hardly be considered a X11 utility,
remove the entry altogether.
(From OE-Core rev: fcee101f65a3fbe1fb0420bf617fef498175a38e)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
709 B
BlitzBasic
35 lines
709 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
|
|
inherit packagegroup features_check
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
PACKAGES = "${PN} ${PN}-utils"
|
|
|
|
# backwards compatibility for xserver-common
|
|
VIRTUAL-RUNTIME_xserver_common ?= ""
|
|
|
|
# elsa, xserver-nodm-init
|
|
VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
|
|
|
|
SUMMARY = "X11 display server and basic utilities"
|
|
RDEPENDS:${PN} = "\
|
|
${PN}-xserver \
|
|
${PN}-utils \
|
|
"
|
|
|
|
SUMMARY:${PN}-utils = "X11 basic utilities and init"
|
|
RDEPENDS:${PN}-utils = "\
|
|
${VIRTUAL-RUNTIME_xserver_common} \
|
|
${VIRTUAL-RUNTIME_graphical_init_manager} \
|
|
xauth \
|
|
xhost \
|
|
xset \
|
|
xrandr \
|
|
xmodmap \
|
|
xdpyinfo \
|
|
xinput-calibrator \
|
|
"
|