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 | |
| 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')
| -rw-r--r-- | meta-efl/classes/e-base.bbclass | 9 | ||||
| -rw-r--r-- | meta-efl/classes/e.bbclass | 26 | ||||
| -rw-r--r-- | meta-efl/classes/efl.bbclass | 63 | ||||
| -rw-r--r-- | meta-efl/classes/vala.bbclass | 18 |
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 0000000000..c27ba0e092 --- /dev/null +++ b/meta-efl/classes/e-base.bbclass | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | HOMEPAGE = "http://www.enlightenment.org" | ||
| 2 | SRCNAME ?= "${BPN}" | ||
| 3 | |||
| 4 | # usually tracks svn trunk HEAD | ||
| 5 | EFL_SRCREV ?= "56372" | ||
| 6 | # revision when 1.0.0 was released, for recipes which don't need rebuild so often | ||
| 7 | EFL_SRCREV_1.0.0 ?= "56356" | ||
| 8 | |||
| 9 | ARM_INSTRUCTION_SET = "arm" | ||
diff --git a/meta-efl/classes/e.bbclass b/meta-efl/classes/e.bbclass new file mode 100644 index 0000000000..88a1f6a360 --- /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" | ||
diff --git a/meta-efl/classes/efl.bbclass b/meta-efl/classes/efl.bbclass new file mode 100644 index 0000000000..2dc6fc2097 --- /dev/null +++ b/meta-efl/classes/efl.bbclass | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | SECTION = "e/libs" | ||
| 2 | LICENSE = "MIT BSD" | ||
| 3 | DEPENDS += "pkgconfig-native" | ||
| 4 | |||
| 5 | # revision 0d93ec84b30bc1bee2caaee72d667f87bc468a70 made SRCDATE and hence PV go backwards, so we need to up PE to unbreak builds and feeds :( | ||
| 6 | PE = "2" | ||
| 7 | |||
| 8 | inherit e-base autotools | ||
| 9 | |||
| 10 | # evas-native looks at this var, so keep it | ||
| 11 | |||
| 12 | do_configure_prepend() { | ||
| 13 | autopoint || touch config.rpath | ||
| 14 | } | ||
| 15 | |||
| 16 | do_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 | ||
| 23 | PACKAGES = "${PN}-dbg ${PN} ${PN}-themes ${PN}-dev ${PN}-doc ${PN}-tests ${PN}-static" | ||
| 24 | |||
| 25 | FILES_${PN} = "${libdir}/*.so.* \ | ||
| 26 | ${libdir}/edje/modules/${PN}/*/module.so \ | ||
| 27 | ${libdir}/${PN}/plugins/*.so \ | ||
| 28 | ${datadir}/dbus-1/services/* \ | ||
| 29 | " | ||
| 30 | |||
| 31 | |||
| 32 | FILES_${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 | |||
| 42 | FILES_${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 | |||
| 52 | FILES_${PN}-static += "${libdir}/${PN}/*.a \ | ||
| 53 | ${libdir}/${PN}/*/*.a \ | ||
| 54 | " | ||
| 55 | |||
| 56 | FILES_${PN}-dbg += "${libdir}/${PN}/.debug \ | ||
| 57 | ${libdir}/${PN}/*/.debug \ | ||
| 58 | ${libdir}/edje/modules/${PN}/*/.debug/module.so \ | ||
| 59 | " | ||
| 60 | |||
| 61 | FILES_${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 0000000000..d4ba83193a --- /dev/null +++ b/meta-efl/classes/vala.bbclass | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # Vala has problems with multiple concurrent invocations | ||
| 2 | PARALLEL_MAKE = "" | ||
| 3 | |||
| 4 | # Vala needs vala-native | ||
| 5 | DEPENDS += "vala-native" | ||
| 6 | DEPENDS_virtclass-native += "vala-native" | ||
| 7 | |||
| 8 | # Our patched version of Vala looks in STAGING_DATADIR for .vapi files | ||
| 9 | export STAGING_DATADIR | ||
| 10 | # Upstream Vala >= 0.11 looks in XDG_DATA_DIRS for .vapi files | ||
| 11 | export XDG_DATA_DIRS = "${STAGING_DATADIR}" | ||
| 12 | |||
| 13 | # Package additional files | ||
| 14 | FILES_${PN}-dev += "\ | ||
| 15 | ${datadir}/vala/vapi/*.vapi \ | ||
| 16 | ${datadir}/vala/vapi/*.deps \ | ||
| 17 | ${datadir}/gir-1.0 \ | ||
| 18 | " | ||
