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: fceux-2.2.2.ebuild ChangeLog
Date: Wed, 31 Dec 2014 07:53:59
Message-Id: 20141231075354.433EBE8D8@oystercatcher.gentoo.org
1 mr_bones_ 14/12/31 07:53:54
2
3 Modified: ChangeLog
4 Added: fceux-2.2.2.ebuild
5 Log:
6 version bump (bug #466382); create menu entry (bug #499938)
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.18 games-emulation/fceux/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 30 Jan 2013 22:28:01 -0000 1.17
24 +++ ChangeLog 31 Dec 2014 07:53:54 -0000 1.18
25 @@ -1,6 +1,13 @@
26 # ChangeLog for games-emulation/fceux
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v 1.17 2013/01/30 22:28:01 mr_bones_ Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/ChangeLog,v 1.18 2014/12/31 07:53:54 mr_bones_ Exp $
31 +
32 +*fceux-2.2.2 (31 Dec 2014)
33 +
34 + 31 Dec 2014; Michael Sterrett <mr_bones_@g.o> +fceux-2.2.2.ebuild,
35 + +files/fceux-2.2.2-warnings.patch, files/fceux-2.1.5-gcc46.patch,
36 + files/fceux-2.1.5-gcc47.patch, files/fceux-2.1.5-underlink.patch:
37 + version bump (bug #466382); create menu entry (bug #499938)
38
39 30 Jan 2013; Michael Sterrett <mr_bones_@g.o> -fceux-2.1.4a.ebuild,
40 -files/fceux-2.1.4a-ovflfix.patch, -files/fceux-2.1.4a-underlink.patch:
41
42
43
44 1.1 games-emulation/fceux/fceux-2.2.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/fceux-2.2.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/fceux/fceux-2.2.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: fceux-2.2.2.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/games-emulation/fceux/fceux-2.2.2.ebuild,v 1.1 2014/12/31 07:53:54 mr_bones_ Exp $
54
55 EAPI=5
56 inherit eutils scons-utils games
57
58 DESCRIPTION="A portable Famicom/NES emulator, an evolution of the original FCE Ultra"
59 HOMEPAGE="http://fceux.com/"
60 SRC_URI="mirror://sourceforge/fceultra/${P}.src.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="gtk +lua +opengl"
66
67 DEPEND="lua? ( dev-lang/lua )
68 media-libs/libsdl[opengl?,video]
69 opengl? ( virtual/opengl )
70 gtk? ( x11-libs/gtk+:3 )
71 sys-libs/zlib[minizip]"
72 RDEPEND=${DEPEND}
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-warnings.patch
76 }
77
78 src_compile() {
79 escons \
80 GTK=0 \
81 CREATE_AVI=1 \
82 SYSTEM_LUA=1 \
83 SYSTEM_MINIZIP=1 \
84 $(use_scons gtk GTK3) \
85 $(use_scons opengl OPENGL) \
86 $(use_scons lua LUA)
87 }
88
89 src_install() {
90 dogamesbin bin/fceux
91
92 doman documentation/fceux.6
93 docompress -x /usr/share/doc/${PF}/documentation /usr/share/doc/${PF}/fceux.chm
94 dodoc -r Authors changelog.txt TODO-SDL bin/fceux.chm documentation
95 rm -f "${D}/usr/share/doc/${PF}/documentation/fceux.6"
96 make_desktop_entry fceux FCEUX
97 doicon fceux.png
98 prepgamesdirs
99 }