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.9.ebuild
Date: Fri, 20 Jun 2008 21:29:08
Message-Id: E1K9oAJ-00071K-6s@stork.gentoo.org
1 mr_bones_ 08/06/20 21:29:03
2
3 Modified: ChangeLog
4 Added: mednafen-0.8.9.ebuild
5 Log:
6 version bump (bug #228623)
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.13 games-emulation/mednafen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 22 Apr 2008 06:14:29 -0000 1.12
23 +++ ChangeLog 20 Jun 2008 21:29:02 -0000 1.13
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.12 2008/04/22 06:14:29 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.13 2008/06/20 21:29:02 mr_bones_ Exp $
29 +
30 +*mednafen-0.8.9 (20 Jun 2008)
31 +
32 + 20 Jun 2008; Michael Sterrett <mr_bones_@g.o>
33 + +mednafen-0.8.9.ebuild:
34 + version bump (bug #228623)
35
36 *mednafen-0.8.8 (22 Apr 2008)
37
38
39
40
41 1.1 games-emulation/mednafen/mednafen-0.8.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mednafen-0.8.9.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.8.9.ebuild,v 1.1 2008/06/20 21:29:02 mr_bones_ Exp $
51
52 inherit autotools games
53
54 DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator"
55 HOMEPAGE="http://mednafen.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="alsa cjk debug jack nls"
62
63 RDEPEND="virtual/opengl
64 media-libs/libsndfile
65 dev-libs/libcdio
66 media-libs/libsdl
67 media-libs/sdl-net
68 alsa? ( media-libs/alsa-lib )
69 jack? ( media-sound/jack-audio-connection-kit )
70 nls? ( virtual/libintl )"
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig
73 nls? ( sys-devel/gettext )"
74
75 S=${WORKDIR}/${PN}
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
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_compile() {
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 || die
100 emake || die "emake failed"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "emake install failed"
105 dodoc Documentation/cheats.txt AUTHORS ChangeLog TODO
106 dohtml Documentation/*
107 prepgamesdirs
108 }
109
110
111
112 --
113 gentoo-commits@l.g.o mailing list