diff options
Diffstat (limited to 'games/xarchon/xarchon.SlackBuild')
-rw-r--r-- | games/xarchon/xarchon.SlackBuild | 44 |
1 files changed, 31 insertions, 13 deletions
diff --git a/games/xarchon/xarchon.SlackBuild b/games/xarchon/xarchon.SlackBuild index f9f83f22b27f9..5c447c9a06075 100644 --- a/games/xarchon/xarchon.SlackBuild +++ b/games/xarchon/xarchon.SlackBuild @@ -6,6 +6,12 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211015 bkw: BUILD=3 +# - fix build on -current. +# - new-style icon. +# - TODO: fix segfault when built with -O2. For now, the band-aid is +# to build with -O0. + # note: xarchon plays Archon and Archon II: Adept. I can't tell if the # Adept game is complete or correct, because I never could understand # how to play it, even as a video-game-obsessed kid in the 1980s. @@ -17,7 +23,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=xarchon VERSION=${VERSION:-0.60} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -29,9 +35,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 @@ -41,17 +44,24 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} +# 20211015 bkw: on -current, with gcc12, the damn thing segfaults +# on startup when we use -O2 (or -O1 even). Since it's only a game, +# I won't spend a lot of time worrying about it. It won't compile with +# clang++ either (not even with -std=gnu++98). The *real* fix for this +# is going to be to port xarchon to qt5. Which is beyond the scope +# of this SlackBuild, but I might take a stab at it as a standalone +# project someday. if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" + SLKCFLAGS="-O0 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" + SLKCFLAGS="-O0 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" + SLKCFLAGS="-O0 -fPIC" LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2" + SLKCFLAGS="-O0" LIBDIRSUFFIX="" fi @@ -64,11 +74,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ # disable Adept menu option, since it's non-playable. patch -p1 < $CWD/patches/no_adept.diff @@ -99,6 +106,13 @@ patch -p1 < $CWD/patches/remove_theme_option.diff # remove mention of selecting themes. patch -p1 < $CWD/patches/manpage.diff +# 20211015 bkw: fix build on -current (gcc 12) +patch -p1 < $CWD/patches/newgccfix.diff + +# 20211015 bkw: patch from Fedora: +# https://src.fedoraproject.org/rpms/xarchon/raw/f34/f/xarchon-fonts.patch +patch -p1 < $CWD/patches/defaultfont.diff + # configure script is from 2002, no thank you. rm -f configure autoreconf -if @@ -137,6 +151,10 @@ mkdir -p $PKG/usr/share/pixmaps $PKG/usr/share/applications ln -s ../games/$PRGNAM/icon.xpm $PKG/usr/share/pixmaps/$PRGNAM.xpm cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop +# 20211015 bkw: new-style icon. Only available in 32x32, sorry. +mkdir -p $PKG/usr/share/icons/hicolor/32x32/apps +convert data/icon.xpm $PKG/usr/share/icons/hicolor/32x32/apps/$PRGNAM.png + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING ChangeLog NEWS README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |