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/openmsx: ChangeLog openmsx-0.7.0.ebuild
Date: Tue, 21 Apr 2009 00:11:53
Message-Id: E1Lw3aY-0003Up-9Y@stork.gentoo.org
1 mr_bones_ 09/04/21 00:11:50
2
3 Modified: ChangeLog
4 Added: openmsx-0.7.0.ebuild
5 Log:
6 version bump (bug #258662)
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.27 games-emulation/openmsx/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/openmsx/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/openmsx/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/openmsx/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 20 May 2008 16:26:08 -0000 1.26
23 +++ ChangeLog 21 Apr 2009 00:11:50 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/openmsx
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.26 2008/05/20 16:26:08 fmccor Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.27 2009/04/21 00:11:50 mr_bones_ Exp $
30 +
31 +*openmsx-0.7.0 (21 Apr 2009)
32 +
33 + 21 Apr 2009; Michael Sterrett <mr_bones_@g.o>
34 + +openmsx-0.7.0.ebuild:
35 + version bump (bug #258662)
36
37 20 May 2008; Ferris McCormick <fmccor@g.o> openmsx-0.6.3.ebuild:
38 Sparc stable, Bug #222133.
39
40
41
42 1.1 games-emulation/openmsx/openmsx-0.7.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/openmsx/openmsx-0.7.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/openmsx/openmsx-0.7.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: openmsx-0.7.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.7.0.ebuild,v 1.1 2009/04/21 00:11:50 mr_bones_ Exp $
52
53 EAPI=2
54 inherit toolchain-funcs games
55
56 DESCRIPTION="MSX emulator that aims for perfection"
57 HOMEPAGE="http://openmsx.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 IUSE="jack"
64
65 DEPEND="dev-lang/tcl
66 dev-libs/libxml2
67 media-libs/libpng
68 media-libs/libsdl
69 media-libs/glew
70 media-libs/sdl-image
71 virtual/opengl
72 jack? ( media-sound/jack-audio-connection-kit )"
73
74 src_prepare() {
75 sed -i '/LINK_FLAGS+=/s/-s//' build/main.mk || die "sed failed"
76 sed -i \
77 -e "/DISABLED/s:$:$(use jack || echo JACK):" \
78 -e '/SYMLINK/s:true:false:' \
79 build/custom.mk \
80 || die "sed custom.mk failed"
81 find share/extensions -type f -exec chmod -x '{}' +
82 }
83
84 src_compile() {
85 emake \
86 CXX="$(tc-getCXX)" \
87 CXXFLAGS="${CXXFLAGS}" \
88 INSTALL_SHARE_DIR="${GAMES_DATADIR}"/${PN} \
89 || die "emake failed"
90 }
91
92 src_install() {
93 emake \
94 INSTALL_BINARY_DIR="${D}${GAMES_BINDIR}" \
95 INSTALL_SHARE_DIR="${D}${GAMES_DATADIR}"/${PN} \
96 INSTALL_DOC_DIR="${D}"/usr/share/doc/${PF} \
97 install || die "emake install failed"
98 dodoc AUTHORS ChangeLog README
99 prepgamesdirs
100 }