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-rpg/pcgen: ChangeLog pcgen-5.14.0.ebuild
Date: Sat, 02 Aug 2008 00:51:47
Message-Id: E1KP5LU-0004PO-Lr@stork.gentoo.org
1 mr_bones_ 08/08/02 00:51:44
2
3 Modified: ChangeLog
4 Added: pcgen-5.14.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.15 games-rpg/pcgen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/pcgen/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/pcgen/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/pcgen/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-rpg/pcgen/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 8 Aug 2007 00:23:50 -0000 1.14
23 +++ ChangeLog 2 Aug 2008 00:51:44 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-rpg/pcgen
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/pcgen/ChangeLog,v 1.14 2007/08/08 00:23:50 nyhm Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/pcgen/ChangeLog,v 1.15 2008/08/02 00:51:44 mr_bones_ Exp $
30 +
31 +*pcgen-5.14.0 (02 Aug 2008)
32 +
33 + 02 Aug 2008; Michael Sterrett <mr_bones_@g.o> +pcgen-5.14.0.ebuild:
34 + version bump
35
36 *pcgen-5.12.1 (08 Aug 2007)
37
38
39
40
41 1.1 games-rpg/pcgen/pcgen-5.14.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/pcgen/pcgen-5.14.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/pcgen/pcgen-5.14.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pcgen-5.14.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-rpg/pcgen/pcgen-5.14.0.ebuild,v 1.1 2008/08/02 00:51:44 mr_bones_ Exp $
51
52 inherit versionator games
53
54 MY_PV=$(delete_all_version_separators)
55 DESCRIPTION="D&D character generator"
56 HOMEPAGE="http://pcgen.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/pcgen/pcgen${MY_PV}_full.zip"
58
59 LICENSE="LGPL-2 OGL-1.0a"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 RDEPEND=">=virtual/jre-1.5"
65 DEPEND="app-arch/unzip"
66
67 S=${WORKDIR}/pcgen${MY_PV}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 rm -f *.bat
73 sed -i "/dirname/ c\cd \"${GAMES_DATADIR}\/${PN}\"" pcgen.sh \
74 || die "sed pcgen.sh failed"
75 mv -f pcgen.sh "${T}"/${PN}
76 }
77
78 src_install() {
79 dogamesbin "${T}"/${PN} || die "dogamesbin failed"
80 insinto "${GAMES_DATADIR}"/${PN}
81 doins -r * || die "doins failed"
82 keepdir "${GAMES_DATADIR}"/${PN}/characters
83 prepgamesdirs
84 }