summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2017-11-29 21:10:11 +0000
committerJames Le Cuirot <chewi@gentoo.org>2017-11-29 21:10:11 +0000
commitaea1fc6ec8e0f1d2d948c76df1db9da39110e596 (patch)
tree5ebfb6dad488f32e6a206988ceb253d09b3b63ce
parent[games-simulation/kerbal-space-program] Provide proper description and webpag... (diff)
downloadgamerlay-aea1fc6ec8e0f1d2d948c76df1db9da39110e596.tar.gz
gamerlay-aea1fc6ec8e0f1d2d948c76df1db9da39110e596.tar.bz2
gamerlay-aea1fc6ec8e0f1d2d948c76df1db9da39110e596.zip
games-util/steam-launcher: Drop old package in favour of steam-overlay
-rw-r--r--games-util/steam-launcher/Manifest1
-rw-r--r--games-util/steam-launcher/files/steam-fix-ld-library-path.patch21
-rw-r--r--games-util/steam-launcher/metadata.xml11
-rw-r--r--games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild119
4 files changed, 0 insertions, 152 deletions
diff --git a/games-util/steam-launcher/Manifest b/games-util/steam-launcher/Manifest
deleted file mode 100644
index 0837920..0000000
--- a/games-util/steam-launcher/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST steam_1.0.0.49.tar.gz 2179436 SHA256 fd893b5c2f5585be1cd8a83f4a6c7d523a2bd985a91587adb5afaccd6fa12fb0 SHA512 52a26bee229dfaf5bb0974340edaa4e07a7a8aa908b6e5187b61933ffbb9848cf6ea4803890334d976126c3a20b91d040a49782163000421beff0e9a036d144a WHIRLPOOL 8350e6f45f74cdfa310b94214ae367006fa824a4509d33ecad9f5f5f852990cb62af7be00c007de1a926172aa2a83b3658de809ab8f23f3496ea537f6c0bf623
diff --git a/games-util/steam-launcher/files/steam-fix-ld-library-path.patch b/games-util/steam-launcher/files/steam-fix-ld-library-path.patch
deleted file mode 100644
index c98ef77..0000000
--- a/games-util/steam-launcher/files/steam-fix-ld-library-path.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- steam 2015-01-01 19:14:52.312377741 +0100
-+++ steam_new 2015-01-01 19:13:59.023702762 +0100
-@@ -17,6 +17,18 @@
- # Set up domain for script localization
- export TEXTDOMAIN=steam
-
-+# Steam appends /usr/lib32 to LD_LIBRARY_PATH. We need to make sure that
-+# OpenGL implementation dir goes before that, so we need to append it
-+# to user's LD_LIBRARY_PATH ourselves. But that's needed only with
-+# the new eselect-opengl that uses 000opengl file.
-+if [ -f /etc/env.d/000opengl ]; then
-+ . /etc/env.d/000opengl
-+ # Append only when LDPATH is non-empty -- i.e. using nvidia or ati.
-+ if [ -n "${LDPATH}" ]; then
-+ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}${LD_LIBRARY_PATH+:}${LDPATH}
-+ fi
-+fi
-+
- function show_message()
- {
- style=$1
diff --git a/games-util/steam-launcher/metadata.xml b/games-util/steam-launcher/metadata.xml
deleted file mode 100644
index bbd24e8..0000000
--- a/games-util/steam-launcher/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <longdescription>
- This ebuild installs common files for the Steam environment,
- like bootstrap archive and icons, but not the client itself.
- </longdescription>
- <upstream>
- <bugs-to>https://github.com/anyc/steam-overlay</bugs-to>
- </upstream>
-</pkgmetadata>
diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
deleted file mode 100644
index 995fd1f..0000000
--- a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils gnome2-utils fdo-mime udev games
-
-DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
-HOMEPAGE="http://steampowered.com"
-SRC_URI="http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${PV}.tar.gz"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="ValveSteamLicense"
-
-RESTRICT="bindist mirror"
-SLOT="0"
-
-RDEPEND="
- app-arch/tar
- app-shells/bash
- net-misc/curl
- || (
- >=gnome-extra/zenity-3
- x11-terms/xterm
- )
-
- amd64? (
- || (
- >=app-emulation/emul-linux-x86-xlibs-20121028[-abi_x86_32(-)]
- (
- x11-libs/libX11[abi_x86_32]
- x11-libs/libXau[abi_x86_32]
- x11-libs/libxcb[abi_x86_32]
- x11-libs/libXdmcp[abi_x86_32]
- )
- )
- >=sys-devel/gcc-4.6.0[multilib]
- >=sys-libs/glibc-2.15[multilib]
- )
-
- x86? (
- >=sys-devel/gcc-4.6.0
- >=sys-libs/glibc-2.15
- >=x11-libs/libX11-1.5
- x11-libs/libXau
- x11-libs/libxcb
- x11-libs/libXdmcp
- )
-"
-
-S=${WORKDIR}/steam/
-
-src_prepare() {
- epatch "${FILESDIR}"/steam-fix-ld-library-path.patch
-
- # we use our ebuild functions to install the files
- rm Makefile
-
- sed -i \
- -e "s:/usr/bin/steam:${GAMES_BINDIR}/steam:" \
- "${S}"/steam.desktop || die "sed failed"
-
- epatch_user
-}
-
-src_install() {
- dogamesbin steam || die "dogamesbin failed"
-
- insinto /usr/lib/steam/
- doins bootstraplinux_ubuntu12_32.tar.xz
-
- udev_dorules lib/udev/rules.d/99-steam-controller-perms.rules
-
- dodoc debian/changelog steam_install_agreement.txt
- doman steam.6
-
- domenu steam.desktop
-
- cd icons/
- for s in * ; do
- doicon -s ${s} ${s}/steam.png
- done
-
- # tgz archive contains no separate pixmap, see #38
- insinto /usr/share/pixmaps/
- newins 48/steam_tray_mono.png steam_tray_mono.png
-
- prepgamesdirs
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
- gnome2_icon_cache_update
- udev_reload
-
- elog "Execute ${GAMES_BINDIR}/steam to download and install the actual"
- elog "client into your home folder. After installation, the script"
- elog "also starts the client from your home folder."
- elog ""
-
- if ! has_version "gnome-extra/zenity"; then
- ewarn "Valve does not provide a xterm fallback for all calls of zenity."
- ewarn "Please install gnome-extra/zenity for full support."
- ewarn ""
- fi
-
- ewarn "The steam client and the games are _not_ controlled by portage."
- ewarn "Updates are handled by the client itself."
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
- gnome2_icon_cache_update
-}