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/daimonin-client: ChangeLog daimonin-client-0.9.7.1.ebuild
Date: Tue, 13 Jan 2009 04:51:42
Message-Id: E1LMbFb-0007jy-27@stork.gentoo.org
1 mr_bones_ 09/01/13 04:51:39
2
3 Modified: ChangeLog
4 Added: daimonin-client-0.9.7.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
8
9 Revision Changes Path
10 1.20 games-rpg/daimonin-client/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/daimonin-client/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/daimonin-client/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/daimonin-client/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-rpg/daimonin-client/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 13 Jan 2009 02:34:45 -0000 1.19
23 +++ ChangeLog 13 Jan 2009 04:51:38 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-rpg/daimonin-client
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/daimonin-client/ChangeLog,v 1.19 2009/01/13 02:34:45 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/daimonin-client/ChangeLog,v 1.20 2009/01/13 04:51:38 mr_bones_ Exp $
29 +
30 +*daimonin-client-0.9.7.1 (13 Jan 2009)
31 +
32 + 13 Jan 2009; Michael Sterrett <mr_bones_@g.o>
33 + +daimonin-client-0.9.7.1.ebuild:
34 + version bump
35
36 13 Jan 2009; Michael Sterrett <mr_bones_@g.o>
37 daimonin-client-0.9.7.ebuild:
38
39
40
41 1.1 games-rpg/daimonin-client/daimonin-client-0.9.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/daimonin-client/daimonin-client-0.9.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-rpg/daimonin-client/daimonin-client-0.9.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: daimonin-client-0.9.7.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-rpg/daimonin-client/daimonin-client-0.9.7.1.ebuild,v 1.1 2009/01/13 04:51:38 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 MY_P=${PN/-/_}-${PV}
56 DESCRIPTION="a graphical 2D tile-based MMORPG"
57 HOMEPAGE="http://daimonin.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/daimonin/${MY_P}.zip
59 mirror://sourceforge/daimonin/AllMusic.zip"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="-amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="media-libs/libsdl
67 media-libs/sdl-mixer[vorbis]
68 media-libs/sdl-image[png]
69 dev-games/physfs
70 net-misc/curl"
71 DEPEND="${RDEPEND}
72 app-arch/unzip"
73
74 S=${WORKDIR}/daimonin/client/make/linux
75
76 src_unpack() {
77 unpack ${MY_P}.zip
78 cd daimonin/client/media
79 rm -f *
80 unpack AllMusic.zip
81 }
82
83 src_prepare() {
84 sed -i \
85 -e 's:$(d_datadir):$(DESTDIR)$(d_datadir):' \
86 -e '/PROGRAMS/s:daimonin-updater::' \
87 -e '/\/tools/d' \
88 Makefile.in \
89 || die "sed failed"
90 chmod +x configure
91 }
92
93 src_configure() {
94 egamesconf --disable-simplelayout
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "emake install failed"
99 cd ../..
100 dodoc README*
101 newicon skins/subred/bitmaps/pentagram.png ${PN}.png || die "newicon failed"
102 make_desktop_entry daimonin Daimonin
103 prepgamesdirs
104 }