mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 03:32:12 +02:00
It has been set in packagegroup.bbclass. (From OE-Core rev: 712c4f7c9876e22ef7f0605fdf921ded1b7c0ce7) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
367 B
BlitzBasic
21 lines
367 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
SUMMARY = "X11 display server"
|
|
PR = "r40"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup distro_features_check
|
|
# rdepends on XSERVER
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev"
|
|
XSERVERCODECS ?= ""
|
|
|
|
RDEPENDS_${PN} = "\
|
|
${XSERVER} \
|
|
${XSERVERCODECS} \
|
|
"
|