generic-poky/meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb
Marcin Juszkiewicz 8f0ca1dd55 matchbox-session-sato: fix postinst
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4219 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-04-09 11:32:16 +00:00

34 lines
1.3 KiB
BlitzBasic

DESCRIPTION = "Custom MB session files for poky"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS = "formfactor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato initscripts matchbox-session"
PR = "r23"
SRC_URI = "file://session"
S = "${WORKDIR}"
do_install() {
install -d ${D}/${sysconfdir}/matchbox
install -m 0755 ${S}/session ${D}/${sysconfdir}/matchbox/
}
pkg_postinst_${PN} () {
#!/bin/sh -e
if [ "x$D" != "x" ]; then
exit 1
fi
. ${sysconfdir}/init.d/functions
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 bool --set /desktop/poky/interface/touchscreen true
if [ "`cpuinfo_id`" = "GTA01" ]
then
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/font_name "Sans 6"
else
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/font_name "Sans 9"
fi
}