mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
(From OE-Core rev: 8d16cbe934291557a26e61266417febcb2e8dfba) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
463 B
BlitzBasic
23 lines
463 B
BlitzBasic
#
|
|
# Copyright (C) 2011 Intel Corporation
|
|
#
|
|
|
|
LICENSE = "MIT"
|
|
PR = "r39"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev"
|
|
|
|
SUMMARY_${PN} = "X11 display server"
|
|
RDEPENDS_${PN} = "\
|
|
${XSERVER} \
|
|
"
|
|
|
|
# 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"
|