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-arcade/conveysdl: ChangeLog conveysdl-1.3.ebuild
Date: Mon, 02 Feb 2009 09:02:37
Message-Id: E1LTuhP-00009B-7L@stork.gentoo.org
1 tupone 09/02/02 09:02:35
2
3 Modified: ChangeLog conveysdl-1.3.ebuild
4 Log:
5 Fix --as-needed bug #247300
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
7
8 Revision Changes Path
9 1.7 games-arcade/conveysdl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/ChangeLog?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/ChangeLog?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/ChangeLog?r1=1.6&r2=1.7
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/ChangeLog,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- ChangeLog 9 Apr 2007 21:55:52 -0000 1.6
22 +++ ChangeLog 2 Feb 2009 09:02:35 -0000 1.7
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-arcade/conveysdl
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/ChangeLog,v 1.6 2007/04/09 21:55:52 welp Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/ChangeLog,v 1.7 2009/02/02 09:02:35 tupone Exp $
29 +
30 + 02 Feb 2009; Alfredo Tupone <tupone@g.o> conveysdl-1.3.ebuild:
31 + Fix --as-needed bug #247300 by flameeyes@g.o
32
33 09 Apr 2007; Peter Weller <welp@g.o> conveysdl-1.3.ebuild:
34 Keyworded ~x86-fbsd wrt bug 173405
35
36
37
38 1.5 games-arcade/conveysdl/conveysdl-1.3.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild?r1=1.4&r2=1.5
43
44 Index: conveysdl-1.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- conveysdl-1.3.ebuild 9 Apr 2007 21:55:52 -0000 1.4
51 +++ conveysdl-1.3.ebuild 2 Feb 2009 09:02:35 -0000 1.5
52 @@ -1,7 +1,8 @@
53 -# Copyright 1999-2007 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild,v 1.4 2007/04/09 21:55:52 welp Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/conveysdl/conveysdl-1.3.ebuild,v 1.5 2009/02/02 09:02:35 tupone Exp $
58
59 +EAPI=2
60 inherit eutils toolchain-funcs games
61
62 DESCRIPTION="Guide the blob along the conveyer belt collecting the red blobs"
63 @@ -18,10 +19,7 @@
64
65 S=${WORKDIR}
66
67 -src_unpack() {
68 - unpack ${A}
69 - cd "${S}"
70 -
71 +src_prepare() {
72 # Incomplete readme
73 sed -i \
74 -e 's:I k:use -nosound to disable sound\n\nI k:' \
75 @@ -40,7 +38,7 @@
76 CFLAGS="${CFLAGS} $(sdl-config --cflags) \
77 -DDATA_PREFIX=\\\"${GAMES_DATADIR}/${PN}/\\\" \
78 -DENABLE_SOUND" \
79 - LDFLAGS="${LDFLAGS} -lSDL_mixer $(sdl-config --libs)" \
80 + LDLIBS="-lSDL_mixer $(sdl-config --libs)" \
81 || die "emake failed"
82 }