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-sports/toycars: ChangeLog toycars-0.3.10.ebuild
Date: Wed, 01 Jul 2009 02:14:32
Message-Id: E1MLpL9-0005C7-Uu@stork.gentoo.org
1 mr_bones_ 09/07/01 02:14:27
2
3 Modified: ChangeLog
4 Added: toycars-0.3.10.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.13 games-sports/toycars/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-sports/toycars/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-sports/toycars/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-sports/toycars/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-sports/toycars/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 3 Jun 2009 20:05:49 -0000 1.12
23 +++ ChangeLog 1 Jul 2009 02:14:27 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-sports/toycars
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-sports/toycars/ChangeLog,v 1.12 2009/06/03 20:05:49 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-sports/toycars/ChangeLog,v 1.13 2009/07/01 02:14:27 mr_bones_ Exp $
29 +
30 +*toycars-0.3.10 (01 Jul 2009)
31 +
32 + 01 Jul 2009; Michael Sterrett <mr_bones_@g.o>
33 + +toycars-0.3.10.ebuild:
34 + version bump
35
36 *toycars-0.3.9 (03 Jun 2009)
37
38
39
40
41 1.1 games-sports/toycars/toycars-0.3.10.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-sports/toycars/toycars-0.3.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-sports/toycars/toycars-0.3.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: toycars-0.3.10.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-sports/toycars/toycars-0.3.10.ebuild,v 1.1 2009/07/01 02:14:27 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils flag-o-matic games
54
55 DESCRIPTION="a physics based 2-D racer inspired by Micro Machines"
56 HOMEPAGE="http://sourceforge.net/projects/toycars"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND="media-libs/libsdl[video]
65 media-libs/sdl-image[png]
66 >=x11-libs/fltk-1.1.9:1.1
67 >=media-libs/fmod-4.25.07-r1:1
68 virtual/glu
69 virtual/opengl"
70 DEPEND="${RDEPEND}"
71
72 src_configure() {
73 append-ldflags -L/opt/fmodex/api/lib
74 egamesconf
75 }
76
77 src_install() {
78 local d,f
79
80 emake DESTDIR="${D}" install || die "emake install failed"
81 newicon toycars/celica-render.png ${PN}.png
82 make_desktop_entry ${PN} "Toy Cars"
83 dodoc AUTHORS
84
85 for d in toycars toycars_track_editor toycars_vehicle_editor
86 do
87 for f in ChangeLog README TODO
88 do
89 if [[ -s $d/$f ]] ; then
90 newdoc $d/$f $d.$f
91 fi
92 done
93 done
94 prepgamesdirs
95 }