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.8.ebuild
Date: Tue, 22 Apr 2008 06:14:33
Message-Id: E1JoBlu-0003Al-7b@stork.gentoo.org
1 mr_bones_ 08/04/22 06:14:30
2
3 Modified: ChangeLog
4 Added: mednafen-0.8.8.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.12 games-emulation/mednafen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 7 Jan 2008 04:06:19 -0000 1.11
23 +++ ChangeLog 22 Apr 2008 06:14:29 -0000 1.12
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.11 2008/01/07 04:06:19 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.12 2008/04/22 06:14:29 mr_bones_ Exp $
29 +
30 +*mednafen-0.8.8 (22 Apr 2008)
31 +
32 + 22 Apr 2008; Michael Sterrett <mr_bones_@g.o>
33 + +mednafen-0.8.8.ebuild:
34 + version bump
35
36 *mednafen-0.8.7 (07 Jan 2008)
37
38
39
40
41 1.1 games-emulation/mednafen/mednafen-0.8.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mednafen-0.8.8.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.8.ebuild,v 1.1 2008/04/22 06:14:29 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 Makefile.in failed"
85 sed -i '/-fomit-frame/d' configure.ac \
86 || die "sed configure.ac failed"
87 eautoreconf
88 }
89
90 src_compile() {
91 egamesconf \
92 --disable-dependency-tracking \
93 $(use_enable alsa) \
94 $(use_enable cjk cjk-fonts) \
95 $(use_enable debug debugger) \
96 $(use_enable jack) \
97 $(use_enable nls) \
98 || die
99 emake || die "emake failed"
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "emake install failed"
104 dodoc Documentation/cheats.txt AUTHORS ChangeLog TODO
105 dohtml Documentation/*
106 prepgamesdirs
107 }
108
109
110
111 --
112 gentoo-commits@l.g.o mailing list