From 41ee84818994d0b71f35d120080ec315f29722d5 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 20 Feb 2022 16:37:30 -0500 Subject: games/larn: Fix 15.0 build. Signed-off-by: B. Watson --- games/larn/larn.SlackBuild | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/games/larn/larn.SlackBuild b/games/larn/larn.SlackBuild index 4e844eff63..5bd1c843f4 100644 --- a/games/larn/larn.SlackBuild +++ b/games/larn/larn.SlackBuild @@ -22,6 +22,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220220 bkw: Modified by SlackBuilds.org: +# - fix build on 15.0. +# - actually use SLKCFLAGS. +# - the wrapper script in /usr/games was getting installed without +# +x permission, fix. +# - use a relative symlink (not absolute) for the wrapper script. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=larn @@ -38,9 +45,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 @@ -71,26 +75,30 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf RL_M-$VERSION tar xvf $CWD/RL_M-$VERSION.tar.gz -cd RL_M-$VERSION/src +cd RL_M-$VERSION +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +cd src + +# 20220220 bkw: grrrr. +sed -i "s,-Werror,$SLKCFLAGS," Makefile make mv larn .. cd .. mkdir -p $PKG/usr/share/games/larn -cp -a larn $PKG/usr/share/games/larn +install -s -m0755 larn $PKG/usr/share/games/larn mkdir -p $PKG/usr/share/games/larn/data chown -R games:users $PKG/usr/share/games/larn/data chmod 775 $PKG/usr/share/games/larn/data -cp $CWD/larn.sh $PKG/usr/share/games/larn +install -m0755 -oroot -groot $CWD/larn.sh $PKG/usr/share/games/larn mkdir -p $PKG/usr/games cd $PKG/usr/games -ln -fs /usr/share/games/larn/larn.sh larn +ln -s ../share/games/larn/larn.sh larn cd $TMP/RL_M-$VERSION -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a manual.txt README.md changelog.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -- cgit v1.2.3-80-g2a13