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/quake3-ruinhunters: ChangeLog quake3-ruinhunters-1.0a-r1.ebuild
Date: Wed, 07 Oct 2009 00:56:32
Message-Id: E1MvKpS-0004m8-Uv@stork.gentoo.org
1 nyhm 09/10/07 00:56:30
2
3 Modified: ChangeLog quake3-ruinhunters-1.0a-r1.ebuild
4 Log:
5 EAPI=2; fix unpack order
6 (Portage version: 2.2_rc44/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 games-fps/quake3-ruinhunters/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog?r1=1.6&r2=1.7
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- ChangeLog 24 Oct 2006 21:34:10 -0000 1.6
22 +++ ChangeLog 7 Oct 2009 00:56:30 -0000 1.7
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-fps/quake3-ruinhunters
25 -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog,v 1.6 2006/10/24 21:34:10 wolf31o2 Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-ruinhunters/ChangeLog,v 1.7 2009/10/07 00:56:30 nyhm Exp $
29 +
30 + 07 Oct 2009; Tristan Heaven <nyhm@g.o>
31 + quake3-ruinhunters-1.0a-r1.ebuild:
32 + EAPI=2; fix unpack order
33
34 *quake3-ruinhunters-1.0a-r1 (24 Oct 2006)
35
36
37
38
39 1.3 games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild?r1=1.2&r2=1.3
44
45 Index: quake3-ruinhunters-1.0a-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- quake3-ruinhunters-1.0a-r1.ebuild 1 Oct 2009 21:47:16 -0000 1.2
52 +++ quake3-ruinhunters-1.0a-r1.ebuild 7 Oct 2009 00:56:30 -0000 1.3
53 @@ -1,6 +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-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild,v 1.2 2009/10/01 21:47:16 nyhm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-ruinhunters/quake3-ruinhunters-1.0a-r1.ebuild,v 1.3 2009/10/07 00:56:30 nyhm Exp $
59 +
60 +EAPI=2
61
62 MOD_DESC="a anime/fantasy mod with cartoonish characters and arcade-like gameplay"
63 MOD_NAME="Ruin Hunters"
64 @@ -8,12 +10,20 @@
65
66 inherit games games-mods
67
68 +HOMEPAGE="http://planetquake.gamespy.com/View.php?view=Quake3.Detail&id=1824"
69 SRC_URI="mirror://gentoo/ruin_hunters_v10.zip
70 mirror://gentoo/ruin_hunters_v10a_patch.zip
71 http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles/ruin_hunters_v10a_patch.zip
72 http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles/ruin_hunters_v10.zip"
73 -HOMEPAGE="http://planetquake.gamespy.com/View.php?view=Quake3.Detail&id=1824"
74
75 LICENSE="freedist"
76 -KEYWORDS="-* ~amd64 ~ppc ~x86"
77 +KEYWORDS="~amd64 ~ppc ~x86"
78 IUSE="dedicated opengl"
79 +
80 +src_unpack() {
81 + unpack ruin_hunters_{v10,v10a_patch}.zip
82 +}
83 +
84 +src_prepare() {
85 + rm -f *.bat
86 +}