summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-10-04 23:50:05 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-10-04 23:50:05 +0200
commit96e0bc0b450ba7eecc5da41d4d42a9c95f68e4f7 (patch)
treed91983211c5b828e1f99d291a0496a2ab6b85781 /games
parent6486934b351e1e6f65f26e445ebf16db7094b475 (diff)
downloadplay-96e0bc0b450ba7eecc5da41d4d42a9c95f68e4f7.tar.gz
play-96e0bc0b450ba7eecc5da41d4d42a9c95f68e4f7.tar.bz2
play-96e0bc0b450ba7eecc5da41d4d42a9c95f68e4f7.zip
new games
Diffstat (limited to 'games')
-rw-r--r--games/civ45
-rw-r--r--games/civ4-bts5
-rw-r--r--games/civ4-warlords5
-rw-r--r--games/torment30
4 files changed, 45 insertions, 0 deletions
diff --git a/games/civ4 b/games/civ4
new file mode 100644
index 0000000..b26158f
--- /dev/null
+++ b/games/civ4
@@ -0,0 +1,5 @@
+PREFIX="civ4"
+SIZE="1280x1024"
+GPATH="c:/civ4/Civilization4.exe"
+
+# vim:ft=sh
diff --git a/games/civ4-bts b/games/civ4-bts
new file mode 100644
index 0000000..fdf99c5
--- /dev/null
+++ b/games/civ4-bts
@@ -0,0 +1,5 @@
+PREFIX="civ4"
+SIZE="1280x1024"
+GPATH="c:/civ4/Beyond\ the\ Sword/Civ4BeyondSword.exe"
+
+# vim:ft=sh
diff --git a/games/civ4-warlords b/games/civ4-warlords
new file mode 100644
index 0000000..715562a
--- /dev/null
+++ b/games/civ4-warlords
@@ -0,0 +1,5 @@
+PREFIX="civ4"
+SIZE="1280x1024"
+GPATH="c:/civ4/Warlords/Civ4Warlords.exe"
+
+# vim:ft=sh
diff --git a/games/torment b/games/torment
new file mode 100644
index 0000000..20cf040
--- /dev/null
+++ b/games/torment
@@ -0,0 +1,30 @@
+ISO_TYPE=fuseiso
+
+inherit iso
+
+PREFIX="infinity"
+#SIZE="1280x960"
+SIZE="640x480"
+GPATH="c:/torment/torment.exe"
+EXARGS="-depth 16"
+
+mnttrgt="$WINEPREFIX/drive_c/tormentcds"
+
+prepare ()
+{
+ for i in 1 2 3 4; do
+ MOUNTTARGET="$mnttrgt/cd$i"
+ MOUNT=torment/TormentCD$i.iso
+ iso_prepare
+ done
+}
+
+cleanup ()
+{
+ for i in 1 2 3 4; do
+ MOUNTTARGET="$mnttrgt/cd$i"
+ iso_cleanup
+ done
+}
+
+# vim:ft=sh