Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-engines/scummvm-tools: ChangeLog scummvm-tools-1.4.0.ebuild
Date: Mon, 06 Feb 2012 22:35:00
Message-Id: 20120206223447.E098C2004B@flycatcher.gentoo.org
1 mr_bones_ 12/02/06 22:34:47
2
3 Modified: ChangeLog scummvm-tools-1.4.0.ebuild
4 Log:
5 use instead of /tmp - bug #402459
6
7 (Portage version: 2.1.10.44/cvs/Linux i686)
8
9 Revision Changes Path
10 1.53 games-engines/scummvm-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.53&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.53&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?r1=1.52&r2=1.53
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v
19 retrieving revision 1.52
20 retrieving revision 1.53
21 diff -u -r1.52 -r1.53
22 --- ChangeLog 28 Jan 2012 15:22:33 -0000 1.52
23 +++ ChangeLog 6 Feb 2012 22:34:47 -0000 1.53
24 @@ -1,6 +1,10 @@
25 # ChangeLog for games-engines/scummvm-tools
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.52 2012/01/28 15:22:33 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.53 2012/02/06 22:34:47 mr_bones_ Exp $
29 +
30 + 06 Feb 2012; Michael Sterrett <mr_bones_@g.o>
31 + scummvm-tools-1.4.0.ebuild:
32 + use $T instead of /tmp - bug #402459
33
34 28 Jan 2012; Pawel Hajdan jr <phajdan.jr@g.o>
35 scummvm-tools-1.4.0.ebuild:
36
37
38
39 1.4 games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild?r1=1.3&r2=1.4
44
45 Index: scummvm-tools-1.4.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- scummvm-tools-1.4.0.ebuild 28 Jan 2012 15:22:33 -0000 1.3
52 +++ scummvm-tools-1.4.0.ebuild 6 Feb 2012 22:34:47 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.3 2012/01/28 15:22:33 phajdan.jr Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.4 2012/02/06 22:34:47 mr_bones_ Exp $
58
59 EAPI=2
60 WX_GTK_VER=2.8
61 @@ -30,10 +30,13 @@
62
63 src_prepare() {
64 rm -rf *.bat dists/win32
65 + # use $T instead of /tmp - bug #402459
66 + sed -i \
67 + -e 's:/tmp:"${T}":' \
68 + configure || die
69 sed -ri \
70 -e '/^(CC|CXX)\b/d' \
71 - Makefile \
72 - || die "sed failed"
73 + Makefile || die
74 }
75
76 src_configure() {