public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2013-04-25 20:10 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2013-04-25 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     5dd33478c9514f59ea28b6cf313116db7716df3a
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Thu Apr 25 20:10:17 2013 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Thu Apr 25 20:10:17 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=5dd33478

[games-util/steam-launcher] new v38, beta requires enabled runtime due to missing deps

---
 .../steam-launcher/steam-launcher-1.0.0.38.ebuild  |  143 ++++++++++++++++++++
 1 files changed, 143 insertions(+), 0 deletions(-)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.38.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.38.ebuild
new file mode 100644
index 0000000..35a64cb
--- /dev/null
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.38.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
+# or come to #gentoo-gamerlay in freenode IRC
+
+inherit eutils gnome2-utils fdo-mime
+
+DESCRIPTION="Supplementary files for Valve's Steam client for Linux"
+HOMEPAGE="http://steampowered.com"
+
+if [[ "${PV}" == "9999" ]] ; then
+	SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_latest.deb"
+	KEYWORDS=""
+else
+	SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
+	KEYWORDS="-* ~amd64 ~x86"
+fi
+
+LICENSE="ValveSteamLicense"
+
+RESTRICT="bindist mirror"
+SLOT="0"
+IUSE="-steamruntime"
+
+RDEPEND="
+		app-arch/xz-utils
+		app-shells/bash
+		net-misc/curl
+		|| (
+			gnome-extra/zenity
+			x11-terms/xterm
+			)
+
+		amd64? (
+			>=app-emulation/emul-linux-x86-baselibs-20121028
+			|| (
+				>=app-emulation/emul-linux-x86-xlibs-20121028
+				(
+					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() {
+	if [[ "${PV}" != "9999" ]] ; then
+		if ! use steamruntime; then
+			# use system libraries
+			sed -i -r 's/#(if \[ -z "\$STEAM_RUNTIME" \]; then)/\1/' steam
+			sed -i -r "s/#	STEAM_RUNTIME=1/ export STEAM_RUNTIME=0/" steam
+			sed -i -r "s/#(fi)/\1/" steam
+		fi
+
+		# we use our ebuild functions to install the files
+		rm Makefile
+	fi
+}
+
+src_install() {
+	dobin steam
+
+	insinto /usr/lib/steam/
+	doins bootstraplinux_ubuntu12_32.tar.xz
+
+	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.png steam_tray_mono.png
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	gnome2_icon_cache_update
+
+	ewarn "This ebuild only installs the launcher. To start the client"
+	ewarn "and play games, you'll need further libraries that you can"
+	ewarn "pull in using the steam-meta ebuild."
+	ewarn ""
+
+	elog "Execute /usr/bin/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 use steamruntime; then
+		ewarn "You enabled the steam runtime environment. Steam will use bundled"
+		ewarn "libraries instead of system libraries which is _not_ supported."
+		ewarn ""
+	else
+		elog "We disable STEAM_RUNTIME in order to ignore bundled libraries"
+		elog "and use installed system libraries instead. If you have problems,"
+		elog "try starting steam with: STEAM_RUNTIME=1 steam"
+		elog ""
+		ewarn "Due to new dependencies, the steam beta client currently only works"
+		ewarn "with steam runtime enabled."
+		ewarn ""
+	fi
+
+	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] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2013-08-30 10:55 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2013-08-30 10:55 UTC (permalink / raw
  To: gentoo-commits

commit:     d20319d47bd2c150b69c70ba5cf661159c474ab5
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Fri Aug 30 10:54:42 2013 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Fri Aug 30 10:54:46 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=d20319d4

[games-util/steam-launcher] new version 1.0.0.40

---
 .../steam-launcher/steam-launcher-1.0.0.40.ebuild  | 108 +++++++++++++++++++++
 1 file changed, 108 insertions(+)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild
new file mode 100644
index 0000000..5e5487d
--- /dev/null
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
+# or come to #gentoo-gamerlay in freenode IRC
+
+inherit eutils gnome2-utils fdo-mime
+
+DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
+HOMEPAGE="http://steampowered.com"
+SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
+
+KEYWORDS="-* ~amd64 ~x86"
+LICENSE="ValveSteamLicense"
+
+RESTRICT="bindist mirror"
+SLOT="0"
+
+RDEPEND="
+		app-arch/xz-utils
+		app-shells/bash
+		net-misc/curl
+		|| (
+			gnome-extra/zenity
+			x11-terms/xterm
+			)
+
+		amd64? (
+			>=app-emulation/emul-linux-x86-baselibs-20121028
+			|| (
+				>=app-emulation/emul-linux-x86-xlibs-20121028
+				(
+					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() {
+	# we use our ebuild functions to install the files
+	rm Makefile
+}
+
+src_install() {
+	dobin steam
+
+	insinto /usr/lib/steam/
+	doins bootstraplinux_ubuntu12_32.tar.xz
+
+	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.png steam_tray_mono.png
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	gnome2_icon_cache_update
+
+	elog "Execute /usr/bin/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] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2013-09-28 11:04 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2013-09-28 11:04 UTC (permalink / raw
  To: gentoo-commits

commit:     c3a755b0d3fbad07c679d60e50639a80404cfebe
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Sat Sep 28 11:03:52 2013 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Sat Sep 28 11:03:52 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=c3a755b0

[games-util/steam-launcher] minor update to v42

---
 .../steam-launcher/steam-launcher-1.0.0.40.ebuild  | 108 ---------------------
 ...39-r2.ebuild => steam-launcher-1.0.0.42.ebuild} |   0
 2 files changed, 108 deletions(-)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild
deleted file mode 100644
index 5e5487d..0000000
--- a/games-util/steam-launcher/steam-launcher-1.0.0.40.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
-# or come to #gentoo-gamerlay in freenode IRC
-
-inherit eutils gnome2-utils fdo-mime
-
-DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
-HOMEPAGE="http://steampowered.com"
-SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="ValveSteamLicense"
-
-RESTRICT="bindist mirror"
-SLOT="0"
-
-RDEPEND="
-		app-arch/xz-utils
-		app-shells/bash
-		net-misc/curl
-		|| (
-			gnome-extra/zenity
-			x11-terms/xterm
-			)
-
-		amd64? (
-			>=app-emulation/emul-linux-x86-baselibs-20121028
-			|| (
-				>=app-emulation/emul-linux-x86-xlibs-20121028
-				(
-					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() {
-	# we use our ebuild functions to install the files
-	rm Makefile
-}
-
-src_install() {
-	dobin steam
-
-	insinto /usr/lib/steam/
-	doins bootstraplinux_ubuntu12_32.tar.xz
-
-	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.png steam_tray_mono.png
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	fdo-mime_desktop_database_update
-	gnome2_icon_cache_update
-
-	elog "Execute /usr/bin/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
-}

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.39-r2.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.42.ebuild
similarity index 100%
rename from games-util/steam-launcher/steam-launcher-1.0.0.39-r2.ebuild
rename to games-util/steam-launcher/steam-launcher-1.0.0.42.ebuild


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2014-02-15 11:49 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2014-02-15 11:49 UTC (permalink / raw
  To: gentoo-commits

commit:     92aaf0330c3daa80b5e5ff717db8a5c48ddb1821
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Sat Feb 15 11:49:28 2014 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Sat Feb 15 11:49:28 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=92aaf033

[games-util/steam-launcher] version bump

---
 .../{steam-launcher-1.0.0.42.ebuild => steam-launcher-1.0.0.47.ebuild}    | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.42.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild
similarity index 100%
rename from games-util/steam-launcher/steam-launcher-1.0.0.42.ebuild
rename to games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2014-06-09 22:24 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2014-06-09 22:24 UTC (permalink / raw
  To: gentoo-commits

commit:     e2d63de8ba8e9932fde76b034d2df93978dc9a9d
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Mon Jun  9 20:37:33 2014 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Mon Jun  9 22:23:30 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=e2d63de8

[games-util/steam-launcher] use games eclass, thanks to Ghost99

---
 .../steam-launcher-1.0.0.47-r1.ebuild              | 114 +++++++++++++++++++++
 1 file changed, 114 insertions(+)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild
new file mode 100644
index 0000000..809ea47
--- /dev/null
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
+# or come to #gentoo-gamerlay in freenode IRC
+
+inherit eutils gnome2-utils fdo-mime games
+
+DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
+HOMEPAGE="http://steampowered.com"
+SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
+
+KEYWORDS=""
+LICENSE="ValveSteamLicense"
+
+RESTRICT="bindist mirror"
+SLOT="0"
+
+RDEPEND="
+		app-arch/xz-utils
+		app-shells/bash
+		net-misc/curl
+		|| (
+			gnome-extra/zenity
+			x11-terms/xterm
+			)
+
+		amd64? (
+			>=app-emulation/emul-linux-x86-baselibs-20121028
+			|| (
+				>=app-emulation/emul-linux-x86-xlibs-20121028
+				(
+					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() {
+	# 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" 
+}
+
+src_install() {
+	dogamesbin steam || die "dogamesbin failed"
+
+	insinto /usr/lib/steam/
+	doins bootstraplinux_ubuntu12_32.tar.xz
+
+	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.png steam_tray_mono.png
+
+	prepgamesdirs
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	gnome2_icon_cache_update
+
+	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] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2015-01-01 20:03 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2015-01-01 20:03 UTC (permalink / raw
  To: gentoo-commits

commit:     7883796a51684247d5f15b66d05bfd53fe2da6b7
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Thu Jan  1 20:03:37 2015 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Thu Jan  1 20:03:37 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=7883796a

[games-util/steam-launcher] new 1.0.0.49, sync with steam-overlay

---
 games-util/steam-launcher/metadata.xml             |   6 --
 .../steam-launcher/steam-launcher-1.0.0.49.ebuild  | 112 +++++++++++++++++++++
 2 files changed, 112 insertions(+), 6 deletions(-)

diff --git a/games-util/steam-launcher/metadata.xml b/games-util/steam-launcher/metadata.xml
index 982aa7f..40fb94f 100644
--- a/games-util/steam-launcher/metadata.xml
+++ b/games-util/steam-launcher/metadata.xml
@@ -12,10 +12,4 @@
 	<upstream>
 		<bugs-to>https://github.com/anyc/steam-overlay</bugs-to>
 	</upstream>
-	<use>
-		<flag name='steamruntime'>
-			Enables the Steam runtime environment that uses bundled
-			libraries instead of installed system libraries.
-		</flag>
-	</use>
 </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
new file mode 100644
index 0000000..2f66fc5
--- /dev/null
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
+# or come to #gentoo-gamerlay in freenode IRC
+
+inherit eutils gnome2-utils fdo-mime udev
+
+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
+}
+
+src_install() {
+	dobin steam
+
+	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
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	gnome2_icon_cache_update
+	udev_reload
+
+	elog "Execute /usr/bin/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] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2015-01-11 12:57 Vadim A. Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2015-01-11 12:57 UTC (permalink / raw
  To: gentoo-commits

commit:     c46072181666028d4c72fe307b5b8414cb716d92
Author:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
AuthorDate: Sun Jan 11 12:57:40 2015 +0000
Commit:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Sun Jan 11 12:57:40 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=c4607218

[games-util/steam-launcher] some improvements from bug531990#c25

Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name>

---
 .../steam-launcher-1.0.0.47-r1.ebuild              | 114 ---------------------
 .../steam-launcher/steam-launcher-1.0.0.47.ebuild  | 108 -------------------
 .../steam-launcher/steam-launcher-1.0.0.49.ebuild  |  10 +-
 3 files changed, 9 insertions(+), 223 deletions(-)

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild
deleted file mode 100644
index 809ea47..0000000
--- a/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
-# or come to #gentoo-gamerlay in freenode IRC
-
-inherit eutils gnome2-utils fdo-mime games
-
-DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
-HOMEPAGE="http://steampowered.com"
-SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
-
-KEYWORDS=""
-LICENSE="ValveSteamLicense"
-
-RESTRICT="bindist mirror"
-SLOT="0"
-
-RDEPEND="
-		app-arch/xz-utils
-		app-shells/bash
-		net-misc/curl
-		|| (
-			gnome-extra/zenity
-			x11-terms/xterm
-			)
-
-		amd64? (
-			>=app-emulation/emul-linux-x86-baselibs-20121028
-			|| (
-				>=app-emulation/emul-linux-x86-xlibs-20121028
-				(
-					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() {
-	# 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" 
-}
-
-src_install() {
-	dogamesbin steam || die "dogamesbin failed"
-
-	insinto /usr/lib/steam/
-	doins bootstraplinux_ubuntu12_32.tar.xz
-
-	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.png steam_tray_mono.png
-
-	prepgamesdirs
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	fdo-mime_desktop_database_update
-	gnome2_icon_cache_update
-
-	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
-}

diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild
deleted file mode 100644
index 5e5487d..0000000
--- a/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
-# or come to #gentoo-gamerlay in freenode IRC
-
-inherit eutils gnome2-utils fdo-mime
-
-DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
-HOMEPAGE="http://steampowered.com"
-SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="ValveSteamLicense"
-
-RESTRICT="bindist mirror"
-SLOT="0"
-
-RDEPEND="
-		app-arch/xz-utils
-		app-shells/bash
-		net-misc/curl
-		|| (
-			gnome-extra/zenity
-			x11-terms/xterm
-			)
-
-		amd64? (
-			>=app-emulation/emul-linux-x86-baselibs-20121028
-			|| (
-				>=app-emulation/emul-linux-x86-xlibs-20121028
-				(
-					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() {
-	# we use our ebuild functions to install the files
-	rm Makefile
-}
-
-src_install() {
-	dobin steam
-
-	insinto /usr/lib/steam/
-	doins bootstraplinux_ubuntu12_32.tar.xz
-
-	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.png steam_tray_mono.png
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	fdo-mime_desktop_database_update
-	gnome2_icon_cache_update
-
-	elog "Execute /usr/bin/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
-}

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
index 2f66fc5..0412e37 100644
--- a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
@@ -41,6 +41,7 @@ RDEPEND="
 			>=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
@@ -48,7 +49,8 @@ RDEPEND="
 			x11-libs/libXau
 			x11-libs/libxcb
 			x11-libs/libXdmcp
-			)"
+			)
+"
 
 S=${WORKDIR}/steam/
 
@@ -57,6 +59,12 @@ src_prepare() {
 
 	# 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() {


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2015-01-11 15:19 Vadim A. Misbakh-Soloviov
  0 siblings, 0 replies; 9+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2015-01-11 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     15add003b17500d89f0ef3094f1f23921909863e
Author:     Yuri Konotopov <yuri <AT> konotopov <DOT> pro>
AuthorDate: Sun Jan 11 15:19:17 2015 +0000
Commit:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Sun Jan 11 15:19:17 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=15add003

[games-util/steam-launcher] some improvements (see bug531990#c25). Part 2

Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name>

---
 games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
index 0412e37..e5a783d 100644
--- a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
@@ -68,7 +68,7 @@ src_prepare() {
 }
 
 src_install() {
-	dobin steam
+	dogamesbin steam
 
 	insinto /usr/lib/steam/
 	doins bootstraplinux_ubuntu12_32.tar.xz


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
@ 2015-01-12 17:21 Mario Kicherer
  0 siblings, 0 replies; 9+ messages in thread
From: Mario Kicherer @ 2015-01-12 17:21 UTC (permalink / raw
  To: gentoo-commits

commit:     89416b891c9831f42b18736c0fca40f46ea94beb
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Mon Jan 12 17:21:48 2015 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Mon Jan 12 17:21:48 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=89416b89

[games-util/steam-launcher] fix games.eclass usage

---
 games-util/steam-launcher/metadata.xml                   |  4 ----
 games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild | 13 ++++++-------
 2 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/games-util/steam-launcher/metadata.xml b/games-util/steam-launcher/metadata.xml
index 40fb94f..bbd24e8 100644
--- a/games-util/steam-launcher/metadata.xml
+++ b/games-util/steam-launcher/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer>
-		<email>dev@kicherer.org</email>
-		<name>Mario Kicherer</name>
-	</maintainer>
 	<longdescription>
 		This ebuild installs common files for the Steam environment,
 		like bootstrap archive and icons, but not the client itself.

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
index e5a783d..995fd1f 100644
--- a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
+++ b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild
@@ -4,10 +4,7 @@
 
 EAPI=5
 
-# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay
-# or come to #gentoo-gamerlay in freenode IRC
-
-inherit eutils gnome2-utils fdo-mime udev
+inherit eutils gnome2-utils fdo-mime udev games
 
 DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client"
 HOMEPAGE="http://steampowered.com"
@@ -62,13 +59,13 @@ src_prepare() {
 
 	sed -i \
 		-e "s:/usr/bin/steam:${GAMES_BINDIR}/steam:" \
-		${S}/steam.desktop || die "sed failed"
+		"${S}"/steam.desktop || die "sed failed"
 
 	epatch_user
 }
 
 src_install() {
-	dogamesbin steam
+	dogamesbin steam || die "dogamesbin failed"
 
 	insinto /usr/lib/steam/
 	doins bootstraplinux_ubuntu12_32.tar.xz
@@ -88,6 +85,8 @@ src_install() {
 	# 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() {
@@ -99,7 +98,7 @@ pkg_postinst() {
 	gnome2_icon_cache_update
 	udev_reload
 
-	elog "Execute /usr/bin/steam to download and install the actual"
+	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 ""


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-01-12 17:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-09 22:24 [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/ Mario Kicherer
  -- strict thread matches above, loose matches on Subject: below --
2015-01-12 17:21 Mario Kicherer
2015-01-11 15:19 Vadim A. Misbakh-Soloviov
2015-01-11 12:57 Vadim A. Misbakh-Soloviov
2015-01-01 20:03 Mario Kicherer
2014-02-15 11:49 Mario Kicherer
2013-09-28 11:04 Mario Kicherer
2013-08-30 10:55 Mario Kicherer
2013-04-25 20:10 Mario Kicherer

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