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/dgen-sdl: ChangeLog dgen-sdl-1.30.ebuild
Date: Wed, 02 May 2012 17:21:32
Message-Id: 20120502172122.7A45B2004B@flycatcher.gentoo.org
1 mr_bones_ 12/05/02 17:21:22
2
3 Modified: ChangeLog
4 Added: dgen-sdl-1.30.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 games-emulation/dgen-sdl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dgen-sdl/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dgen-sdl/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dgen-sdl/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 26 Apr 2010 15:06:56 -0000 1.13
24 +++ ChangeLog 2 May 2012 17:21:22 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-emulation/dgen-sdl
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/ChangeLog,v 1.13 2010/04/26 15:06:56 mr_bones_ Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/ChangeLog,v 1.14 2012/05/02 17:21:22 mr_bones_ Exp $
31 +
32 +*dgen-sdl-1.30 (02 May 2012)
33 +
34 + 02 May 2012; Michael Sterrett <mr_bones_@g.o> +dgen-sdl-1.30.ebuild:
35 + version bump
36
37 26 Apr 2010; Michael Sterrett <mr_bones_@g.o> dgen-sdl-1.23.ebuild:
38 add a blocker for media-gfx/fondu which also has a tobin (bug #289715)
39
40
41
42 1.1 games-emulation/dgen-sdl/dgen-sdl-1.30.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dgen-sdl/dgen-sdl-1.30.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dgen-sdl/dgen-sdl-1.30.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dgen-sdl-1.30.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/dgen-sdl-1.30.ebuild,v 1.1 2012/05/02 17:21:22 mr_bones_ Exp $
52
53 EAPI=2
54 inherit games
55
56 DESCRIPTION="A Linux/SDL-Port of the famous DGen MegaDrive/Genesis-Emulator"
57 HOMEPAGE="http://tamentis.com/projects/dgen/"
58 SRC_URI="mirror://sourceforge/dgen/files/${P}.tar.gz"
59
60 LICENSE="dgen-sdl as-is LGPL-2.1 GPL-2 BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="joystick opengl"
64
65 RDEPEND="media-libs/libsdl[joystick?]
66 app-arch/libarchive
67 opengl? ( virtual/opengl )"
68 DEPEND="${RDEPEND}
69 x86? ( dev-lang/nasm )"
70
71 src_configure() {
72 egamesconf \
73 --disable-dependency-tracking \
74 $(use_enable x86 asm) \
75 $(use_enable joystick) \
76 $(use_enable opengl)
77 }
78
79 src_compile() {
80 emake -C musa m68kops.h || die
81 emake || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86 dodoc AUTHORS ChangeLog README sample.dgenrc
87 prepgamesdirs
88 }