summaryrefslogtreecommitdiffstats
path: root/games/prboom-plus
diff options
context:
space:
mode:
Diffstat (limited to 'games/prboom-plus')
-rw-r--r--games/prboom-plus/README9
-rw-r--r--games/prboom-plus/prboom-plus.SlackBuild13
-rw-r--r--games/prboom-plus/prboom-plus.info6
3 files changed, 23 insertions, 5 deletions
diff --git a/games/prboom-plus/README b/games/prboom-plus/README
index 8269961fd1..2cd75e32f9 100644
--- a/games/prboom-plus/README
+++ b/games/prboom-plus/README
@@ -14,8 +14,10 @@ shareware doom1.wad) may be placed. The IWAD directory is
/usr/share/games/doom. If you don't have any IWADs, install
doom_shareware_data to play shareware Doom.
-Optional dependency, autodetected:
+Optional dependencies, autodetected:
portmidi - for the PortMIDI backend. Most users won't need this.
+dumb - somehow, this can be used for music. No idea how to enable it,
+ but if dumb is detected, prboom-plus will link with it.
*** NOTE ***
@@ -26,3 +28,8 @@ file that sets snd_midiplayer to "sdl", the music will sound *really*
messed up. If this happens, simply edit ~/.prboom-plus/prboom-plus.cfg
and remove the line containing snd_midiplayer. Or just delete the
file, to start with default settings.
+
+If you don't like the sound of the OPL2 music, you can try using
+FluidSynth instead (Options -> General -> Preferred MIDI Player in the
+user interface). Other options (PortMIDI and ALSA) may be usable but
+will require more setup, outside the scope of this README.
diff --git a/games/prboom-plus/prboom-plus.SlackBuild b/games/prboom-plus/prboom-plus.SlackBuild
index b440721fe9..373411b1ad 100644
--- a/games/prboom-plus/prboom-plus.SlackBuild
+++ b/games/prboom-plus/prboom-plus.SlackBuild
@@ -7,6 +7,10 @@
# Original had no license. Modified version released under the WTFPL. See
# http://www.wtfpl.net/txt/copying/ for details.
+# 20230714 bkw: update for v2.6.66. SDL MIDI is still broken.
+# - change default fluidsynth soundfont to one that exists in Slackware.
+# - document optional dependency dumb.
+
# 20220622 bkw: update for v2.6.2, add missing doinst.sh.
# 20211027 bkw:
@@ -28,7 +32,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=prboom-plus
-VERSION=${VERSION:-2.6.2}
+VERSION=${VERSION:-2.6.66}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -82,6 +86,11 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
sed -i '/install/s,/bin,/games,' src/CMakeLists.txt
sed -i '/^set(CMAKE_INSTALL_DOCDIR/d' CMakeLists.txt
+# 20230714 bkw: use a default soundfont that exists. allows choosing the
+# fluidsynth midi option. personally I think opl2 sounds better, but *shrug*.
+US="/usr/share"
+sed -i '/snd_soundfont/s,"'$US'[^"]*","'$US'/minuet/soundfonts/GeneralUser-v1.47.sf2",' src/m_misc.c
+
MIXEROPT=ON
if [ "${BANDAID:-yes}" = "yes" ]; then
# 20211027 bkw: Band-aid. The game segfaults when the midi backend
@@ -90,6 +99,8 @@ if [ "${BANDAID:-yes}" = "yes" ]; then
# backend to "opl2", which doesn't sound as nice, but allows the game
# to run. Also it increases the default volume, since the opl2 synth
# is quieter.
+ # 20230714 bkw: this is still needed for v2.6.66. the fault is in
+ # Slackware 15.0, so it's not going to change soon.
MIXEROPT=OFF
sed -i -e '/"snd_midiplayer"/s,"sdl","opl2",' \
-e '/"music_volume"/s,8,12,' \
diff --git a/games/prboom-plus/prboom-plus.info b/games/prboom-plus/prboom-plus.info
index cbd81bec65..0b35a74d52 100644
--- a/games/prboom-plus/prboom-plus.info
+++ b/games/prboom-plus/prboom-plus.info
@@ -1,8 +1,8 @@
PRGNAM="prboom-plus"
-VERSION="2.6.2"
+VERSION="2.6.66"
HOMEPAGE="http://prboom-plus.sourceforge.net"
-DOWNLOAD="https://github.com/coelckers/prboom-plus/archive/v2.6.2/prboom-plus-2.6.2.tar.gz"
-MD5SUM="51a234bea2963b125be864ee6e74f539"
+DOWNLOAD="https://github.com/coelckers/prboom-plus/archive/v2.6.66/prboom-plus-2.6.66.tar.gz"
+MD5SUM="62b29843ba4ab1f442be8fe469ee523f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""