diff options
author | Koen Kooi <koen@openembedded.org> | 2007-12-18 15:17:02 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-12-18 15:17:02 +0000 |
commit | 9e7021307a438de709cd45f474454b7d58353b66 (patch) | |
tree | c6941fe9c89f2300d62e1b6c1ffb4d017a2d67b1 /packages/matchbox-sato/matchbox-sato_0.1.bb | |
parent | fe0ea02e82f9d3e46513095d84cf6be560edd6f4 (diff) |
poky-base-image: add an image that offers a basic "poky" gui, and its dependencies
* untested, needs work
* has a workaround to not require formfactor for touchscreen detection
Diffstat (limited to 'packages/matchbox-sato/matchbox-sato_0.1.bb')
-rw-r--r-- | packages/matchbox-sato/matchbox-sato_0.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/matchbox-sato/matchbox-sato_0.1.bb b/packages/matchbox-sato/matchbox-sato_0.1.bb new file mode 100644 index 0000000000..b622f24586 --- /dev/null +++ b/packages/matchbox-sato/matchbox-sato_0.1.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "Custom MB session files for poky" +LICENSE = "GPL" +SECTION = "x11" +RDEPENDS = "gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato" +RCONFLICTS = "matchbox-common" +PR = "r17" + +SRC_URI = "file://etc file://matchbox-session" +S = ${WORKDIR} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/matchbox-session ${D}/${bindir} + cp -R ${S}/etc ${D}/etc + rm -fR ${D}/etc/.svn + rm -fR ${D}/etc/matchbox/.svn + chmod -R 755 ${D}/etc +} + +pkg_postinst_matchbox-sato () { +#!/bin/sh -e +if [ "x$D" != "x" ]; then + exit 1 +fi + +gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/theme Sato +gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/icon_theme Sato +gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/font_name "Sans 9" +} |