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-engines/nazghul: ChangeLog nazghul-0.7.1.ebuild
Date: Thu, 22 Mar 2012 01:50:46
Message-Id: 20120322015037.CF0882004B@flycatcher.gentoo.org
1 mr_bones_ 12/03/22 01:50:37
2
3 Modified: ChangeLog
4 Added: nazghul-0.7.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 games-engines/nazghul/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/nazghul/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/nazghul/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/nazghul/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-engines/nazghul/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 27 Jun 2010 18:56:23 -0000 1.4
24 +++ ChangeLog 22 Mar 2012 01:50:37 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-engines/nazghul
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-engines/nazghul/ChangeLog,v 1.4 2010/06/27 18:56:23 pacho Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-engines/nazghul/ChangeLog,v 1.5 2012/03/22 01:50:37 mr_bones_ Exp $
31 +
32 +*nazghul-0.7.1 (22 Mar 2012)
33 +
34 + 22 Mar 2012; Michael Sterrett <mr_bones_@g.o> +nazghul-0.7.1.ebuild:
35 + version bump
36
37 27 Jun 2010; Pacho Ramos <pacho@g.o> nazghul-0.7.0.ebuild:
38 amd64 stable, bug 316437
39
40
41
42 1.1 games-engines/nazghul/nazghul-0.7.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/nazghul/nazghul-0.7.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/nazghul/nazghul-0.7.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nazghul-0.7.1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-engines/nazghul/nazghul-0.7.1.ebuild,v 1.1 2012/03/22 01:50:37 mr_bones_ Exp $
52
53 EAPI=2
54 inherit eutils games
55
56 DESCRIPTION="A computer role-playing game (CRPG) engine with game called HaximA"
57 HOMEPAGE="http://myweb.cableone.net/gmcnutt/nazghul.html"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 DEPEND="media-libs/libpng
66 >=media-libs/libsdl-1.2.3[X,audio,video]
67 media-libs/sdl-image[png]
68 media-libs/sdl-mixer[midi,vorbis,wav]"
69
70 src_prepare() {
71 ecvs_clean
72 }
73
74 src_configure() {
75 egamesconf \
76 --includedir=/usr/include
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die
81
82 dodoc AUTHORS ChangeLog NEWS README \
83 doc/{GAME_RULES,GHULSCRIPT,MAP_HACKERS_GUIDE,USERS_GUIDE}
84
85 dohtml -a html,gif -r doc/*
86
87 docinto engine_extension_and_design
88 dodoc doc/engine_extension_and_design/*
89
90 docinto world_building
91 dodoc doc/world_building/*
92
93 doicon icons/haxima.png
94 make_desktop_entry haxima.sh HaximA haxima
95
96 prepgamesdirs
97 }