summaryrefslogtreecommitdiffstats
path: root/system/lbench/lbench.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/lbench/lbench.SlackBuild')
-rw-r--r--system/lbench/lbench.SlackBuild37
1 files changed, 27 insertions, 10 deletions
diff --git a/system/lbench/lbench.SlackBuild b/system/lbench/lbench.SlackBuild
index 7cc4702d09..52601f7d69 100644
--- a/system/lbench/lbench.SlackBuild
+++ b/system/lbench/lbench.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for lbench
# simple Linux multithread benchmarking tool
@@ -25,10 +25,24 @@
#
# Maintained by David Spencer <baildon.research@googlemail.com>
+# 20220211 bkw: Modified by SlackBuilds.org
+# - fix build for 15.0.
+# - fix homepage.
+# - leave the full path to the icon in the .desktop file. please, before
+# you complain about this, go and actually read the freedesktop
+# standard for .desktop files.
+# - thought about updating to latest lbench (5.0) but it has a couple
+# new deps that aren't on SBo. also thought about updating to a newer
+# 3.x or 4.x, but upstream disappears the tarballs when new releases
+# are made. maintainer can worry about this.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=lbench
VERSION=${VERSION:-3.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -38,7 +52,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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}
@@ -68,9 +86,12 @@ 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 {} \+
+
+# 20220211 bkw: fix for modern gcc
+sed -i '/int popup_report_timeout/s,int,void,' zfuncs.cc
CXXFLAGS="$SLKCFLAGS" \
PREFIX=/usr \
@@ -93,11 +114,7 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-mkdir -p $PKG/usr/share/{applications,pixmaps}
-sed -i \
- -e "s|/usr/bin/lbench|lbench|" \
- -e "s|/usr/share/lbench/icons/lbench.png|lbench|" \
- $PKG/usr/share/applications/$PRGNAM.desktop
+mkdir -p $PKG/usr/share/pixmaps
cp $PRGNAM.png $PKG/usr/share/pixmaps/
mkdir -p $PKG/install
@@ -105,4 +122,4 @@ cat $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:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE