Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (opfer)" <opfer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/gaia/files: gaia-0.1.2-scons-0.98.patch
Date: Thu, 29 May 2008 12:06:25
Message-Id: E1K1gtf-0003Fh-Q5@stork.gentoo.org
1 opfer 08/05/29 12:06:19
2
3 Added: gaia-0.1.2-scons-0.98.patch
4 Log:
5 fix compatability with scons >=0.98.3 as reported by coldwind in bug 223997
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 x11-misc/gaia/files/gaia-0.1.2-scons-0.98.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gaia/files/gaia-0.1.2-scons-0.98.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gaia/files/gaia-0.1.2-scons-0.98.patch?rev=1.1&content-type=text/plain
13
14 Index: gaia-0.1.2-scons-0.98.patch
15 ===================================================================
16 diff -ru ../gaia-0.1.2.orig/lib/wwfetch/SConscript ./lib/wwfetch/SConscript
17 --- ../gaia-0.1.2.orig/lib/wwfetch/SConscript 2008-05-29 13:59:49.000000000 +0200
18 +++ ./lib/wwfetch/SConscript 2008-05-29 14:01:07.000000000 +0200
19 @@ -5,7 +5,7 @@
20 #######################################
21 # ENVIRONMENT
22 #######################################
23 -env = env.Copy();
24 +env = env.Clone();
25
26 #######################################
27 # CHECKS
28 diff -ru ../gaia-0.1.2.orig/programs/gaia/SConscript ./programs/gaia/SConscript
29 --- ../gaia-0.1.2.orig/programs/gaia/SConscript 2008-05-29 13:59:49.000000000 +0200
30 +++ ./programs/gaia/SConscript 2008-05-29 14:01:00.000000000 +0200
31 @@ -5,7 +5,7 @@
32 #######################################
33 # ENVIRONMENT
34 #######################################
35 -env = env.Copy();
36 +env = env.Clone();
37
38 env.Append(LIBS = [ 'z', 'm', 'jpeg', 'GL', 'GLU' ]);
39 env.Prepend(CPPPATH = [ '../../lib/wwfetch' ]);
40 diff -ru ../gaia-0.1.2.orig/SConstruct ./SConstruct
41 --- ../gaia-0.1.2.orig/SConstruct 2008-05-29 13:59:49.000000000 +0200
42 +++ ./SConstruct 2008-05-29 14:00:47.000000000 +0200
43 @@ -8,7 +8,7 @@
44 #######################################
45 # OPTIONS
46 #######################################
47 -opts = Options(ARGUMENTS)
48 +opts = Options(args = ARGUMENTS)
49 # conditionally build parts of gaia
50 #opts.Add(BoolOption('gaia', 'Compile gaia OpenGL client', 1));
51
52
53
54
55 --
56 gentoo-commits@l.g.o mailing list