summaryrefslogtreecommitdiff
path: root/packages/scummvm/files/fic-gta01
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2007-08-19 11:23:57 +0000
committerPhilipp Zabel <philipp.zabel@gmail.com>2007-08-19 11:23:57 +0000
commit3749fb97fb897e5ce64df385a0940a71c7fd3e92 (patch)
tree25479a74aa90cc2dcef8dd454a110dd06ccce83d /packages/scummvm/files/fic-gta01
parentcf0a5ca841a4aa19c8d71d8f4d31d114bcdeec7c (diff)
scummvm-0.9.1: update packaging, make default, openmoko integration
* remove DEFAULT_PREFERENCE="-1" * don't strip executable during install, we do that while packaging * add openmoko-scummvm script for fic-gta01 and scummvm.desktop file. * package the modern theme by default - maybe this should go into a separate scummvm-theme package, RRECOMMENDED by scummvm
Diffstat (limited to 'packages/scummvm/files/fic-gta01')
-rw-r--r--packages/scummvm/files/fic-gta01/.mtn2git_empty0
-rwxr-xr-xpackages/scummvm/files/fic-gta01/openmoko-scummvm19
2 files changed, 19 insertions, 0 deletions
diff --git a/packages/scummvm/files/fic-gta01/.mtn2git_empty b/packages/scummvm/files/fic-gta01/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/scummvm/files/fic-gta01/.mtn2git_empty
diff --git a/packages/scummvm/files/fic-gta01/openmoko-scummvm b/packages/scummvm/files/fic-gta01/openmoko-scummvm
new file mode 100755
index 0000000000..e8c5cb3984
--- /dev/null
+++ b/packages/scummvm/files/fic-gta01/openmoko-scummvm
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# Save current AUX Key mapping
+SAVE_KEY="$(xmodmap -pke | grep 'keycode 8')"
+
+# Map AUX Key to F5
+xmodmap -e "keycode 8 = F5"
+
+# Turn LCD feft
+xrandr -o left
+
+# Start the scummvm in fullscreen mode
+scummvm --fullscreen --themepath=/usr/share/scummvm/
+
+# Turn LCD normal
+xrandr -o normal
+
+# Restore the AUX Key mapping
+xmodmap -e "$SAVE_KEY"