mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
* add new packagegroup-core-x11-server to SIGGEN_EXCLUDERECIPES_ABISAFE, so that recipes depending on it are not rebuilt after every machine swtich * allows to remove task-x11-server and task-x11 from meta-oe without loosing any functionality * be carefull with default XSERVER value which does not have xf86-input-mouse and xf86-input-keyboard) * VIRTUAL-RUNTIME_xserver_common which defaults to x11-common in oe-core and xserver-common in meta-oe's task-x11 (From OE-Core rev: a398c96706c119f298f57a929a317fcf8e0f5b92) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
881 B
BlitzBasic
41 lines
881 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
LICENSE = "MIT"
|
|
PR = "r38"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGES = "${PN} ${PN}-utils"
|
|
|
|
# xserver-common, x11-common
|
|
VIRTUAL-RUNTIME_xserver_common ?= "x11-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 \
|
|
"
|
|
|
|
# Allow replacing task-x11* in meta-oe
|
|
RPROVIDES_${PN} = "task-x11"
|
|
RREPLACES_${PN} = "task-x11"
|
|
RCONFLICTS_${PN} = "task-x11"
|
|
RPROVIDES_${PN}-utils = "task-x11-utils"
|
|
RREPLACES_${PN}-utils = "task-x11-utils"
|
|
RCONFLICTS_${PN}-utils = "task-x11-utils"
|