mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
games/cgmadness: Fix 15.0 build (but this still needs attention).
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
346204ffef
commit
f02b6d9fa7
2 changed files with 26 additions and 12 deletions
|
@ -4,11 +4,17 @@
|
||||||
|
|
||||||
# Written by Zbigniew Baniewski <Zbigniew [dot] Baniewski [at] gmail [dot] com>
|
# Written by Zbigniew Baniewski <Zbigniew [dot] Baniewski [at] gmail [dot] com>
|
||||||
|
|
||||||
|
# 20220220 bkw: Modified by SlackBuilds.org, BUILD=2:
|
||||||
|
# - fix build on 15.0.
|
||||||
|
# - move executable to /usr/games.
|
||||||
|
# ! THIS IS STILL BROKEN: it now builds an OK-looking Slackware package,
|
||||||
|
# but it segfaults on startup.
|
||||||
|
|
||||||
cd $(dirname $0) ; CWD=$(pwd)
|
cd $(dirname $0) ; CWD=$(pwd)
|
||||||
|
|
||||||
PRGNAM=cgmadness
|
PRGNAM=cgmadness
|
||||||
VERSION=${VERSION:-1.3}
|
VERSION=${VERSION:-1.3}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
PKGTYPE=${PKGTYPE:-tgz}
|
PKGTYPE=${PKGTYPE:-tgz}
|
||||||
|
|
||||||
|
@ -20,9 +26,6 @@ if [ -z "$ARCH" ]; then
|
||||||
esac
|
esac
|
||||||
fi
|
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
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -57,22 +60,33 @@ cd $PRGNAM
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
-o -perm 511 \) -exec chmod 755 {} \+ -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
|
||||||
|
|
||||||
cat $CWD/01-Makefile.patch | patch -p1
|
patch -p1 < $CWD/01-Makefile.patch
|
||||||
patch -p1 < $CWD/cgmadness.patch
|
patch -p1 < $CWD/cgmadness.patch
|
||||||
|
|
||||||
make
|
# 20220220 bkw: no way to see the damn compile commands without this:
|
||||||
|
sed -i 's,@\$,$,' Makefile
|
||||||
|
|
||||||
|
# 20220220 bkw: it turns out -ansi for g++ disables -std=c+11, grr.
|
||||||
|
sed -i '/-ansi/d' Makefile
|
||||||
|
|
||||||
|
# 20220220 bkw: linux never supported the posix streams api anyway:
|
||||||
|
sed -i '/include.*stropts\.h/d' libgrapple/socket.c
|
||||||
|
|
||||||
|
make CC="${CC:-gcc} $SLKCFLAGS" \
|
||||||
|
CXX="${CXX:-g++} $SLKCFLAGS -std=c++11"
|
||||||
|
|
||||||
mkdir -p $PKG/usr/share/games/cgmadness/data $PKG/usr/share/games/cgmadness/levels \
|
mkdir -p $PKG/usr/share/games/cgmadness/data $PKG/usr/share/games/cgmadness/levels \
|
||||||
$PKG/usr/bin $PKG/usr/share/pixmaps
|
$PKG/usr/games $PKG/usr/share/pixmaps
|
||||||
cp -a ballshadow.frag convert-cgm ballshadow.vert golfball.frag cgmadness \
|
cp -a ballshadow.frag convert-cgm ballshadow.vert golfball.frag cgmadness \
|
||||||
dedicated_server golfball.vert $PKG/usr/share/games/cgmadness
|
dedicated_server golfball.vert $PKG/usr/share/games/cgmadness
|
||||||
cp -a data/* $PKG/usr/share/games/cgmadness/data
|
cp -a data/* $PKG/usr/share/games/cgmadness/data
|
||||||
cp -a levels/* $PKG/usr/share/games/cgmadness/levels
|
cp -a levels/* $PKG/usr/share/games/cgmadness/levels
|
||||||
echo "cd /usr/share/games/cgmadness ; ./cgmadness" > $PKG/usr/bin/cgmadness
|
echo "cd /usr/share/games/cgmadness ; ./cgmadness" > $PKG/usr/games/cgmadness
|
||||||
chmod 0755 $PKG/usr/bin/cgmadness
|
chmod 0755 $PKG/usr/games/cgmadness
|
||||||
install -m 0644 $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
install -m 0644 $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||||
|
|
||||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Name=CG Madness
|
Name=CG Madness
|
||||||
GenericName=Marble Madness-like game
|
GenericName=Marble Madness-like game
|
||||||
Comment=Game based on the classic Marble Madness
|
Comment=Game based on the classic Marble Madness
|
||||||
Exec=/usr/share/games/cgmadness/cgmadness
|
Exec=/usr/games/cgmadness
|
||||||
Icon=/usr/share/pixmaps/cgmadness.png
|
Icon=/usr/share/pixmaps/cgmadness.png
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
|
|
Loading…
Reference in a new issue