mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

The bbclass depends on xfce4-panel and libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
14 lines
484 B
Plaintext
14 lines
484 B
Plaintext
inherit xfce distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
DEPENDS += "libxfce4ui libxfce4util xfce4-panel"
|
|
|
|
SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
|
|
|
|
FILES_${PN} += "${datadir}/xfce4/panel-plugins/"
|
|
FILES_${PN} += "${datadir}/xfce4/panel/plugins/"
|
|
FILES_${PN} += "${libdir}/xfce4/panel-plugins/*.so"
|
|
FILES_${PN} += "${libdir}/xfce4/panel/plugins/*.so"
|
|
FILES_${PN}-dbg += "${libexecdir}/xfce4/panel-plugins/.debug"
|