summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-02-12 18:35:00 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-02-12 18:35:00 +0000
commit7e74bcfbcc16cccff04370bbb20c4b725c6edcde (patch)
tree1b78479bdba0f55fa40eb3d9864ef4f1e99c696c /games-emulation
parentold (diff)
downloadgentoo-2-7e74bcfbcc16cccff04370bbb20c4b725c6edcde.tar.gz
gentoo-2-7e74bcfbcc16cccff04370bbb20c4b725c6edcde.tar.bz2
gentoo-2-7e74bcfbcc16cccff04370bbb20c4b725c6edcde.zip
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/mednafen/mednafen-0.8.5.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/games-emulation/mednafen/mednafen-0.8.5.ebuild b/games-emulation/mednafen/mednafen-0.8.5.ebuild
deleted file mode 100644
index ba618a14589a..000000000000
--- a/games-emulation/mednafen/mednafen-0.8.5.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.8.5.ebuild,v 1.1 2007/11/28 18:51:17 mr_bones_ Exp $
-
-inherit autotools games
-
-DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator"
-HOMEPAGE="http://mednafen.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="alsa cjk debug jack nls"
-
-RDEPEND="virtual/opengl
- media-libs/libsndfile
- dev-libs/libcdio
- media-libs/libsdl
- media-libs/sdl-net
- alsa? ( media-libs/alsa-lib )
- jack? ( media-sound/jack-audio-connection-kit )
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- nls? ( sys-devel/gettext )"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e 's:$(datadir)/locale:/usr/share/locale:' \
- -e 's:$(localedir):/usr/share/locale:' \
- $(find . -name 'Makefile.*') \
- || die "sed Makefile.in failed"
- sed -i '/-fomit-frame/d' configure.ac \
- || die "sed configure.ac failed"
- eautoreconf
-}
-
-src_compile() {
- egamesconf \
- --disable-dependency-tracking \
- $(use_enable alsa) \
- $(use_enable cjk cjk-fonts) \
- $(use_enable debug debugger) \
- $(use_enable jack) \
- $(use_enable nls) \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc Documentation/cheats.txt AUTHORS ChangeLog TODO
- dohtml Documentation/*
- prepgamesdirs
-}