formfactor: Create suitable gtkrc file enabling gtk touchscreen mode for machines with touchscreens

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3418 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2008-01-07 21:29:15 +00:00
parent deff1f408a
commit bea90e612a

View 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
}