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 dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
Date: Tue, 04 Aug 2009 21:24:42
Message-Id: E1MYRUt-0004QX-CI@stork.gentoo.org
1 mr_bones_ 09/08/04 21:24:39
2
3 Modified: ChangeLog clanlib-0.8.1.ebuild
4 Log:
5 EAPI=2; add gcc44 patch submitted by Fredric Johansson via bug #275791
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.45 dev-games/clanlib/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.45&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.45&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.44&r2=1.45
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
18 retrieving revision 1.44
19 retrieving revision 1.45
20 diff -u -r1.44 -r1.45
21 --- ChangeLog 26 Aug 2008 20:53:25 -0000 1.44
22 +++ ChangeLog 4 Aug 2009 21:24:39 -0000 1.45
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-games/clanlib
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.44 2008/08/26 20:53:25 nyhm Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.45 2009/08/04 21:24:39 mr_bones_ Exp $
29 +
30 + 04 Aug 2009; Michael Sterrett <mr_bones_@g.o> clanlib-0.8.1.ebuild,
31 + +files/clanlib-0.8.1-gcc44.patch:
32 + EAPI=2; add gcc44 patch submitted by Fredric Johansson via bug #275791
33
34 26 Aug 2008; Tristan Heaven <nyhm@g.o> clanlib-0.8.1.ebuild:
35 Add missing media-libs/alsa-lib dependency, bug #227509
36
37
38
39 1.5 dev-games/clanlib/clanlib-0.8.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.4&r2=1.5
44
45 Index: clanlib-0.8.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- clanlib-0.8.1.ebuild 26 Aug 2008 20:53:25 -0000 1.4
52 +++ clanlib-0.8.1.ebuild 4 Aug 2009 21:24:39 -0000 1.5
53 @@ -1,7 +1,8 @@
54 -# Copyright 1999-2008 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/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.4 2008/08/26 20:53:25 nyhm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.5 2009/08/04 21:24:39 mr_bones_ Exp $
59
60 +EAPI=2
61 inherit flag-o-matic eutils
62
63 DESCRIPTION="multi-platform game development library"
64 @@ -34,15 +35,14 @@
65
66 S=${WORKDIR}/ClanLib-${PV}
67
68 -src_unpack() {
69 - unpack ${A}
70 - cd "${S}"
71 +src_prepare() {
72 epatch \
73 "${FILESDIR}"/${P}-ndebug.patch \
74 - "${FILESDIR}"/${P}-gcc43.patch
75 + "${FILESDIR}"/${P}-gcc43.patch \
76 + "${FILESDIR}"/${P}-gcc44.patch
77 }
78
79 -src_compile() {
80 +src_configure() {
81 #clanSound only controls mikmod/vorbis so there's
82 # no need to pass --{en,dis}able-clanSound ...
83 #clanDisplay only controls X, SDL, OpenGL plugins
84 @@ -58,9 +58,7 @@
85 $(use_enable sdl clanSDL) \
86 $(use_enable vorbis clanVorbis) \
87 $(use_enable mikmod clanMikMod) \
88 - $(use_enable ipv6 getaddr) \
89 - || die
90 - emake || die "emake failed"
91 + $(use_enable ipv6 getaddr)
92 }
93
94 src_install() {