illume_svn.bb: The keyboard is now runtime configurable
authorDaniel Willmann <daniel@totalueberwachung.de>
Fri, 1 Aug 2008 12:16:11 +0000 (12:16 +0000)
committerDaniel Willmann <daniel@totalueberwachung.de>
Fri, 1 Aug 2008 12:16:11 +0000 (12:16 +0000)
This unbreaks the build and also enables the internal keyboard again.

packages/openmoko-projects/illume/module.illume.src [new file with mode: 0644]
packages/openmoko-projects/illume_svn.bb

diff --git a/packages/openmoko-projects/illume/module.illume.src b/packages/openmoko-projects/illume/module.illume.src
new file mode 100644 (file)
index 0000000..2657ca3
--- /dev/null
@@ -0,0 +1,17 @@
+group "Illume_Cfg" struct {
+  value "config_version" int: 1;
+  value "launcher.mode" int: 1;
+  value "launcher.icon_size" int: 120;
+  value "launcher.single_click" int: 1;
+  value "power.auto_suspend" int: 1;
+  value "power.auto_suspend_delay" int: 1;
+  value "performance.cache_level" int: 3;
+  value "performance.fps" int: 25;
+  value "slipshelf.main_gadget_size" int: 42;
+  value "slipshelf.extra_gagdet_size" int: 32;
+  value "sliding.slipshelf.duration" int: 1000;
+  value "sliding.kbd.duration" int: 1000;
+  value "sliding.busywin.duration" int: 1000;
+  value "sliding.layout.duration" int: 0;
+  value "kbd.use_internal" int: 1;
+}
index 52150a0..5f4127b 100644 (file)
@@ -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/
+}