summaryrefslogtreecommitdiffstats
path: root/games/xarchon/xarchon.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/xarchon/xarchon.SlackBuild')
-rw-r--r--games/xarchon/xarchon.SlackBuild56
1 files changed, 42 insertions, 14 deletions
diff --git a/games/xarchon/xarchon.SlackBuild b/games/xarchon/xarchon.SlackBuild
index 2516e43000..b973243601 100644
--- a/games/xarchon/xarchon.SlackBuild
+++ b/games/xarchon/xarchon.SlackBuild
@@ -1,11 +1,17 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for xarchon
-# Written by B. Watson (yalhcru@gmail.com)
+# Written by B. Watson (urchlay@slackware.uk)
# 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.
@@ -13,10 +19,13 @@
# further note, written later: no, Adept is nowhere near complete or
# playable. So I'm patching the game to remove the menu option for it.
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=xarchon
VERSION=${VERSION:-0.60}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -26,22 +35,33 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
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
@@ -54,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
@@ -89,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
@@ -127,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
@@ -136,4 +164,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE