mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
* it's not complete, but recipes depending on virtual/libx11 are easiest to spot, I've long list of PNBLACKLIST for all recipes which cannot be built in distro without x11 in DISTRO_FEATURES (From OE-Core rev: 78d269fa9a586e24ef058ba5315c696f15935f56) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
383 B
BlitzBasic
22 lines
383 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
SUMMARY = "X11 display server"
|
|
LICENSE = "MIT"
|
|
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} \
|
|
"
|