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
60
61
62
63
64
65
66
67
|
SUMMARY = "All packages for full XFCE installation"
SECTION = "x11/wm"
inherit packagegroup features_check
REQUIRED_DISTRO_FEATURES = "x11"
# mandatory
RDEPENDS:${PN} = " \
packagegroup-xfce-base \
"
# nice to have
RRECOMMENDS:${PN} = " \
xfwm4-theme-daloa \
xfwm4-theme-kokodi \
xfwm4-theme-moheli \
\
xfce-dusk-gtk3 \
\
xfce4-cpufreq-plugin \
xfce4-cpugraph-plugin \
xfce4-datetime-plugin \
xfce4-eyes-plugin \
xfce4-clipman-plugin \
xfce4-diskperf-plugin \
xfce4-netload-plugin \
xfce4-genmon-plugin \
xfce4-xkb-plugin \
xfce4-wavelan-plugin \
xfce4-places-plugin \
xfce4-systemload-plugin \
xfce4-time-out-plugin \
xfce4-timer-plugin \
xfce4-weather-plugin \
xfce4-fsguard-plugin \
xfce4-battery-plugin \
xfce4-mount-plugin \
xfce4-powermanager-plugin \
xfce4-closebutton-plugin \
xfce4-notes-plugin \
xfce4-whiskermenu-plugin \
xfce4-mailwatch-plugin \
xfce4-smartbookmark-plugin \
${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'xfce4-pulseaudio-plugin', '', d)} \
xfce4-sensors-plugin \
xfce4-calculator-plugin \
xfce4-verve-plugin \
\
${@bb.utils.contains('DISTRO_FEATURES','polkit','xfce-polkit','',d)} \
${@bb.utils.contains("DISTRO_FEATURES", "bluetooth gobject-introspection", "blueman", "", d)} \
\
thunar-media-tags-plugin \
thunar-archive-plugin \
\
xfce4-appfinder \
xfce4-screensaver \
xfce4-screenshooter \
xfce4-power-manager \
ristretto \
xfce4-taskmanager \
gigolo \
mousepad \
${@bb.utils.contains("DISTRO_FEATURES", "gobject-introspection-data", "catfish", "", d)} \
${@bb.utils.contains("DISTRO_FEATURES", "gobject-introspection-data", "xfce4-panel-profiles", "", d)} \
"
|