summaryrefslogtreecommitdiffstats
path: root/games/steam
diff options
context:
space:
mode:
Diffstat (limited to 'games/steam')
-rw-r--r--games/steam/README2
-rw-r--r--games/steam/doinst.sh22
-rw-r--r--games/steam/patch-slackdirs.diff26
-rw-r--r--games/steam/slack-desc4
-rw-r--r--games/steam/steam.SlackBuild47
-rw-r--r--games/steam/steam.info14
6 files changed, 94 insertions, 21 deletions
diff --git a/games/steam/README b/games/steam/README
index 8b8e1172f0..6f4193d351 100644
--- a/games/steam/README
+++ b/games/steam/README
@@ -4,4 +4,4 @@ Steam provides the user with installation and automatic updating of games on
multiple computers, and community features such as friends lists and groups,
cloud saving, and in-game voice and chat functionality.
-Recomended Packages: flashplayer-plugin, libtxc_dxtn
+A multilib installation is required to run steam.
diff --git a/games/steam/doinst.sh b/games/steam/doinst.sh
index 5013ef6d40..976546b7e9 100644
--- a/games/steam/doinst.sh
+++ b/games/steam/doinst.sh
@@ -1,3 +1,21 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+# Update the desktop database:
+if [ -x usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
+fi
+
+# Update hicolor theme cache:
+if [ -d usr/share/icons/hicolor ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
+ fi
+fi
+
+# Update the mime database:
+if [ -x usr/bin/update-mime-database ]; then
+ /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
+fi
+
+# Reload the udev rules to include our newly installed steam rules
+if [ -x /sbin/udevadm ]; then
+ /sbin/udevadm control --reload
fi
diff --git a/games/steam/patch-slackdirs.diff b/games/steam/patch-slackdirs.diff
new file mode 100644
index 0000000000..f5c87f1a6f
--- /dev/null
+++ b/games/steam/patch-slackdirs.diff
@@ -0,0 +1,26 @@
+--- Makefile.orig 2020-03-20 03:13:39.000000000 +1000
++++ Makefile 2020-04-23 18:31:43.521950531 +1000
+@@ -14,10 +14,10 @@
+ ln -fns $(pkglibdir)/bin_steamdeps.py $(DESTDIR)$(bindir)/$(PACKAGE)deps
+
+ install-docs:
+- install -d -m 755 $(DESTDIR)$(PREFIX)/share/doc/$(PACKAGE)/
+- install -p -m 644 README steam_subscriber_agreement.txt $(DESTDIR)$(PREFIX)/share/doc/$(PACKAGE)/
+- install -d -m 755 $(DESTDIR)$(PREFIX)/share/man/man6/
+- install -m 644 $(PACKAGE).6 $(DESTDIR)$(PREFIX)/share/man/man6/
++ install -d -m 755 $(DESTDIR)$(PREFIX)/doc/$(PACKAGE)-$(VERSION)/
++ install -p -m 644 README steam_subscriber_agreement.txt $(DESTDIR)$(PREFIX)/doc/$(PACKAGE)-$(VERSION)/
++ install -d -m 755 $(DESTDIR)$(PREFIX)/man/man6/
++ install -m 644 $(PACKAGE).6 $(DESTDIR)$(PREFIX)/man/man6/
+
+ install-icons:
+ install -d -m 755 $(DESTDIR)$(PREFIX)/share/icons/hicolor/16x16/apps/
+@@ -39,7 +39,7 @@
+ install -p -m 644 bootstraplinux_ubuntu12_32.tar.xz $(DESTDIR)$(PREFIX)/lib/$(PACKAGE)/
+
+ install-desktop:
+- install -d -m 755 $(DESTDIR)$(PREFIX)/share/applications/
++ install -d -m 755 $(DESTDIR)$(datadir)/applications/
+ install -d -m 755 $(DESTDIR)$(pkglibdir)/
+ install -p -m 644 $(PACKAGE).desktop $(DESTDIR)$(pkglibdir)
+ ln -fns $(pkglibdir)/$(PACKAGE).desktop $(DESTDIR)$(datadir)/applications/
diff --git a/games/steam/slack-desc b/games/steam/slack-desc
index 198d4b6788..ca1aa1c411 100644
--- a/games/steam/slack-desc
+++ b/games/steam/slack-desc
@@ -11,9 +11,9 @@ steam:
steam: Steam is an internet-based digital distribution, digital rights
steam: management, multiplayer, and social networking platform developed by
steam: Valve Corporation.
-steam:
-steam: Steam provides the user with installation and automatic updating of
+steam: Steam provides the user with installation and automatic updating of
steam: games on multiple computers, and community features such as friends
steam: lists and groups, cloud saving, and in-game voice and chat
steam: functionality.
+steam:
steam: Project URL: http://store.steampowered.com
diff --git a/games/steam/steam.SlackBuild b/games/steam/steam.SlackBuild
index a9aa5a5cc4..3de919e31b 100644
--- a/games/steam/steam.SlackBuild
+++ b/games/steam/steam.SlackBuild
@@ -2,7 +2,9 @@
# Slackware build script for steam
-# Copyright Talos Thoren
+# Copyright 2016 Talos Thoren
+# All rights reserved.
+# Copyright 2019-21 Christoph Willing, Brisbane, Australia
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,13 +25,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=steam
-VERSION=${VERSION:-1.0.0.52}
+VERSION=${VERSION:-1.0.0.69}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -40,14 +42,32 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
+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
+
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM\_$VERSION
+rm -rf ${PRGNAM}-launcher
tar xvf $CWD/$PRGNAM\_$VERSION.tar.gz
-cd $PRGNAM
+cd ${PRGNAM}-launcher
+
+# Use Slackware-specific installation directories
+patch -p0 < $CWD/patch-slackdirs.diff
+
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@@ -55,19 +75,28 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-make install DESTDIR=$PKG
+# alienBOB's trick for unfound system apps
+sed -i -e '\/usr\/bin\/env\ bash/{N;s#$#\nexport PATH="/usr/lib/steam/local:$PATH"\n#}' bin_steam.sh
+mkdir -p $PKG/usr/lib/steam/local
+ln -sf /sbin/pidof $PKG/usr/lib/steam/local/pidof
+ln -sf /sbin/lspci $PKG/usr/lib/steam/local/lspci
+
+sed -i -e "s/distribution.\\\n/distribution.\\\n Actually, don't worry - this is Slackware\!\\\n\\\n/" bin_steamdeps.py
+make install DESTDIR=$PKG VERSION=$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
-mv $PKG/usr/share/man/ $PKG/usr/
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/lib/udev/rules.d
+install -p -m 0644 subprojects/steam-devices/*.rules $PKG/lib/udev/rules.d/
+sed -i -e 's/^KERNEL=="uinput".*/& GROUP="plugdev"/' $PKG/lib/udev/rules.d/60-steam-input.rules
+
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/steam/* $PKG/usr/doc/$PRGNAM-$VERSION
+cp subprojects/steam-devices/LICENSE $PKG/usr/doc/$PRGNAM-$VERSION/
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-rm -rf $PKG/usr/share/doc
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
diff --git a/games/steam/steam.info b/games/steam/steam.info
index 09dfae2ea3..e61d6d06ad 100644
--- a/games/steam/steam.info
+++ b/games/steam/steam.info
@@ -1,10 +1,10 @@
PRGNAM="steam"
-VERSION="1.0.0.52"
-HOMEPAGE="http://store.steampowered.com/"
-DOWNLOAD="http://repo.steampowered.com/steam/archive/precise/steam_1.0.0.52.tar.gz"
-MD5SUM="18fe1e009d229ec2eb28e4e7fa87ebc8"
+VERSION="1.0.0.69"
+HOMEPAGE="https://store.steampowered.com/"
+DOWNLOAD="https://repo.steampowered.com/steam/archive/precise/steam_1.0.0.69.tar.gz"
+MD5SUM="9099e348686ac5d50f6a8823e40c421d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="OpenAL"
-MAINTAINER="Talos Thoren"
-EMAIL="talosthoren@gmail.com"
+REQUIRES="OpenAL python3 zenity"
+MAINTAINER="Christoph Willing"
+EMAIL="chris.willing@linux.com"