mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
This commit in gtk+ moved the cache files below <libdir> " commit c8849046860a9b17fa943247d85ddadb29262b48 Author: Matthias Clasen <mclasen@redhat.com> Date: Thu Jul 4 09:27:17 2013 -0400 Move the module cache files below libdir These files contain architecture-dependent paths, and thus placing them into sysconfdir causes unnecessary hassle. Now the immodule cache file is looked for in libdir/gtk-2.0/2.10.0/immodules.cache. Belated backport of a change that was done in the run-up to 3.0. " Since gtk-immodules-cache.bbclass creates the cache file in "/etc/gtk-2.0/gtk.immodules", the environment variable "GTK_IM_MODULE_FILE" can be set to point GTK+ at the file. [YOCTO #6774] (From OE-Core rev: d83d6ef50e6736d3c5f75050a01d5811a2a668f7) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
686 B
Bash
23 lines
686 B
Bash
#!/bin/sh
|
|
|
|
. /etc/formfactor/config
|
|
export GTK_IM_MODULE_FILE="/etc/gtk-2.0/gtk.immodules"
|
|
|
|
CMD=""
|
|
|
|
if [ "$HAVE_KEYBOARD" = "0" ]; then
|
|
CMD="matchbox-keyboard -d"
|
|
elif [ "$DISPLAY_CAN_ROTATE" = "1" ]; then
|
|
if [ "$HAVE_KEYBOARD_PORTRAIT" = "1" -a "$HAVE_KEYBOARD_LANDSCAPE" = "0" ]; then
|
|
CMD="matchbox-keyboard -d -o landscape"
|
|
elif [ "$HAVE_KEYBOARD_LANDSCAPE" = "1" -a "$HAVE_KEYBOARD_PORTRAIT" = "0" ]; then
|
|
CMD="matchbox-keyboard -d -o portrait"
|
|
fi
|
|
fi
|
|
|
|
if [ "$CMD" ]; then
|
|
# Delay to make sure the window manager is active
|
|
# by waiting for the desktop to say its finished loading
|
|
dbus-wait org.matchbox_project.desktop Loaded && $CMD &
|
|
fi
|