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.8.0.ebuild
Date: Sun, 03 Oct 2010 04:13:55
Message-Id: 20101003041345.EB4CC20051@flycatcher.gentoo.org
1 mr_bones_ 10/10/03 04:13:45
2
3 Modified: ChangeLog
4 Added: openmsx-0.8.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.33 games-emulation/openmsx/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/openmsx/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/openmsx/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/openmsx/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 28 May 2010 18:11:05 -0000 1.32
23 +++ ChangeLog 3 Oct 2010 04:13:45 -0000 1.33
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/openmsx
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.32 2010/05/28 18:11:05 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.33 2010/10/03 04:13:45 mr_bones_ Exp $
29 +
30 +*openmsx-0.8.0 (03 Oct 2010)
31 +
32 + 03 Oct 2010; Michael Sterrett <mr_bones_@g.o>
33 + +openmsx-0.8.0.ebuild:
34 + version bump
35
36 28 May 2010; Joseph Jezak <josejx@g.o> openmsx-0.7.2.ebuild:
37 Marked ppc stable, ~ppc64 for bug #320503.
38
39
40
41 1.1 games-emulation/openmsx/openmsx-0.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/openmsx/openmsx-0.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/openmsx/openmsx-0.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: openmsx-0.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.8.0.ebuild,v 1.1 2010/10/03 04:13:45 mr_bones_ Exp $
51
52 EAPI=2
53 inherit games
54
55 DESCRIPTION="MSX emulator that aims for perfection"
56 HOMEPAGE="http://openmsx.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE=""
63
64 DEPEND="dev-lang/tcl
65 dev-libs/libxml2
66 media-libs/libpng
67 media-libs/libsdl[audio,video]
68 media-libs/glew
69 media-libs/sdl-image[png]
70 media-libs/sdl-ttf
71 virtual/opengl"
72
73 src_prepare() {
74 sed -i \
75 -e '/^LDFLAGS:=/d' \
76 -e '/LINK_FLAGS_PREFIX/d' \
77 -e '/LINK_FLAGS+=/s/-s//' \
78 -e '/LINK_FLAGS+=\$(TARGET_FLAGS)/s/$/ $(LDFLAGS)/' \
79 build/main.mk \
80 || die
81 sed -i \
82 -e '/SYMLINK/s:true:false:' \
83 build/custom.mk \
84 || die
85 find share/extensions -type f -exec chmod -x '{}' +
86 }
87
88 src_compile() {
89 emake \
90 CXXFLAGS="${CXXFLAGS}" \
91 INSTALL_SHARE_DIR="${GAMES_DATADIR}"/${PN} \
92 || die
93 }
94
95 src_install() {
96 emake \
97 INSTALL_BINARY_DIR="${D}${GAMES_BINDIR}" \
98 INSTALL_SHARE_DIR="${D}${GAMES_DATADIR}"/${PN} \
99 INSTALL_DOC_DIR="${D}"/usr/share/doc/${PF} \
100 install || die "emake install failed"
101 dodoc ChangeLog README
102 prepgamesdirs
103 }
104
105 pkg_postinst() {
106 games_pkg_postinst
107
108 elog "If you want to if you want to emulate real MSX systems and not"
109 elog "only the free C-BIOS machines, put the system ROMs in one of"
110 elog "the following directories: ${GAMES_DATADIR}/${PN}/systemroms"
111 elog "or ~/.openMSX/share/systemroms"
112 }