From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05B661389E2 for ; Thu, 1 Jan 2015 20:18:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 659D6E07D8; Thu, 1 Jan 2015 20:18:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19179E07D8 for ; Thu, 1 Jan 2015 20:18:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F97F3406B2 for ; Thu, 1 Jan 2015 20:18:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D0DFEA8F for ; Thu, 1 Jan 2015 20:18:26 +0000 (UTC) From: "Mario Kicherer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mario Kicherer" Message-ID: <1420143499.be8ea9c05d2bca27a74b074ba4872cc3eaef13ab.anyc@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/files/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-util/steam-launcher/files/steam-fix-ld-library-path.patch X-VCS-Directories: games-util/steam-launcher/files/ X-VCS-Committer: anyc X-VCS-Committer-Name: Mario Kicherer X-VCS-Revision: be8ea9c05d2bca27a74b074ba4872cc3eaef13ab X-VCS-Branch: master Date: Thu, 1 Jan 2015 20:18:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d43d5790-5492-4114-abbb-52b0298bac6b X-Archives-Hash: a7e0f5c63b994eaf73b7fe3059b20005 commit: be8ea9c05d2bca27a74b074ba4872cc3eaef13ab Author: Mario Kicherer kicherer org> AuthorDate: Thu Jan 1 20:18:19 2015 +0000 Commit: Mario Kicherer kicherer org> CommitDate: Thu Jan 1 20:18:19 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=be8ea9c0 [games-util/steam-launcher] added missing patch --- .../files/steam-fix-ld-library-path.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 new file mode 100644 index 0000000..c98ef77 --- /dev/null +++ b/games-util/steam-launcher/files/steam-fix-ld-library-path.patch @@ -0,0 +1,21 @@ +--- 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