Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/blender/files: blender-2.57-linux-3.patch
Date: Sat, 29 Oct 2011 03:37:09
Message-Id: 20111029033658.789032004C@flycatcher.gentoo.org
1 sping 11/10/29 03:36:58
2
3 Added: blender-2.57-linux-3.patch
4 Log:
5 media-gfx/blender: Fix 2.57-r1 for Linux 3.x (bug #381099)
6
7 (Portage version: 2.1.10.31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/blender/files/blender-2.57-linux-3.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/files/blender-2.57-linux-3.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/blender/files/blender-2.57-linux-3.patch?rev=1.1&content-type=text/plain
14
15 Index: blender-2.57-linux-3.patch
16 ===================================================================
17 --- SConstruct 2011-10-29 05:18:43.149564401 +0200
18 +++ SConstruct 2011-10-29 05:19:37.332887017 +0200
19 @@ -165,6 +165,9 @@
20 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
21 platform = 'linuxcross'
22
23 +if platform == 'linux3':
24 + platform = 'linux2' # Workaround for Linux 3.x
25 +
26 env['OURPLATFORM'] = platform
27
28 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")