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/yabause: yabause-0.9.10.ebuild ChangeLog
Date: Tue, 02 Jun 2009 05:23:25
Message-Id: E1MBMT4-0003Vh-61@stork.gentoo.org
1 mr_bones_ 09/06/02 05:23:22
2
3 Modified: ChangeLog
4 Added: yabause-0.9.10.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.30 games-emulation/yabause/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/yabause/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/yabause/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/yabause/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 13 Jan 2009 03:43:24 -0000 1.29
23 +++ ChangeLog 2 Jun 2009 05:23:22 -0000 1.30
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/yabause
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.29 2009/01/13 03:43:24 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.30 2009/06/02 05:23:22 mr_bones_ Exp $
29 +
30 +*yabause-0.9.10 (02 Jun 2009)
31 +
32 + 02 Jun 2009; Michael Sterrett <mr_bones_@g.o>
33 + +yabause-0.9.10.ebuild:
34 + version bump
35
36 *yabause-0.9.9 (13 Jan 2009)
37
38
39
40
41 1.1 games-emulation/yabause/yabause-0.9.10.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/yabause/yabause-0.9.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/yabause/yabause-0.9.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: yabause-0.9.10.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/yabause-0.9.10.ebuild,v 1.1 2009/06/02 05:23:22 mr_bones_ Exp $
51
52 EAPI=2
53 inherit games
54
55 DESCRIPTION="A Sega Saturn emulator"
56 HOMEPAGE="http://yabause.org/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="openal sdl"
63
64 RDEPEND="x11-libs/gtk+:2
65 x11-libs/gtkglext
66 virtual/opengl
67 virtual/glu
68 virtual/glut
69 openal? ( media-libs/openal )
70 sdl? ( media-libs/libsdl[opengl?,video] )"
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig"
73
74 src_configure() {
75 egamesconf \
76 --disable-dependency-tracking \
77 --datadir=/usr/share \
78 --with-port=gtk \
79 $(use_with sdl) \
80 $(use_with openal)
81 }
82
83 src_compile() {
84 emake -C src/c68k gen68k || die "emake failed"
85 emake || die "emake failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc AUTHORS ChangeLog GOALS README README.LIN
91 prepgamesdirs
92 }