aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-10-27 11:16:13 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2010-10-27 23:12:22 +0200
commit2e2ec545f067882638acc71950808e98c37df323 (patch)
tree88b290b53674b30c5f87638775236d06f7f4d03d /classes
parentc5e497e23f497c0ec3099ab363633bb315c89b85 (diff)
downloadopenembedded-2e2ec545f067882638acc71950808e98c37df323.tar.gz
efl.bbclass: improve packaging a bit
* include dbus service config if available * include plugins from //plugins/ (ie from ethumb) * include edje modules (ie from emotion) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/efl.bbclass14
1 files changed, 11 insertions, 3 deletions
diff --git a/classes/efl.bbclass b/classes/efl.bbclass
index 14334571ce..f148e9cfa8 100644
--- a/classes/efl.bbclass
+++ b/classes/efl.bbclass
@@ -29,10 +29,16 @@ do_install_prepend () {
# This construction is stupid, someone with more E knowledge should change it to =+ or something
PACKAGES = "${PN}-dbg ${PN} ${PN}-themes ${PN}-dev ${PN}-doc ${PN}-tests ${PN}-static"
-FILES_${PN} = "${libdir}/*.so.*"
+FILES_${PN} = "${libdir}/*.so.* \
+ ${libdir}/edje/modules/${PN}/*/module.so \
+ ${libdir}/${PN}/plugins/*.so \
+ ${datadir}/dbus-1/services/* \
+"
+
FILES_${PN}-themes = "${datadir}/${PN}/themes \
${datadir}/${PN}/data \
+ ${libdir}/${PN}/plugins/data/*.edj \
${datadir}/${PN}/fonts \
${datadir}/${PN}/pointers \
${datadir}/${PN}/images \
@@ -47,6 +53,7 @@ FILES_${PN}-dev += "${bindir}/${PN}-config \
${libdir}/${PN}/*.la \
${libdir}/${PN}/*/*.la \
${datadir}/${PN}/edje_externals \
+ ${libdir}/edje/modules/${PN}/*/module.la \
"
FILES_${PN}-static += "${libdir}/${PN}/*.a \
@@ -54,9 +61,10 @@ FILES_${PN}-static += "${libdir}/${PN}/*.a \
"
FILES_${PN}-dbg += "${libdir}/${PN}/.debug \
- ${libdir}/${PN}/*/.debug"
+ ${libdir}/${PN}/*/.debug \
+ ${libdir}/edje/modules/${PN}/*/.debug/module.so \
+"
FILES_${PN}-tests = "${bindir}/${PN} \
${bindir}/*_* \
${datadir}"
-