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-emulation/pcsx2: pcsx2-0.8.1.ebuild ChangeLog
Date: Mon, 13 Oct 2008 17:10:05
Message-Id: E1KpQvi-0002nP-MX@stork.gentoo.org
1 mr_bones_ 08/10/13 17:10:02
2
3 Modified: pcsx2-0.8.1.ebuild ChangeLog
4 Log:
5 fix amd64 building (bug #241504)
6 (Portage version: 2.1.4.5)
7
8 Revision Changes Path
9 1.11 games-emulation/pcsx2/pcsx2-0.8.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild?r1=1.10&r2=1.11
14
15 Index: pcsx2-0.8.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- pcsx2-0.8.1.ebuild 29 Feb 2008 19:04:47 -0000 1.10
22 +++ pcsx2-0.8.1.ebuild 13 Oct 2008 17:10:02 -0000 1.11
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild,v 1.10 2008/02/29 19:04:47 carlo Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/pcsx2-0.8.1.ebuild,v 1.11 2008/10/13 17:10:02 mr_bones_ Exp $
28
29 inherit eutils toolchain-funcs games
30
31 @@ -45,7 +45,12 @@
32 }
33
34 src_compile() {
35 - emake -C Linux OPTIMIZE="${CFLAGS}" || die "emake failed"
36 + local CPU=i386
37 +
38 + if use amd64; then
39 + CPU=x86_64
40 + fi
41 + emake -C Linux OPTIMIZE="${CFLAGS}" CPU="${CPU}" || die "emake failed"
42 }
43
44 src_install() {
45
46
47
48 1.15 games-emulation/pcsx2/ChangeLog
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/ChangeLog?rev=1.15&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/ChangeLog?rev=1.15&content-type=text/plain
52 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/pcsx2/ChangeLog?r1=1.14&r2=1.15
53
54 Index: ChangeLog
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/ChangeLog,v
57 retrieving revision 1.14
58 retrieving revision 1.15
59 diff -u -r1.14 -r1.15
60 --- ChangeLog 29 Feb 2008 19:04:47 -0000 1.14
61 +++ ChangeLog 13 Oct 2008 17:10:02 -0000 1.15
62 @@ -1,6 +1,9 @@
63 # ChangeLog for games-emulation/pcsx2
64 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
65 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/ChangeLog,v 1.14 2008/02/29 19:04:47 carlo Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx2/ChangeLog,v 1.15 2008/10/13 17:10:02 mr_bones_ Exp $
67 +
68 + 13 Oct 2008; Michael Sterrett <mr_bones_@g.o> pcsx2-0.8.1.ebuild:
69 + fix amd64 building (bug #241504)
70
71 29 Feb 2008; Carsten Lohrke <carlo@g.o> pcsx2-0.8.1.ebuild:
72 Remove icon extension from desktop entry to match Icon Theme Specification.