diff options
author | Daniel Willmann <daniel@totalueberwachung.de> | 2008-08-01 12:16:11 +0000 |
---|---|---|
committer | Daniel Willmann <daniel@totalueberwachung.de> | 2008-08-01 12:16:11 +0000 |
commit | d9ecf3c63414f10610ff9aef8a9237df25ded23b (patch) | |
tree | 6d7684b26d81d34cf268e79871f92832e5367322 /packages/openmoko-projects/illume_svn.bb | |
parent | 44df75cc9b016d3b50a2c0831deee640359d3853 (diff) |
illume_svn.bb: The keyboard is now runtime configurable
This unbreaks the build and also enables the internal keyboard again.
Diffstat (limited to 'packages/openmoko-projects/illume_svn.bb')
-rw-r--r-- | packages/openmoko-projects/illume_svn.bb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/packages/openmoko-projects/illume_svn.bb b/packages/openmoko-projects/illume_svn.bb index 52150a00dc..5f4127b5ab 100644 --- a/packages/openmoko-projects/illume_svn.bb +++ b/packages/openmoko-projects/illume_svn.bb @@ -2,13 +2,14 @@ DESCRIPTION = "Illume - A mobile UI module for the Enlightenment Window Manager" HOMEPAGE = "http://illume.projects.openmoko.org" AUTHOR = "Rasterman" LICENSE = "MIT/BSD" -DEPENDS = "e-wm eet evas ecore edje embryo efreet edbus edje-native embryo-native" +DEPENDS = "e-wm eet evas ecore edje embryo efreet edbus edje-native embryo-native eet-native" PV = "0.0+svnr${SRCREV}" -PR = "r10" +PR = "r11" SRC_URI = "\ svn://svn.projects.openmoko.org/svnroot/;module=${PN};proto=http \ - file://configure-keyboard.patch;patch=1;pnum=0 \ + file://configure-keyboard.patch;patch=1;pnum=0;maxrev=170 \ + file://module.illume.src \ " S = "${WORKDIR}/${PN}" @@ -19,6 +20,7 @@ EXTRA_OECONF = "\ --x-libraries=${STAGING_LIBDIR} \ --enable-simple-x11 \ --with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \ + --with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \ \ --enable-illume-keyboard \ " @@ -54,3 +56,7 @@ FILES_${PN} = "\ ${libdir}/enlightenment/modules/*/*/* \ " FILES_${PN}-dbg += "${libdir}/enlightenment/modules/*/*/.debug/" + +do_configure_append() { + mv ${WORKDIR}/module.illume.src ${S}/config/illume/ +} |