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-cpma: ChangeLog quake3-cpma-1.46.ebuild
Date: Wed, 07 Oct 2009 01:34:57
Message-Id: E1MvLQd-0006BQ-FG@stork.gentoo.org
1 nyhm 09/10/07 01:34:55
2
3 Modified: ChangeLog quake3-cpma-1.46.ebuild
4 Log:
5 EAPI=2; move maps to MOD_DIR
6 (Portage version: 2.2_rc44/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.19 games-fps/quake3-cpma/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/ChangeLog?rev=1.19&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/ChangeLog?rev=1.19&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/ChangeLog?r1=1.18&r2=1.19
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/ChangeLog,v
18 retrieving revision 1.18
19 retrieving revision 1.19
20 diff -u -r1.18 -r1.19
21 --- ChangeLog 24 Jul 2009 21:19:53 -0000 1.18
22 +++ ChangeLog 7 Oct 2009 01:34:54 -0000 1.19
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-fps/quake3-cpma
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/ChangeLog,v 1.18 2009/07/24 21:19:53 mr_bones_ Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/ChangeLog,v 1.19 2009/10/07 01:34:54 nyhm Exp $
28 +
29 + 07 Oct 2009; Tristan Heaven <nyhm@g.o> quake3-cpma-1.46.ebuild:
30 + EAPI=2; move maps to MOD_DIR
31
32 *quake3-cpma-1.46 (24 Jul 2009)
33
34
35
36
37 1.3 games-fps/quake3-cpma/quake3-cpma-1.46.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild?r1=1.2&r2=1.3
42
43 Index: quake3-cpma-1.46.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- quake3-cpma-1.46.ebuild 1 Oct 2009 21:28:31 -0000 1.2
50 +++ quake3-cpma-1.46.ebuild 7 Oct 2009 01:34:54 -0000 1.3
51 @@ -1,6 +1,8 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild,v 1.2 2009/10/01 21:28:31 nyhm Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-cpma/quake3-cpma-1.46.ebuild,v 1.3 2009/10/07 01:34:54 nyhm Exp $
56 +
57 +EAPI=2
58
59 MOD_DESC="advanced FPS competition mod"
60 MOD_NAME="Challenge Pro Mode Arena"
61 @@ -14,17 +16,14 @@
62 http://www.promode.org/files/cpma-mappack-full.zip"
63
64 LICENSE="as-is"
65 -KEYWORDS="-* ~amd64 ~ppc ~x86"
66 +KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE="dedicated opengl"
68
69 -src_install() {
70 - insinto "${GAMES_DATADIR}/${GAME}/baseq3"
71 - doins "${WORKDIR}"/*.pk3 || die "pk3"
72 -
73 - games-mods_src_install
74 +src_prepare() {
75 + mv -f *.pk3 ${MOD_DIR} || die
76 }
77
78 pkg_postinst() {
79 games-mods_pkg_postinst
80 - elog " To enable bots add: +bot_enable 1"
81 + elog "To enable bots: +bot_enable 1"
82 }