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-emulation/raine: ChangeLog raine-0.51.8.ebuild
Date: Wed, 31 Mar 2010 21:17:50
Message-Id: E1Nx5II-0002DJ-Ey@stork.gentoo.org
1 mr_bones_ 10/03/31 21:17:46
2
3 Modified: ChangeLog
4 Added: raine-0.51.8.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.7.17/cvs/Linux i686)
8
9 Revision Changes Path
10 1.24 games-emulation/raine/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 21 Oct 2009 12:15:09 -0000 1.23
23 +++ ChangeLog 31 Mar 2010 21:17:46 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/raine
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.23 2009/10/21 12:15:09 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.24 2010/03/31 21:17:46 mr_bones_ Exp $
30 +
31 +*raine-0.51.8 (31 Mar 2010)
32 +
33 + 31 Mar 2010; Michael Sterrett <mr_bones_@g.o> +raine-0.51.8.ebuild:
34 + version bump
35
36 21 Oct 2009; Markus Meier <maekke@g.o> raine-0.51.5.ebuild:
37 x86 stable, bug #285415
38
39
40
41 1.1 games-emulation/raine/raine-0.51.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/raine-0.51.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/raine-0.51.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: raine-0.51.8.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/raine-0.51.8.ebuild,v 1.1 2010/03/31 21:17:46 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 DESCRIPTION="R A I N E M680x0 Arcade Emulation"
56 HOMEPAGE="http://rainemu.swishparty.co.uk/"
57 SRC_URI="http://rainemu.swishparty.co.uk/html/archive/raines-${PV}.tar.bz2"
58
59 LICENSE="Artistic"
60 SLOT="0"
61 KEYWORDS="~x86"
62 IUSE="static"
63
64 RDEPEND="dev-cpp/muParser
65 media-libs/libsdl
66 sys-libs/zlib
67 media-libs/sdl-image[png]
68 media-libs/sdl-ttf"
69 DEPEND="${RDEPEND}
70 dev-lang/nasm
71 app-arch/unzip"
72
73 src_prepare() {
74 echo > detect-cpu
75 echo > cpuinfo
76 sed -i \
77 -e "/^NEO/s:^:#:" \
78 -e "s:nasmw:nasm:" \
79 -e "/bindir/s:=.*:=\$(DESTDIR)${GAMES_BINDIR}:" \
80 -e "/sharedir =/s:=.*:=\$(DESTDIR)${GAMES_DATADIR}:" \
81 -e "/mandir/s:=.*:=\$(DESTDIR)/usr/share/man/man6:" \
82 makefile \
83 || die "sed failed"
84 }
85
86 src_compile() {
87 local myopts
88
89 use static \
90 && myopts="${myopts} STATIC=1" \
91 || myopts="${myopts} STATIC="
92 emake \
93 _MARCH="${CFLAGS}" \
94 ${myopts} || die "emake failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "emake install failed"
99 keepdir "${GAMES_DATADIR}"/${PN}/{roms,artwork,emudx,scripts/raine}
100 dodoc docs/readme.txt
101 prepgamesdirs
102 }