Gentoo Archives: gentoo-commits

From: "Devan Franchini (twitch153)" <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
Date: Sun, 01 Sep 2013 00:39:07
Message-Id: 20130901003904.333F42004B@flycatcher.gentoo.org
1 twitch153 13/09/01 00:39:04
2
3 Modified: dolphin-3.5.ebuild ChangeLog
4 Log:
5 Replaces has_version checking of gcc version for more suited use of the gcc-version command to check the current gcc version being used to compile the program
6
7 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key )
8
9 Revision Changes Path
10 1.7 games-emulation/dolphin/dolphin-3.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.6&r2=1.7
15
16 Index: dolphin-3.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- dolphin-3.5.ebuild 31 Aug 2013 23:24:19 -0000 1.6
23 +++ dolphin-3.5.ebuild 1 Sep 2013 00:39:04 -0000 1.7
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.6 2013/08/31 23:24:19 twitch153 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.7 2013/09/01 00:39:04 twitch153 Exp $
29
30 EAPI=5
31
32 @@ -60,11 +60,10 @@
33
34 src_prepare() {
35
36 - if has_version ">=sys-devel/gcc-4.8.0" || has_version"<=sys-devel/gcc-4.9.0"; then
37 + if [[ $(gcc-version) = "4.8" ]]; then
38 epatch "${FILESDIR}"/${PN}-emu-${PV}-gcc-4.8.patch
39 - fi
40 + fi
41
42 - # Remove automatic dependencies to prevent building without flags enabled.
43 if use !alsa; then
44 sed -i -e '/^include(FindALSA/d' CMakeLists.txt || die
45 fi
46
47
48
49 1.8 games-emulation/dolphin/ChangeLog
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&content-type=text/plain
53 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.7&r2=1.8
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
58 retrieving revision 1.7
59 retrieving revision 1.8
60 diff -u -r1.7 -r1.8
61 --- ChangeLog 31 Aug 2013 23:24:19 -0000 1.7
62 +++ ChangeLog 1 Sep 2013 00:39:04 -0000 1.8
63 @@ -1,6 +1,11 @@
64 # ChangeLog for games-emulation/dolphin
65 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.7 2013/08/31 23:24:19 twitch153 Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.8 2013/09/01 00:39:04 twitch153 Exp $
68 +
69 + 01 Sep 2013; Devan Franchini <twitch153@g.o> dolphin-3.5.ebuild:
70 + Replaces has_version checking of gcc version for more suited use of the gcc-
71 + version command to check the current gcc version being used to compile the
72 + program
73
74 31 Aug 2013; Devan Franchini <twitch153@g.o> dolphin-3.5.ebuild:
75 dolphin-3.5.ebuild: Added check to apply gcc-4.8.patch to all variants of gcc