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.5.ebuild
Date: Wed, 29 Jul 2009 04:05:19
Message-Id: E1MW0Pk-0003D2-At@stork.gentoo.org
1 mr_bones_ 09/07/29 04:05:16
2
3 Modified: ChangeLog
4 Added: raine-0.51.5.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.22 games-emulation/raine/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 8 May 2008 21:58:55 -0000 1.21
23 +++ ChangeLog 29 Jul 2009 04:05:16 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/raine
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.21 2008/05/08 21:58:55 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.22 2009/07/29 04:05:16 mr_bones_ Exp $
30 +
31 +*raine-0.51.5 (29 Jul 2009)
32 +
33 + 29 Jul 2009; Michael Sterrett <mr_bones_@g.o> +raine-0.51.5.ebuild:
34 + version bump
35
36 08 May 2008; Michael Sterrett <mr_bones_@g.o> raine-0.50.7.ebuild:
37 never try to run nasmw
38
39
40
41 1.1 games-emulation/raine/raine-0.51.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/raine-0.51.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/raine/raine-0.51.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: raine-0.51.5.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-emulation/raine/raine-0.51.5.ebuild,v 1.1 2009/07/29 04:05:16 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 }