Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/visualboyadvance: ChangeLog visualboyadvance-1.7.2-r2.ebuild
Date: Tue, 02 Nov 2010 14:49:02
Message-Id: 20101102144859.2E0DD20051@flycatcher.gentoo.org
1 tupone 10/11/02 14:48:59
2
3 Modified: ChangeLog visualboyadvance-1.7.2-r2.ebuild
4 Log:
5 Fix overflow. Bug #339122
6
7 (Portage version: 2.1.9.24/cvs/Linux i686)
8
9 Revision Changes Path
10 1.36 games-emulation/visualboyadvance/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 13 Jun 2009 15:50:14 -0000 1.35
23 +++ ChangeLog 2 Nov 2010 14:48:59 -0000 1.36
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/visualboyadvance
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.35 2009/06/13 15:50:14 nyhm Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/ChangeLog,v 1.36 2010/11/02 14:48:59 tupone Exp $
30 +
31 + 02 Nov 2010; Tupone Alfredo <tupone@g.o>
32 + visualboyadvance-1.7.2-r2.ebuild,
33 + +files/visualboyadvance-1.7.2-ovflfix.patch:
34 + Fix overflow. Bug #339122 by flameeyes@g.o
35
36 13 Jun 2009; Tristan Heaven <nyhm@g.o>
37 visualboyadvance-1.7.2-r2.ebuild,
38
39
40
41 1.4 games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild?r1=1.3&r2=1.4
46
47 Index: visualboyadvance-1.7.2-r2.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild,v
50 retrieving revision 1.3
51 retrieving revision 1.4
52 diff -u -r1.3 -r1.4
53 --- visualboyadvance-1.7.2-r2.ebuild 13 Jun 2009 15:50:14 -0000 1.3
54 +++ visualboyadvance-1.7.2-r2.ebuild 2 Nov 2010 14:48:59 -0000 1.4
55 @@ -1,6 +1,7 @@
56 -# Copyright 1999-2009 Gentoo Foundation
57 +# Copyright 1999-2010 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild,v 1.3 2009/06/13 15:50:14 nyhm Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r2.ebuild,v 1.4 2010/11/02 14:48:59 tupone Exp $
61 +EAPI=2
62
63 inherit eutils flag-o-matic games
64
65 @@ -29,10 +30,7 @@
66
67 S=${WORKDIR}/VisualBoyAdvance-${PV}
68
69 -src_unpack() {
70 - unpack ${A}
71 - cd "${S}"
72 -
73 +src_prepare() {
74 sed -i \
75 -e 's:$(localedir):/usr/share/locale:' \
76 -e 's:$(datadir)/locale:/usr/share/locale:' \
77 @@ -51,10 +49,11 @@
78 "${FILESDIR}"/${PV}-gcc41.patch \
79 "${WORKDIR}"/${P}-deprecatedsigc++.patch \
80 "${FILESDIR}"/${P}-uninit.patch \
81 - "${FILESDIR}"/${P}-glibc2.10.patch
82 + "${FILESDIR}"/${P}-glibc2.10.patch \
83 + "${FILESDIR}"/${P}-ovflfix.patch
84 }
85
86 -src_compile() {
87 +src_configure() {
88 # -O3 causes GCC to behave badly and hog memory, bug #64670.
89 replace-flags -O3 -O2
90
91 @@ -65,7 +64,6 @@
92 $(use_enable gtk gtk 2.4) \
93 $(use_enable nls) \
94 || die
95 - emake || die "emake failed"
96 }
97
98 src_install() {