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/tuxdash: ChangeLog tuxdash-0.8.ebuild
Date: Thu, 30 Sep 2010 04:30:02
Message-Id: 20100930042954.4B3EE20051@flycatcher.gentoo.org
1 tupone 10/09/30 04:29:54
2
3 Modified: ChangeLog tuxdash-0.8.ebuild
4 Log:
5 Respect LDFLAGS. Bug #337772
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.8 games-arcade/tuxdash/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/ChangeLog?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/ChangeLog?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/ChangeLog?r1=1.7&r2=1.8
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/ChangeLog,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- ChangeLog 25 Mar 2008 13:23:26 -0000 1.7
22 +++ ChangeLog 30 Sep 2010 04:29:54 -0000 1.8
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-arcade/tuxdash
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/ChangeLog,v 1.7 2008/03/25 13:23:26 coldwind Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/ChangeLog,v 1.8 2010/09/30 04:29:54 tupone Exp $
29 +
30 + 30 Sep 2010; Tupone Alfredo <tupone@g.o> tuxdash-0.8.ebuild,
31 + +files/tuxdash-0.8-ldflags.patch:
32 + Respect LDFLAGS. Bug #337772 by flameeyes@g.o
33
34 25 Mar 2008; Santiago M. Mola <coldwind@g.o> tuxdash-0.8.ebuild:
35 amd64 stable
36
37
38
39 1.7 games-arcade/tuxdash/tuxdash-0.8.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild?r1=1.6&r2=1.7
44
45 Index: tuxdash-0.8.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- tuxdash-0.8.ebuild 25 Mar 2008 13:23:26 -0000 1.6
52 +++ tuxdash-0.8.ebuild 30 Sep 2010 04:29:54 -0000 1.7
53 @@ -1,8 +1,9 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild,v 1.6 2008/03/25 13:23:26 coldwind Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxdash/tuxdash-0.8.ebuild,v 1.7 2010/09/30 04:29:54 tupone Exp $
59 +EAPI="2"
60
61 -inherit games
62 +inherit eutils games
63
64 DESCRIPTION="A simple BoulderDash clone"
65 HOMEPAGE="http://www.tuxdash.de/index.php?language=EN"
66 @@ -16,9 +17,7 @@
67 DEPEND="media-libs/libsdl
68 media-libs/sdl-ttf"
69
70 -src_unpack() {
71 - unpack ${A}
72 - cd "${S}"
73 +src_prepare() {
74 rm -f GPL TuxDash
75 sed -i \
76 -e '/^Fullscreen/ s/0/1/' \
77 @@ -33,6 +32,7 @@
78 -e 's/-Wall/$(E_CXXFLAGS)/' \
79 -e 's/TuxDash/tuxdash/g' \
80 src/Makefile || die "sed failed"
81 + epatch "${FILESDIR}"/${P}-ldflags.patch
82 find . -type f -print0 | xargs -0 chmod a-x
83 }