summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-01-24 18:01:44 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-01-24 18:01:44 +0000
commit6928f7ad45aa91429d3c27889fa58661d16ccfda (patch)
tree0219c01ce8c89fe51b7cfc0527dc1c2669c25811 /games-emulation
parentClean up old, unsupported versions (diff)
downloadgentoo-2-6928f7ad45aa91429d3c27889fa58661d16ccfda.tar.gz
gentoo-2-6928f7ad45aa91429d3c27889fa58661d16ccfda.tar.bz2
gentoo-2-6928f7ad45aa91429d3c27889fa58661d16ccfda.zip
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/openmsx/ChangeLog8
-rw-r--r--games-emulation/openmsx/files/openmsx-0.8.1-libpng15.patch13
-rw-r--r--games-emulation/openmsx/openmsx-0.8.1.ebuild69
3 files changed, 6 insertions, 84 deletions
diff --git a/games-emulation/openmsx/ChangeLog b/games-emulation/openmsx/ChangeLog
index eac44a7cb044..57f0f8afb84f 100644
--- a/games-emulation/openmsx/ChangeLog
+++ b/games-emulation/openmsx/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/openmsx
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.47 2012/12/04 15:41:36 ago Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.48 2013/01/24 18:01:44 mr_bones_ Exp $
+
+ 24 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/openmsx-0.8.1-libpng15.patch, -openmsx-0.8.1.ebuild:
+ old
04 Dec 2012; <ago@gentoo.org> openmsx-0.9.1.ebuild:
Stable for x86, wrt bug #443894
diff --git a/games-emulation/openmsx/files/openmsx-0.8.1-libpng15.patch b/games-emulation/openmsx/files/openmsx-0.8.1-libpng15.patch
deleted file mode 100644
index 46f13a0fbc84..000000000000
--- a/games-emulation/openmsx/files/openmsx-0.8.1-libpng15.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-http://openmsx.svn.sourceforge.net/viewvc/openmsx/openmsx/trunk/src/video/PNG.cc?r1=11609&r2=12214
-
---- src/video/PNG.cc
-+++ src/video/PNG.cc
-@@ -167,7 +167,7 @@
- "Attempted to create a surface with excessive height: "
- << height << ", max " << MAX_SIZE);
- }
-- int bpp = png.info->channels * 8;
-+ int bpp = png_get_channels(png.ptr, png.info) * 8;
- assert(bpp == 24 || bpp == 32);
- Uint32 redMask, grnMask, bluMask, alpMask;
- if (OPENMSX_BIGENDIAN) {
diff --git a/games-emulation/openmsx/openmsx-0.8.1.ebuild b/games-emulation/openmsx/openmsx-0.8.1.ebuild
deleted file mode 100644
index 8747cdb1bc53..000000000000
--- a/games-emulation/openmsx/openmsx-0.8.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.8.1.ebuild,v 1.5 2011/10/15 11:23:39 xarthisius Exp $
-
-EAPI=2
-inherit eutils games
-
-DESCRIPTION="MSX emulator that aims for perfection"
-HOMEPAGE="http://openmsx.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86"
-IUSE=""
-
-DEPEND="dev-lang/tcl
- dev-libs/libxml2
- media-libs/libpng
- media-libs/libsdl[audio,video]
- media-libs/glew
- media-libs/sdl-image[png]
- media-libs/sdl-ttf
- virtual/opengl"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-libpng15.patch
-
- sed -i \
- -e '/^LDFLAGS:=/d' \
- -e '/LINK_FLAGS_PREFIX/d' \
- -e '/LINK_FLAGS+=/s/-s//' \
- -e '/LINK_FLAGS+=\$(TARGET_FLAGS)/s/$/ $(LDFLAGS)/' \
- build/main.mk \
- || die
- sed -i \
- -e '/SYMLINK/s:true:false:' \
- build/custom.mk \
- || die
- sed -i -e 's/GPL.txt//' doc/node.mk || die
- find share/extensions -type f -exec chmod -x '{}' +
-}
-
-src_compile() {
- emake \
- CXXFLAGS="${CXXFLAGS}" \
- INSTALL_SHARE_DIR="${GAMES_DATADIR}"/${PN} \
- || die
-}
-
-src_install() {
- emake \
- INSTALL_BINARY_DIR="${D}${GAMES_BINDIR}" \
- INSTALL_SHARE_DIR="${D}${GAMES_DATADIR}"/${PN} \
- INSTALL_DOC_DIR="${D}"/usr/share/doc/${PF} \
- install || die "emake install failed"
- dodoc README
- prepalldocs
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
-
- elog "If you want to if you want to emulate real MSX systems and not"
- elog "only the free C-BIOS machines, put the system ROMs in one of"
- elog "the following directories: ${GAMES_DATADIR}/${PN}/systemroms"
- elog "or ~/.openMSX/share/systemroms"
-}