public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/files/, games-util/steam-launcher/
@ 2017-11-29 21:11 James Le Cuirot
  0 siblings, 0 replies; only message in thread
From: James Le Cuirot @ 2017-11-29 21:11 UTC (permalink / raw
  To: gentoo-commits

commit:     aea1fc6ec8e0f1d2d948c76df1db9da39110e596
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 21:10:11 2017 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 21:10:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=aea1fc6e

games-util/steam-launcher: Drop old package in favour of steam-overlay

 .../files/steam-fix-ld-library-path.patch          |  21 ----
 games-util/steam-launcher/metadata.xml             |  11 --
 .../steam-launcher/steam-launcher-1.0.0.49.ebuild  | 119 ---------------------
 3 files changed, 151 deletions(-)

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
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-11-29 21:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-29 21:11 [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/files/, games-util/steam-launcher/ James Le Cuirot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox