summaryrefslogtreecommitdiffstats
path: root/meta-efl/classes
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-03-23 18:15:03 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2011-03-23 18:15:03 +0100
commit7d995c58b1f3c34874110f6040021fd83d618732 (patch)
tree21db911783f88a232b3bc5a0f669b73833f63f1c /meta-efl/classes
parent1c2cf0868bcf72847a3150416f5b48e94ba512d4 (diff)
downloadmeta-openembedded-7d995c58b1f3c34874110f6040021fd83d618732.tar.gz
meta-efl: import from meta-shr.
Not all dependencies are in yet e.g. eve is missing webkit-efl, but e-wm should build Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-efl/classes')
-rw-r--r--meta-efl/classes/e-base.bbclass9
-rw-r--r--meta-efl/classes/e.bbclass26
-rw-r--r--meta-efl/classes/efl.bbclass63
-rw-r--r--meta-efl/classes/vala.bbclass18
4 files changed, 116 insertions, 0 deletions
diff --git a/meta-efl/classes/e-base.bbclass b/meta-efl/classes/e-base.bbclass
new file mode 100644
index 000000000..c27ba0e09
--- /dev/null
+++ b/meta-efl/classes/e-base.bbclass
@@ -0,0 +1,9 @@
1HOMEPAGE = "http://www.enlightenment.org"
2SRCNAME ?= "${BPN}"
3
4# usually tracks svn trunk HEAD
5EFL_SRCREV ?= "56372"
6# revision when 1.0.0 was released, for recipes which don't need rebuild so often
7EFL_SRCREV_1.0.0 ?= "56356"
8
9ARM_INSTRUCTION_SET = "arm"
diff --git a/meta-efl/classes/e.bbclass b/meta-efl/classes/e.bbclass
new file mode 100644
index 000000000..88a1f6a36
--- /dev/null
+++ b/meta-efl/classes/e.bbclass
@@ -0,0 +1,26 @@
1SECTION = "e/apps"
2
3inherit e-base autotools pkgconfig binconfig
4
5do_prepsources () {
6 make clean distclean || true
7}
8addtask prepsources after do_patch before do_configure
9
10do_configure_prepend() {
11 autopoint || touch config.rpath
12}
13
14do_configure_append() {
15 find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
16}
17
18export CURL_CONFIG = "${STAGING_BINDIR_CROSS}/curl-config"
19export FREETYPE_CONFIG = "${STAGING_BINDIR_CROSS}/freetype-config"
20
21# This construction is stupid, someone with more E knowledge should change it to =+ or something
22# And it's in efl.bbclass as well....
23PACKAGES = "${PN}-dbg ${PN}-themes ${PN} ${PN}-dev ${PN}-doc ${PN}-lib ${PN}-static"
24FILES_${PN}-lib = "${libdir}/lib*.so.*"
25FILES_${PN}-themes = "${datadir}/${PN}/themes ${datadir}/${PN}/data ${datadir}/${PN}/fonts ${datadir}/${PN}/pointers ${datadir}/${PN}/images ${datadir}/${PN}/users ${datadir}/${PN}/images ${datadir}/${PN}/styles"
26FILES_${PN}-dev += "${includedir} ${libdir}/lib*.so"
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}"
diff --git a/meta-efl/classes/vala.bbclass b/meta-efl/classes/vala.bbclass
new file mode 100644
index 000000000..d4ba83193
--- /dev/null
+++ b/meta-efl/classes/vala.bbclass
@@ -0,0 +1,18 @@
1# Vala has problems with multiple concurrent invocations
2PARALLEL_MAKE = ""
3
4# Vala needs vala-native
5DEPENDS += "vala-native"
6DEPENDS_virtclass-native += "vala-native"
7
8# Our patched version of Vala looks in STAGING_DATADIR for .vapi files
9export STAGING_DATADIR
10# Upstream Vala >= 0.11 looks in XDG_DATA_DIRS for .vapi files
11export XDG_DATA_DIRS = "${STAGING_DATADIR}"
12
13# Package additional files
14FILES_${PN}-dev += "\
15 ${datadir}/vala/vapi/*.vapi \
16 ${datadir}/vala/vapi/*.deps \
17 ${datadir}/gir-1.0 \
18"