blob: f9398fabe4a3a5a1f636c77e4e8b77f304baa4f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#
# 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"
|