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/mednafen: ChangeLog mednafen-0.8.10.ebuild
Date: Fri, 30 Jan 2009 03:07:03
Message-Id: E1LSiyH-0007oA-Ua@stork.gentoo.org
1 mr_bones_ 09/01/30 02:19:05
2
3 Modified: ChangeLog
4 Added: mednafen-0.8.10.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
8
9 Revision Changes Path
10 1.15 games-emulation/mednafen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 24 Jul 2008 17:37:04 -0000 1.14
23 +++ ChangeLog 30 Jan 2009 02:19:05 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/mednafen
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.14 2008/07/24 17:37:04 armin76 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.15 2009/01/30 02:19:05 mr_bones_ Exp $
30 +
31 +*mednafen-0.8.10 (30 Jan 2009)
32 +
33 + 30 Jan 2009; Michael Sterrett <mr_bones_@g.o>
34 + +mednafen-0.8.10.ebuild:
35 + version bump
36
37 24 Jul 2008; Raúl Porcel <armin76@g.o> mednafen-0.8.9.ebuild:
38 x86 stable wrt #231880
39
40
41
42 1.1 games-emulation/mednafen/mednafen-0.8.10.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mednafen-0.8.10.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.8.10.ebuild,v 1.1 2009/01/30 02:19:05 mr_bones_ Exp $
52
53 EAPI=2
54 inherit autotools games
55
56 DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator"
57 HOMEPAGE="http://mednafen.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/mednafen-${PV/10/A}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="alsa cjk debug jack nls"
64
65 RDEPEND="virtual/opengl
66 media-libs/libsndfile
67 dev-libs/libcdio
68 media-libs/libsdl
69 media-libs/sdl-net
70 alsa? ( media-libs/alsa-lib )
71 jack? ( media-sound/jack-audio-connection-kit )
72 nls? ( virtual/libintl )"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig
75 nls? ( sys-devel/gettext )"
76
77 S=${WORKDIR}/${PN}
78
79 src_prepare() {
80 sed -i \
81 -e 's:$(datadir)/locale:/usr/share/locale:' \
82 -e 's:$(localedir):/usr/share/locale:' \
83 $(find . -name 'Makefile.*') \
84 || die 'sed failed'
85 sed -i \
86 -e '/-fomit-frame/d' configure.ac \
87 || die "sed failed"
88 eautoreconf
89 }
90
91 src_configure() {
92 egamesconf \
93 --disable-dependency-tracking \
94 $(use_enable alsa) \
95 $(use_enable cjk cjk-fonts) \
96 $(use_enable debug debugger) \
97 $(use_enable jack) \
98 $(use_enable nls)
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "emake install failed"
103 dodoc Documentation/cheats.txt AUTHORS ChangeLog TODO
104 dohtml Documentation/*
105 prepgamesdirs
106 }