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-arcade/supertransball2: ChangeLog supertransball2-1.5.ebuild
Date: Wed, 21 Jan 2009 19:20:18
Message-Id: E1LPicZ-0003dF-RX@stork.gentoo.org
1 mr_bones_ 09/01/21 19:20:15
2
3 Modified: ChangeLog supertransball2-1.5.ebuild
4 Log:
5 epatch takes a list and use the c++ from toolchain
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
7
8 Revision Changes Path
9 1.3 games-arcade/supertransball2/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/ChangeLog?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/ChangeLog?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/ChangeLog?r1=1.2&r2=1.3
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/ChangeLog,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- ChangeLog 24 Apr 2007 15:14:45 -0000 1.2
22 +++ ChangeLog 21 Jan 2009 19:20:15 -0000 1.3
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-arcade/supertransball2
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/ChangeLog,v 1.2 2007/04/24 15:14:45 drizzt Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/ChangeLog,v 1.3 2009/01/21 19:20:15 mr_bones_ Exp $
29 +
30 + 21 Jan 2009; Michael Sterrett <mr_bones_@g.o>
31 + supertransball2-1.5.ebuild:
32 + epatch takes a list and use the c++ from toolchain
33
34 24 Apr 2007; Timothy Redaelli <drizzt@g.o>
35 supertransball2-1.5.ebuild:
36
37
38
39 1.3 games-arcade/supertransball2/supertransball2-1.5.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild?r1=1.2&r2=1.3
44
45 Index: supertransball2-1.5.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- supertransball2-1.5.ebuild 24 Apr 2007 15:14:45 -0000 1.2
52 +++ supertransball2-1.5.ebuild 21 Jan 2009 19:20:15 -0000 1.3
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild,v 1.2 2007/04/24 15:14:45 drizzt Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/supertransball2/supertransball2-1.5.ebuild,v 1.3 2009/01/21 19:20:15 mr_bones_ Exp $
59
60 inherit eutils versionator games
61
62 @@ -40,14 +40,12 @@
63
64 local deb_dir=${P}/debian/patches
65 rm -f "${deb_dir}"/00list
66 - local p
67 - for p in "${deb_dir}"/* ; do
68 - epatch "${p}"
69 - done
70 + epatch "${deb_dir}"/*
71
72 sed -i \
73 -e "s: -I/usr/local/include/SDL::" \
74 -e "s:-g3 -O3:\$(CXXFLAGS):" \
75 + -e "s:c++:\$(CXX):" \
76 "${S}"/Makefile || die "sed Makefile failed"
77 }