formfactor: Create suitable gtkrc file enabling gtk touchscreen mode for machines...
authorRichard Purdie <richard@openedhand.com>
Mon, 7 Jan 2008 21:29:15 +0000 (21:29 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 7 Jan 2008 21:29:15 +0000 (21:29 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3418 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/formfactor/formfactor_0.0.bb

index 2daef0a..ddbb6e4 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "Device formfactor information"
 SECTION = "base"
-PR = "r7"
+PR = "r8"
 
 SRC_URI = "file://config file://machconfig"
 S = "${WORKDIR}"
@@ -14,4 +14,11 @@ do_install() {
        if [ -s "${S}/machconfig" ]; then
                install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/
        fi
+       
+       install -d ${D}${sysconfdir}/gtk-2.0/
+       . ${S}/machconfig
+
+       if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
+               echo "gtk-touchscreen-mode = 1" > ${D}${sysconfdir}/gtk-2.0/gtkrc
+       fi
 }