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-action/accelerator3d: ChangeLog accelerator3d-0.1.1.ebuild
Date: Tue, 30 Jun 2009 03:53:54
Message-Id: E1MLUPo-0001Zf-EK@stork.gentoo.org
1 mr_bones_ 09/06/30 03:53:52
2
3 Modified: ChangeLog accelerator3d-0.1.1.ebuild
4 Log:
5 EAPI=2
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.4 games-action/accelerator3d/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-action/accelerator3d/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 28 Jul 2006 20:46:44 -0000 1.3
22 +++ ChangeLog 30 Jun 2009 03:53:52 -0000 1.4
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-action/accelerator3d
25 -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-action/accelerator3d/ChangeLog,v 1.3 2006/07/28 20:46:44 the_paya Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/accelerator3d/ChangeLog,v 1.4 2009/06/30 03:53:52 mr_bones_ Exp $
29 +
30 + 30 Jun 2009; Michael Sterrett <mr_bones_@g.o>
31 + accelerator3d-0.1.1.ebuild:
32 + EAPI=2
33
34 28 Jul 2006; Javier Villavicencio <the_paya@g.o>
35 accelerator3d-0.1.1.ebuild:
36
37
38
39 1.4 games-action/accelerator3d/accelerator3d-0.1.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/accelerator3d-0.1.1.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/accelerator3d-0.1.1.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/accelerator3d/accelerator3d-0.1.1.ebuild?r1=1.3&r2=1.4
44
45 Index: accelerator3d-0.1.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-action/accelerator3d/accelerator3d-0.1.1.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- accelerator3d-0.1.1.ebuild 18 Oct 2006 01:40:23 -0000 1.3
52 +++ accelerator3d-0.1.1.ebuild 30 Jun 2009 03:53:52 -0000 1.4
53 @@ -1,7 +1,8 @@
54 -# Copyright 1999-2006 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/games-action/accelerator3d/accelerator3d-0.1.1.ebuild,v 1.3 2006/10/18 01:40:23 nyhm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-action/accelerator3d/accelerator3d-0.1.1.ebuild,v 1.4 2009/06/30 03:53:52 mr_bones_ Exp $
59
60 +EAPI=2
61 inherit eutils games
62
63 DESCRIPTION="Fast-paced, 3D, first-person shoot/dodge-'em-up, in the vain of Tempest or n2o"
64 @@ -20,9 +21,7 @@
65
66 S=${WORKDIR}/${PN}
67
68 -src_unpack() {
69 - unpack ${A}
70 - cd "${S}"
71 +src_prepare() {
72 epatch "${FILESDIR}"/${P}-gentoo-paths.patch
73 sed -i \
74 -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
75 @@ -30,10 +29,9 @@
76 }
77
78 src_install() {
79 - newgamesbin accelerator.py accelerator || die "gamesbin"
80 + newgamesbin accelerator.py accelerator || die "newgamesbin failed"
81 insinto "${GAMES_DATADIR}"/${PN}
82 - doins gfx/* || die "doins gfx"
83 - doins snd/* || die "doins snd"
84 + doins gfx/* snd/* || die "doins failed"
85 dodoc CHANGELOG README
86 prepgamesdirs
87 }