blob: 80e7111961a14301753cec7b414e0d8c00ee8808 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
SUMMARY = "Tasks for an LXDE based image"
inherit task
# Most of these tasks are arch independant
PACKAGE_ARCH = "all"
XSERVER ?= "xserver-xorg \
xf86-input-evdev \
xf86-input-mouse \
xf86-video-fbdev \
xf86-input-keyboard \
"
PACKAGES += "task-lxde-apps task-lxde-xserver task-lxde-xserver-base"
RDEPENDS_task-lxde-apps = " \
pcmanfm \
lxpanel \
lxsession-lite \
lxde-common \
openbox \
leafpad \
gpicview \
"
RDEPENDS_task-lxde-xserver-base = " \
dbus-x11 \
desktop-file-utils \
iso-codes \
mime-support \
notification-daemon inotify-tools \
xauth \
xdg-utils \
xhost \
xinetd \
xinit \
xlsfonts \
xrandr \
xrdb \
xrefresh \
xset \
xvinfo \
"
RDEPENDS_task-lxde-xserver = " \
${XSERVER} \
"
PACKAGE_ARCH_task-lxde-xserver = "${MACHINE_ARCH}"
RDEPENDS_${PN} = " \
task-lxde-xserver-base \
"
RRECOMMENDS_${PN} = " \
task-lxde-xserver \
"
|