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/fceux: ChangeLog fceux-2.1.4a.ebuild
Date: Mon, 26 Jul 2010 21:28:39
Message-Id: 20100726212836.791342CE15@corvid.gentoo.org
1 mr_bones_ 10/07/26 21:28:36
2
3 Modified: ChangeLog
4 Added: fceux-2.1.4a.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 games-emulation/fceux/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 25 Jun 2010 18:50:57 -0000 1.4
23 +++ ChangeLog 26 Jul 2010 21:28:36 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/fceux
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v 1.4 2010/06/25 18:50:57 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v 1.5 2010/07/26 21:28:36 mr_bones_ Exp $
29 +
30 +*fceux-2.1.4a (26 Jul 2010)
31 +
32 + 26 Jul 2010; Michael Sterrett <mr_bones_@g.o> +fceux-2.1.4a.ebuild:
33 + version bump
34
35 *fceux-2.1.4 (25 Jun 2010)
36
37
38
39
40 1.1 games-emulation/fceux/fceux-2.1.4a.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/fceux-2.1.4a.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/fceux-2.1.4a.ebuild?rev=1.1&content-type=text/plain
44
45 Index: fceux-2.1.4a.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/fceux-2.1.4a.ebuild,v 1.1 2010/07/26 21:28:36 mr_bones_ Exp $
50
51 EAPI=2
52 inherit games
53
54 DESCRIPTION="A portable Famicom/NES emulator, an evolution of the original FCE Ultra"
55 HOMEPAGE="http://fceux.com/"
56 SRC_URI="mirror://sourceforge/fceultra/${P}.src.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="+lua +opengl"
62
63 RDEPEND="lua? ( dev-lang/lua )
64 media-libs/libsdl[opengl?,video]
65 opengl? ( virtual/opengl )
66 x11-libs/gtk+:2
67 sys-libs/zlib"
68 DEPEND="${RDEPEND}
69 dev-util/scons"
70 RDEPEND="${RDEPEND}
71 gnome-extra/zenity"
72 # Note: zenity is "almost" optional. It is possible to compile and run fceux
73 # without zenity, but file dialogs will not work.
74
75 S=${WORKDIR}/fceu${PV}
76
77 src_compile() {
78 local sconsopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[[:space:]]*[0-9]\+\).*/\1/; p }")
79 scons \
80 ${sconsopts} \
81 CREATE_AVI=1 \
82 OPENGL=$(use opengl && echo 1 || echo 0) \
83 LUA=$(use lua && echo 1 || echo 0) \
84 || die "scons failed"
85 }
86
87 src_install() {
88 dogamesbin bin/fceux || die
89
90 doman documentation/fceux.6 || die
91 dodoc Authors.txt changelog.txt TODO-PROJECT
92
93 # Extra documentation
94 insinto "/usr/share/doc/${PF}/"
95 doins -r bin/fceux.chm documentation
96 rm -f "${D}/usr/share/doc/${PF}/documentation/fceux.6"
97
98 prepgamesdirs
99 }