Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-fps/doom3-phantasm: ChangeLog doom3-phantasm-1.2.ebuild
Date: Wed, 07 Oct 2009 14:48:14
Message-Id: E1MvXoH-0007dZ-K2@stork.gentoo.org
1 nyhm 09/10/07 14:48:09
2
3 Modified: ChangeLog doom3-phantasm-1.2.ebuild
4 Log:
5 EAPI=2
6 (Portage version: 2.2_rc44/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 games-fps/doom3-phantasm/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/ChangeLog?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/ChangeLog?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/ChangeLog?r1=1.2&r2=1.3
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-fps/doom3-phantasm/ChangeLog,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- ChangeLog 15 Feb 2008 00:41:21 -0000 1.2
22 +++ ChangeLog 7 Oct 2009 14:48:09 -0000 1.3
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-fps/doom3-phantasm
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-phantasm/ChangeLog,v 1.2 2008/02/15 00:41:21 wolf31o2 Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-phantasm/ChangeLog,v 1.3 2009/10/07 14:48:09 nyhm Exp $
29 +
30 + 07 Oct 2009; Tristan Heaven <nyhm@g.o> doom3-phantasm-1.2.ebuild:
31 + EAPI=2
32
33 15 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
34 doom3-phantasm-1.2.ebuild:
35
36
37
38 1.4 games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild?r1=1.3&r2=1.4
43
44 Index: doom3-phantasm-1.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- doom3-phantasm-1.2.ebuild 1 Oct 2009 20:58:05 -0000 1.3
51 +++ doom3-phantasm-1.2.ebuild 7 Oct 2009 14:48:09 -0000 1.4
52 @@ -1,11 +1,12 @@
53 -# Copyright 1999-2008 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-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild,v 1.3 2009/10/01 20:58:05 nyhm Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-phantasm/doom3-phantasm-1.2.ebuild,v 1.4 2009/10/07 14:48:09 nyhm Exp $
58 +
59 +EAPI=2
60
61 MOD_DESC="single-player short mod based on the Phantasm horror movies"
62 MOD_NAME="Phantasm"
63 MOD_DIR="phantasm"
64 -MOD_BINS="phantasm"
65
66 inherit games games-mods
67
68 @@ -18,18 +19,13 @@
69 KEYWORDS="amd64 x86"
70 IUSE="dedicated opengl"
71
72 -S=${WORKDIR}
73 -
74 -src_unpack() {
75 - games-mods_src_unpack
76 - cd "${S}"
77 -
78 +src_prepare() {
79 # Remove useless "_d3" from directory name
80 - mv "${MOD_DIR}"* "${MOD_DIR}" || die
81 + mv -f ${MOD_DIR}_d3 ${MOD_DIR} || die
82
83 # Oh no, a filename containing a space! Gives Portage the heebee-jeebies:
84 # * checking 8 files for package collisions
85 # existing file /usr/share/games/doom3/phantasm/
86 # phantasm_d3_1.2 readme.txt is not owned by this package
87 - mv "${MOD_DIR}"/phantasm*.txt "${MOD_DIR}"/README.phantasm.txt || die
88 + mv -f ${MOD_DIR}/phantasm*.txt ${MOD_DIR}/README.phantasm.txt || die
89 }