summaryrefslogtreecommitdiffstats
path: root/games/advancemame/advancemame.SlackBuild
blob: aa9c18385a38781947b2c64b938cd922dc8083f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/bin/bash

# Slackware build script for "advancemame"

# Originally written by seb (email removed)

# Now maintained by B. Watson <yalhcru@gmail.com>. Original version
# had no license, modified version released under the WTFPL. See
# http://www.wtfpl.net/txt/copying/ for details.

# 20211004 bkw: BUILD=2, fix for -current
# 20180910 bkw: Update for v3.9
# 20180702 bkw: Update for v3.8
# 20180206 bkw: Update for v3.7
# 20171211 bkw: Update for v3.6
# 20170610 bkw: Update for v3.5
# 20170307 bkw: Update for v3.4

# 20170211 bkw:
# - Take over maintenance
# - Update for v3.2
# - i486 => i586
# - install man pages to section 6, since this is a game
# - major script cleanup/simplification (use 'make install')
# - add .desktop, icon, doinst
# - document optional SDL2 dep, add SDL2 env var to control it

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=advancemame
VERSION=${VERSION:-3.9}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

if [ -z "$ARCH" ]; then
  case "$( uname -m )" in
    i?86) ARCH=i586 ;;
    arm*) ARCH=arm ;;
       *) ARCH=$( uname -m ) ;;
  esac
fi

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}

set -e

if [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
  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

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L .  -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
        \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+

# 20180702 bkw: This file got left out of the 3.8 release tarball. It
# xzips down to 8.5K, so just include it here (taken from upstream git).
JOVER="joverride.dat"
if [ -e $CWD/$JOVER.xz -a ! -e advance/linux/$JOVER ]; then
  xzcat $CWD/$JOVER.xz > advance/linux/$JOVER
fi

if [ "${SDL2:-yes}" != "yes" ]; then
   SDL2OPT="--enable-sdl --disable-sdl2"
fi

PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION

# 20180702 bkw: tried using this:
##SLKCFLAGS="-fuse-ld=gold"
# but the link fails. advancemame already builds about 8-10x as fast as
# mame without it, so not worth worrying about this.

# 20211004 bkw: upstream commit f8688cae needed for -current.
patch -p1 < $CWD/compilefix.diff

CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  $SDL2OPT \
  --prefix=/usr \
  --libdir=/usr/lib${LIBDIRSUFFIX} \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --bindir=/usr/games \
  --mandir=/usr/man \
  --docdir=/usr/doc/$PRGNAM-$VERSION \
  --build=$ARCH-slackware-linux

make

# Please don't remove the -j1 from the make install command. Without it,
# the directories don't always get created before files are installed
# into them, resulting in a mess.
make -j1 install prefix=$PKG/usr bindir=$PKG/usr/games docdir=$PKGDOC

# Binaries are installed stripped. Man pages are in the wrong section!
mv $PKG/usr/man/man1 $PKG/usr/man/man6
sed -i '/^\.TH.* 1$/s,1$,6,' $PKG/usr/man/man6/*.1
rename .1 .6 $PKG/usr/man/man6/*.1
gzip -9 $PKG/usr/man/man6/*.6

# This one works better as a symlink:
rm -f $PKG/usr/man/man6/advmess.6.gz
ln -s advmame.6.gz $PKG/usr/man/man6/advmess.6.gz

# Easier to fix this after the fact than hack it to work right:
mv $PKGDOC/advance/* $PKGDOC
rmdir $PKGDOC/advance

# HISTORY, README, RELEASE are identical to history.txt, readme.txt,
# release.txt which are already installed, but the license doesn't have
# a lowercase.txt equivalent:
cp -a COPYING $PKGDOC

# Icon is a resized version of contrib/logo/megaman.png, which is the
# same as the Windows icon.
mkdir -p $PKG/usr/share/pixmaps
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png

# .desktop file written by SlackBuild author.
mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop

# see if we were built with SDL2.
if ldd $PKG/usr/games/advmame | grep -q SDL2; then
  SDLVER="2.0"
else
  SDLVER="1.2"
fi

mkdir -p $PKG/install
sed "s,@SDLVER@,$SDLVER,g" $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