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-action/xblast: ChangeLog xblast-2.10.4.ebuild
Date: Fri, 02 Jan 2015 11:13:05
Message-Id: 20150102111301.6A825EB57@oystercatcher.gentoo.org
1 tupone 15/01/02 11:13:01
2
3 Modified: ChangeLog xblast-2.10.4.ebuild
4 Log:
5 EAPI 4
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
8
9 Revision Changes Path
10 1.17 games-action/xblast/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 15 Apr 2009 22:00:30 -0000 1.16
23 +++ ChangeLog 2 Jan 2015 11:13:01 -0000 1.17
24 @@ -1,6 +1,9 @@
25 # ChangeLog for games-action/xblast
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v 1.16 2009/04/15 22:00:30 nyhm Exp $
28 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v 1.17 2015/01/02 11:13:01 tupone Exp $
30 +
31 + 02 Jan 2015; Tupone Alfredo <tupone@g.o> xblast-2.10.4.ebuild:
32 + EAPI 4
33
34 15 Apr 2009; Tristan Heaven <nyhm@g.o> xblast-2.10.4.ebuild:
35 Run eautoreconf, bug #255857
36
37
38
39 1.6 games-action/xblast/xblast-2.10.4.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild?r1=1.5&r2=1.6
44
45 Index: xblast-2.10.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- xblast-2.10.4.ebuild 15 Apr 2009 22:00:30 -0000 1.5
52 +++ xblast-2.10.4.ebuild 2 Jan 2015 11:13:01 -0000 1.6
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2015 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild,v 1.5 2009/04/15 22:00:30 nyhm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild,v 1.6 2015/01/02 11:13:01 tupone Exp $
59
60 -EAPI=2
61 +EAPI=4
62 inherit autotools games
63
64 # Change these as releases changes
65 @@ -39,15 +39,13 @@
66 src_configure() {
67 egamesconf \
68 --with-otherdatadir="${GAMES_DATADIR}"/${PN} \
69 - --enable-sound \
70 - || die
71 + --enable-sound
72 }
73
74 src_install() {
75 local IMAGE_INSTALL_DIR="${GAMES_DATADIR}/${PN}/image"
76
77 - emake DESTDIR="${D}" install || die "emake install failed"
78 - dodoc AUTHORS ChangeLog NEWS README
79 + default
80
81 # Images
82 dodir "${IMAGE_INSTALL_DIR}"
83 @@ -56,16 +54,15 @@
84
85 # Levels
86 insinto "${GAMES_DATADIR}/xblast/level"
87 - doins "${WORKDIR}/${LEVELS}"/* || die "doins failed"
88 + doins "${WORKDIR}/${LEVELS}"/*
89
90 # Models
91 insinto "${GAMES_DATADIR}/xblast/image/sprite"
92 - doins "${WORKDIR}/${MODELS}"/* || die "doins failed"
93 + doins "${WORKDIR}/${MODELS}"/*
94
95 # Music and sound
96 insinto "${GAMES_DATADIR}/xblast/sounds"
97 - doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/* \
98 - || die "doins failed"
99 + doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/*
100
101 # Cleanup
102 find "${D}" -name Imakefile -exec rm \{\} \;