summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorDaniel Willmann <daniel@totalueberwachung.de>2008-08-01 12:16:11 +0000
committerDaniel Willmann <daniel@totalueberwachung.de>2008-08-01 12:16:11 +0000
commitd9ecf3c63414f10610ff9aef8a9237df25ded23b (patch)
tree6d7684b26d81d34cf268e79871f92832e5367322 /packages
parent44df75cc9b016d3b50a2c0831deee640359d3853 (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')
-rw-r--r--packages/openmoko-projects/illume/module.illume.src17
-rw-r--r--packages/openmoko-projects/illume_svn.bb12
2 files changed, 26 insertions, 3 deletions
diff --git a/packages/openmoko-projects/illume/module.illume.src b/packages/openmoko-projects/illume/module.illume.src
new file mode 100644
index 0000000000..2657ca3dd8
--- /dev/null
+++ b/packages/openmoko-projects/illume/module.illume.src
@@ -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;
+}
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/
+}