2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
# Slackware build script for openjazz
|
|
|
|
|
2022-06-08 18:27:49 +02:00
|
|
|
# Written by B. Watson (urchlay@slackware.uk)
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# 20211026 bkw:
|
|
|
|
# - update for v20190106. Can't build old versions.
|
|
|
|
# - binary in /usr/games, share dir /usr/share/games/openjazz.
|
|
|
|
# - update man page.
|
|
|
|
# - install shareware docs as *.txt, convert to utf-8.
|
|
|
|
# - recreate paths.diff for this version.
|
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2014-03-30 19:29:27 +02:00
|
|
|
PRGNAM=openjazz
|
2021-10-27 04:21:15 +02:00
|
|
|
VERSION=${VERSION:-20190106}
|
2014-03-30 19:29:27 +02:00
|
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-08-19 10:59:51 +02:00
|
|
|
i?86) ARCH=i586 ;;
|
2014-03-30 19:29:27 +02:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 12:23:38 +02:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2014-03-30 19:29:27 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2016-08-19 10:59:51 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2014-03-30 19:29:27 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2021-10-27 04:21:15 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
|
2014-03-30 19:29:27 +02:00
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
2021-10-27 04:21:15 +02:00
|
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
# Patch does 4 things:
|
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# - Always look for openjazz.000 in /usr/share/games/openjazz. Saves the user
|
2014-03-30 19:29:27 +02:00
|
|
|
# from having to keep copies or symlinks of it in every game dir.
|
|
|
|
|
|
|
|
# - Writes config file to user's homedir, not current dir.
|
|
|
|
|
|
|
|
# - For .psm (music) files, if they're not found as "blah.psm", try the
|
|
|
|
# all-uppercase "BLAH.PSM" instead. Saves the user having to rename
|
|
|
|
# them (and keeps things consistent, EVERYTHING ALL CAPS). In case you're
|
|
|
|
# wondering, the lowercase psm filenames are hardcoded inside the data
|
|
|
|
# files from the DOS game, not the source.
|
|
|
|
|
|
|
|
# - Logs the full path & result of every attempted file open. I needed
|
|
|
|
# this myself to understand WTF was going on, leaving it in case
|
|
|
|
# users find it helpful.
|
|
|
|
|
|
|
|
patch -p1 < $CWD/paths.diff
|
|
|
|
|
|
|
|
autoreconf -if
|
|
|
|
|
|
|
|
# HOMEDIR should be defined on *nix, for some reason it's not automatically.
|
2015-11-19 06:15:45 +01:00
|
|
|
# 20151119 bkw: modplug header in wrong place (or, is it?)
|
|
|
|
SLKCFLAGS="$SLKCFLAGS -DHOMEDIR -I/usr/include/libmodplug"
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2021-10-27 04:21:15 +02:00
|
|
|
--bindir=/usr/games/ \
|
2014-03-30 19:29:27 +02:00
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
|
|
|
--build=$ARCH-slackware-linux
|
|
|
|
|
|
|
|
make
|
|
|
|
make install-strip DESTDIR=$PKG
|
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# grr.
|
|
|
|
mv $PKG/usr/games/OpenJazz $PKG/usr/games/$PRGNAM
|
|
|
|
mkdir -p $PKG/usr/share/games
|
|
|
|
mv $PKG/usr/share/$PRGNAM $PKG/usr/share/games/$PRGNAM
|
|
|
|
|
|
|
|
# 20211026 bkw: upstream's .desktop is useless.
|
|
|
|
rm -f $PKG/usr/share/applications/*.desktop
|
|
|
|
|
2014-03-30 19:29:27 +02:00
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
2021-10-27 04:21:15 +02:00
|
|
|
ln -s ../icons/hicolor/48x48/apps/OpenJazz.png $PKG/usr/share/pixmaps/OpenJazz.png
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/shareware \
|
2021-10-27 04:21:15 +02:00
|
|
|
$PKG/usr/share/games/$PRGNAM/shareware
|
2014-03-30 19:29:27 +02:00
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# shareware data. the *.DOC files are renamed to .txt to avoid dumb
|
|
|
|
# desktop environments thinking they're ms-word docs. ORDER_DE and
|
|
|
|
# ORDER_UK are non-ASCII, convert to Unicode and UTF-8.
|
|
|
|
cd $PKG/usr/share/games/$PRGNAM/shareware
|
2014-03-30 19:29:27 +02:00
|
|
|
unzip $CWD/jjrabbit.zip
|
|
|
|
for i in *.DOC; do
|
2021-10-27 04:21:15 +02:00
|
|
|
j=$( basename $i .DOC )
|
|
|
|
dest=$PKG/usr/doc/$PRGNAM-$VERSION/shareware/$j.txt
|
|
|
|
sed 's,\r,,g' $i | iconv -f cp437 -t utf-8 > $dest
|
2014-03-30 19:29:27 +02:00
|
|
|
done
|
|
|
|
rm -f *.EXE *.DIZ *.DOC *.PIF
|
|
|
|
cd -
|
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# shareware wrapper script
|
2014-03-30 19:29:27 +02:00
|
|
|
mkdir -p $PKG/usr/games
|
|
|
|
cat <<EOF >$PKG/usr/games/$PRGNAM-shareware
|
|
|
|
#!/bin/sh
|
2021-10-27 04:21:15 +02:00
|
|
|
exec $PRGNAM /usr/share/games/$PRGNAM/shareware "\$@"
|
2014-03-30 19:29:27 +02:00
|
|
|
EOF
|
|
|
|
chmod 755 $PKG/usr/games/$PRGNAM-shareware
|
|
|
|
|
2021-10-27 04:21:15 +02:00
|
|
|
# shareware icon came from windows jazz jackrabbit CD, converted with icotool
|
|
|
|
cat $CWD/$PRGNAM.png > $PKG/usr/share/icons/hicolor/48x48/apps/$PRGNAM-shareware.png
|
|
|
|
ln -s ../icons/hicolor/48x48/apps/$PRGNAM-shareware.png \
|
|
|
|
$PKG/usr/share/pixmaps/$PRGNAM-shareware.png
|
|
|
|
|
2014-03-30 19:29:27 +02:00
|
|
|
# man page written for this slackbuild
|
|
|
|
mkdir -p $PKG/usr/man/man6
|
|
|
|
gzip -9c < $CWD/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz
|
2021-10-27 04:21:15 +02:00
|
|
|
ln -s $PRGNAM.6.gz $PKG/usr/man/man6/$PRGNAM-shareware.6.gz
|
2014-03-30 19:29:27 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/share/applications
|
|
|
|
cat $CWD/$PRGNAM-shareware.desktop \
|
|
|
|
> $PKG/usr/share/applications/$PRGNAM-shareware.desktop
|
|
|
|
|
|
|
|
for i in *.txt; do
|
|
|
|
sed 's,\r,,g' $i > $PKG/usr/doc/$PRGNAM-$VERSION/$i
|
|
|
|
done
|
2021-10-27 04:21:15 +02:00
|
|
|
cp -a README* $PKG/usr/doc/$PRGNAM-$VERSION
|
2014-03-30 19:29:27 +02:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|