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.7.ebuild
Date: Mon, 07 Jan 2008 04:06:23
Message-Id: E1JBjFj-000512-RJ@stork.gentoo.org
1 mr_bones_ 08/01/07 04:06:19
2
3 Modified: ChangeLog
4 Added: mednafen-0.8.7.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.11 games-emulation/mednafen/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 28 Nov 2007 18:51:17 -0000 1.10
23 +++ ChangeLog 7 Jan 2008 04:06:19 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/mednafen
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.10 2007/11/28 18:51:17 mr_bones_ Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/ChangeLog,v 1.11 2008/01/07 04:06:19 mr_bones_ Exp $
30 +
31 +*mednafen-0.8.7 (07 Jan 2008)
32 +
33 + 07 Jan 2008; Michael Sterrett <mr_bones_@g.o>
34 + +mednafen-0.8.7.ebuild:
35 + version bump
36
37 *mednafen-0.8.5 (28 Nov 2007)
38
39
40
41
42 1.1 games-emulation/mednafen/mednafen-0.8.7.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/mednafen/mednafen-0.8.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mednafen-0.8.7.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.7.ebuild,v 1.1 2008/01/07 04:06:19 mr_bones_ Exp $
52
53 inherit autotools games
54
55 DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator"
56 HOMEPAGE="http://mednafen.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="alsa cjk debug jack nls"
63
64 RDEPEND="virtual/opengl
65 media-libs/libsndfile
66 dev-libs/libcdio
67 media-libs/libsdl
68 media-libs/sdl-net
69 alsa? ( media-libs/alsa-lib )
70 jack? ( media-sound/jack-audio-connection-kit )
71 nls? ( virtual/libintl )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 nls? ( sys-devel/gettext )"
75
76 S=${WORKDIR}/${PN}
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81 sed -i \
82 -e 's:$(datadir)/locale:/usr/share/locale:' \
83 -e 's:$(localedir):/usr/share/locale:' \
84 $(find . -name 'Makefile.*') \
85 || die "sed Makefile.in failed"
86 sed -i '/-fomit-frame/d' configure.ac \
87 || die "sed configure.ac 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