diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-03-23 18:15:03 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-03-23 18:15:03 +0100 |
commit | 7d995c58b1f3c34874110f6040021fd83d618732 (patch) | |
tree | 21db911783f88a232b3bc5a0f669b73833f63f1c /meta-efl/classes/e.bbclass | |
parent | 1c2cf0868bcf72847a3150416f5b48e94ba512d4 (diff) | |
download | meta-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/e.bbclass')
-rw-r--r-- | meta-efl/classes/e.bbclass | 26 |
1 files changed, 26 insertions, 0 deletions
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 @@ | |||
1 | SECTION = "e/apps" | ||
2 | |||
3 | inherit e-base autotools pkgconfig binconfig | ||
4 | |||
5 | do_prepsources () { | ||
6 | make clean distclean || true | ||
7 | } | ||
8 | addtask prepsources after do_patch before do_configure | ||
9 | |||
10 | do_configure_prepend() { | ||
11 | autopoint || touch config.rpath | ||
12 | } | ||
13 | |||
14 | do_configure_append() { | ||
15 | find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g | ||
16 | } | ||
17 | |||
18 | export CURL_CONFIG = "${STAGING_BINDIR_CROSS}/curl-config" | ||
19 | export 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.... | ||
23 | PACKAGES = "${PN}-dbg ${PN}-themes ${PN} ${PN}-dev ${PN}-doc ${PN}-lib ${PN}-static" | ||
24 | FILES_${PN}-lib = "${libdir}/lib*.so.*" | ||
25 | FILES_${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" | ||
26 | FILES_${PN}-dev += "${includedir} ${libdir}/lib*.so" | ||