diff options
Diffstat (limited to 'games/gzdoom-legacy/gzdoom-legacy.SlackBuild')
-rw-r--r-- | games/gzdoom-legacy/gzdoom-legacy.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/games/gzdoom-legacy/gzdoom-legacy.SlackBuild b/games/gzdoom-legacy/gzdoom-legacy.SlackBuild index 6087eb7917..d2ab9ef85a 100644 --- a/games/gzdoom-legacy/gzdoom-legacy.SlackBuild +++ b/games/gzdoom-legacy/gzdoom-legacy.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211009 bkw: BUILD=3, fix build on -current. # 20200426 bkw: # - Fix <unknown version> in window title for real this time, BUILD=2. @@ -38,7 +39,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gzdoom-legacy SRCNAM=gzdoom VERSION=${VERSION:-2.4.0} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -50,9 +51,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -107,7 +105,8 @@ patch -p1 < $CWD/window_title_version.diff # title will read 1.8.08 for version 1.8.09, eg. sed -i "/#define *VERSIONSTR/s,[^ ]*$,\"$VERSION\"," src/version.h -# This isn't currently used, but was in the past, and will be again I'm sure. +# Version-specific patches. As of 2021, it's unlikely any old versions +# of gzdoom will build without patching. [ -e $CWD/compilefix.$VERSION.diff ] && \ patch -p1 < $CWD/compilefix.$VERSION.diff |