mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
This patch groups x11 dependent tools in a separete variable, and when DISTRO_FEATURES does not contain x11, this group is not included in the package RDEPENDS. (From OE-Core master rev: 8253abeee10189b828336b791c3421d240a2e69b) (From OE-Core rev: 3974ebead1be20e3687ab66e8782da70118a3202) Signed-off-by: Rogerio Nunes <rogerio.nunes@freescale.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
52 lines
972 B
BlitzBasic
52 lines
972 B
BlitzBasic
#
|
|
# Copyright (C) 2008 OpenedHand Ltd.
|
|
#
|
|
|
|
SUMMARY = "Testing tools/applications"
|
|
LICENSE = "MIT"
|
|
|
|
PR = "r2"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
# For backwards compatibility after rename
|
|
RPROVIDES_${PN} = "task-core-tools-testapps"
|
|
RREPLACES_${PN} = "task-core-tools-testapps"
|
|
RCONFLICTS_${PN} = "task-core-tools-testapps"
|
|
|
|
# kexec-tools doesn't work on Mips
|
|
KEXECTOOLS ?= "kexec"
|
|
KEXECTOOLS_mips ?= ""
|
|
KEXECTOOLS_mipsel ?= ""
|
|
KEXECTOOLS_powerpc ?= ""
|
|
KEXECTOOLS_e5500-64b ?= ""
|
|
KEXECTOOLS_aarch64 ?= ""
|
|
|
|
X11TOOLS = "\
|
|
fstests \
|
|
owl-video \
|
|
mesa-demos \
|
|
x11perf \
|
|
xrestop \
|
|
xwininfo \
|
|
xprop \
|
|
xvideo-tests \
|
|
"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
blktool \
|
|
tslib-calibrate \
|
|
tslib-tests \
|
|
lrzsz \
|
|
${KEXECTOOLS} \
|
|
alsa-utils-amixer \
|
|
alsa-utils-aplay \
|
|
gst-meta-video \
|
|
gst-meta-audio \
|
|
ltp \
|
|
connman-client \
|
|
${@base_contains('DISTRO_FEATURES', 'x11', "${X11TOOLS}", "", d)} \
|
|
"
|