summaryrefslogtreecommitdiffstats
path: root/games/nsuds
diff options
context:
space:
mode:
author B. Watson2022-02-20 23:49:43 +0100
committer Robby Workman2022-02-21 21:34:28 +0100
commit528c485e4b5ee36e0010b43a20e2d4890b860b77 (patch)
treeece737070d2c8cb40a4c5d5ce2eb95e4542d9f0f /games/nsuds
parentc510dfa93b79f779185ab7e247af989d15915182 (diff)
downloadslackbuilds-528c485e4b5ee36e0010b43a20e2d4890b860b77.tar.gz
games/nsuds: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/nsuds')
-rw-r--r--games/nsuds/nsuds.SlackBuild28
1 files changed, 18 insertions, 10 deletions
diff --git a/games/nsuds/nsuds.SlackBuild b/games/nsuds/nsuds.SlackBuild
index ff5bdb9389..ac6c560b24 100644
--- a/games/nsuds/nsuds.SlackBuild
+++ b/games/nsuds/nsuds.SlackBuild
@@ -2,11 +2,18 @@
# Slackware build script for nsuds
# Written by Dan-Simon Myrland <dansimon@radiotube.org>
+# 20220220 bkw: Modified by SlackBuilds.org, BUILD=2:
+# - fix 15.0 build.
+# - binary in /usr/games, man page in section 6.
+
+# TODO: /var/games/nsuds/high_scores looks like it's meant to be
+# writable by users, but it's not.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=nsuds
VERSION=${VERSION:-0.7B}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -18,10 +25,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
@@ -56,26 +59,31 @@ 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 \
+ -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 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
+
+SLKCFLAGS+=" -fcommon"
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
+ --bindir=/usr/games \
--mandir=/usr/man \
--build=$ARCH-slackware-linux
make
make install-strip DESTDIR=$PKG
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+mkdir -p $PKG/usr/man/man6
+sed '/^\.TH/s,"1","6",' $PKG/usr/man/man1/$PRGNAM.1 | \
+ gzip -9c > $PKG/usr/man/man6/$PRGNAM.6.gz
+rm -rf $PKG/usr/man/man1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a AUTHORS COPYING ChangeLog NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install