summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-11-17 00:04:19 +0100
committerConrad Kostecki <conikost@gentoo.org>2020-11-17 00:05:56 +0100
commit4888ef21474c75ca7570e356be326a66ee09f853 (patch)
tree9c6ad1ac2b6cdeea125b3db7d98a92689abe2440 /games-fps/eduke32/files
parentsys-apps/portage: Stabilize 3.0.9 sparc, #754975 (diff)
downloadgentoo-4888ef21474c75ca7570e356be326a66ee09f853.tar.gz
gentoo-4888ef21474c75ca7570e356be326a66ee09f853.tar.bz2
gentoo-4888ef21474c75ca7570e356be326a66ee09f853.zip
games-fps/eduke32: bump to version 20200907.9257
This release also adds support for playing Shadow Warrior (Classic) data files. It is run via EDuke32's VoidSW launcher. Closes: https://bugs.gentoo.org/754951 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-fps/eduke32/files')
-rw-r--r--games-fps/eduke32/files/voidsw-bin12
1 files changed, 12 insertions, 0 deletions
diff --git a/games-fps/eduke32/files/voidsw-bin b/games-fps/eduke32/files/voidsw-bin
new file mode 100644
index 000000000000..5d572204848d
--- /dev/null
+++ b/games-fps/eduke32/files/voidsw-bin
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# Get all installed zip files
+zips=$(ls /usr/share/games/eduke32/*.zip)
+
+# Create opts for voidsw
+for zip in ${zips[@]}; do
+ opts+="-g ${zip} "
+done
+
+# Switch to /tmp, for writing there the log file and run voidsw with set opts
+cd /tmp && voidsw ${opts}