summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-08-18 18:47:12 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-08-18 18:47:12 +0000
commit04df4fdc228225e8ec1b3c44ffa544ff434f0ad2 (patch)
tree1cec9eeeb124e7ba87383a7a907eda51bd84c65c /games-emulation/mednafen
parentMirrored tarball and fixed SRC_URI, bug #235063. (diff)
downloadhistorical-04df4fdc228225e8ec1b3c44ffa544ff434f0ad2.tar.gz
historical-04df4fdc228225e8ec1b3c44ffa544ff434f0ad2.tar.bz2
historical-04df4fdc228225e8ec1b3c44ffa544ff434f0ad2.zip
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-emulation/mednafen')
-rw-r--r--games-emulation/mednafen/mednafen-0.6.1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/games-emulation/mednafen/mednafen-0.6.1.ebuild b/games-emulation/mednafen/mednafen-0.6.1.ebuild
deleted file mode 100644
index 16c9fad95d37..000000000000
--- a/games-emulation/mednafen/mednafen-0.6.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.6.1.ebuild,v 1.7 2007/11/14 16:49:56 mr_bones_ Exp $
-
-inherit games
-
-DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, and Lynx emulator"
-HOMEPAGE="http://mednafen.sourceforge.net/"
-SRC_URI="http://mednafen.com/releases/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="virtual/opengl
- sys-libs/zlib
- media-libs/libsndfile
- dev-libs/libcdio
- >=media-libs/libsdl-1.2.0
- media-libs/sdl-net"
-
-# The following likely still applies to Mednafen as it uses FCE Ultra code.
-# Because of code generation bugs, FCEUltra now depends on a version
-# of gcc greater than or equal to GCC 3.2.2.
-DEPEND="${RDEPEND}
- >=sys-devel/gcc-3.2.2"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e 's:\$(datadir)/locale:/usr/share/locale:' \
- po/Makefile.in.in \
- intl/Makefile.in \
- src/Makefile.in \
- || die "sed failed"
-}
-
-# v0.5.2 conf with --disable-nls fails to compile
-src_compile() {
- egamesconf \
- --disable-dependency-tracking || die
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS README NEWS TODO ChangeLog
- dohtml Documentation/*
- prepgamesdirs
-}