summaryrefslogtreecommitdiffstats
path: root/meta-efl/classes/efl.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta-efl/classes/efl.bbclass')
-rw-r--r--meta-efl/classes/efl.bbclass63
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-efl/classes/efl.bbclass b/meta-efl/classes/efl.bbclass
new file mode 100644
index 000000000..2dc6fc209
--- /dev/null
+++ b/meta-efl/classes/efl.bbclass
@@ -0,0 +1,63 @@
1SECTION = "e/libs"
2LICENSE = "MIT BSD"
3DEPENDS += "pkgconfig-native"
4
5# revision 0d93ec84b30bc1bee2caaee72d667f87bc468a70 made SRCDATE and hence PV go backwards, so we need to up PE to unbreak builds and feeds :(
6PE = "2"
7
8inherit e-base autotools
9
10# evas-native looks at this var, so keep it
11
12do_configure_prepend() {
13 autopoint || touch config.rpath
14}
15
16do_install_prepend () {
17 for i in `find ${S}/ -name "*.pc" -type f` ; do \
18 sed -i -e 's:-L${STAGING_LIBDIR}::g' -e 's:-I${STAGING_INCDIR}::g' $i
19 done
20}
21
22# This construction is stupid, someone with more E knowledge should change it to =+ or something
23PACKAGES = "${PN}-dbg ${PN} ${PN}-themes ${PN}-dev ${PN}-doc ${PN}-tests ${PN}-static"
24
25FILES_${PN} = "${libdir}/*.so.* \
26 ${libdir}/edje/modules/${PN}/*/module.so \
27 ${libdir}/${PN}/plugins/*.so \
28 ${datadir}/dbus-1/services/* \
29"
30
31
32FILES_${PN}-themes = "${datadir}/${PN}/themes \
33 ${datadir}/${PN}/data \
34 ${libdir}/${PN}/plugins/data/*.edj \
35 ${datadir}/${PN}/fonts \
36 ${datadir}/${PN}/pointers \
37 ${datadir}/${PN}/images \
38 ${datadir}/${PN}/users \
39 ${datadir}/${PN}/images \
40 ${datadir}/${PN}/styles"
41
42FILES_${PN}-dev += "${bindir}/${PN}-config \
43 ${libdir}/pkgconfig/* \
44 ${libdir}/lib*.la \
45 ${libdir}/*.so \
46 ${libdir}/${PN}/*.la \
47 ${libdir}/${PN}/*/*.la \
48 ${datadir}/${PN}/edje_externals \
49 ${libdir}/edje/modules/${PN}/*/module.la \
50"
51
52FILES_${PN}-static += "${libdir}/${PN}/*.a \
53 ${libdir}/${PN}/*/*.a \
54"
55
56FILES_${PN}-dbg += "${libdir}/${PN}/.debug \
57 ${libdir}/${PN}/*/.debug \
58 ${libdir}/edje/modules/${PN}/*/.debug/module.so \
59"
60
61FILES_${PN}-tests = "${bindir}/${PN} \
62 ${bindir}/*_* \
63 ${datadir}"