mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
This allows the description to show up at the recipe level e.g. in the OE layer index. (From OE-Core rev: 5f1093bca16b3cd905beb69bee095d92aa350cfe) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
500 B
BlitzBasic
25 lines
500 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
SUMMARY = "X11 display server"
|
|
LICENSE = "MIT"
|
|
PR = "r39"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev"
|
|
XSERVERCODECS ?= ""
|
|
|
|
RDEPENDS_${PN} = "\
|
|
${XSERVER} \
|
|
${XSERVERCODECS} \
|
|
"
|
|
|
|
# Allow replacing task-x11-server in meta-oe
|
|
RPROVIDES_${PN} = "task-x11-server task-xserver"
|
|
RREPLACES_${PN} = "task-x11-server task-xserver"
|
|
RCONFLICTS_${PN} = "task-x11-server task-xserver"
|