remove mednafen 0.9.21 ebuild because it is in main tree now

This commit is contained in:
Sergey Popov 2012-05-22 17:33:41 +04:00
parent 5602db911c
commit 47a7ee975d
2 changed files with 0 additions and 71 deletions

View File

@ -1,2 +0,0 @@
DIST mednafen-0.9.21.tar.bz2 3770486 RMD160 412954c5bc769cdfdc7e4dc9d15e272a5072903a SHA1 983c349ca991190363b713ac8abf7ae78b081a21 SHA256 2c1074337cedd61091b8695915d1bc7cf3f7ad5bbdda755e7b99e32834fc052d
EBUILD mednafen-0.9.21.ebuild 1638 RMD160 634a047fe891357df57d9377fee11238893c5061 SHA1 ced3c656319394679a5518ca5be7e27aa4a613c4 SHA256 a60b1eab27d00120c25167af93b1f7dfc1518c1431e635aa3c8814dc863e9ba9

View File

@ -1,69 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=2
inherit autotools eutils flag-o-matic games
DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator"
HOMEPAGE="http://mednafen.sourceforge.net/"
SRC_URI="http://forum.fobby.net/index.php?t=getfile&id=358 -> ${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa altivec cjk debug jack nls"
RDEPEND="virtual/opengl
media-libs/libsndfile
dev-libs/libcdio
media-libs/libsdl[audio,joystick,video]
media-libs/sdl-net
sys-libs/zlib
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}
pkg_setup() {
append-flags -fno-strict-overflow
append-flags -fomit-frame-pointer
games_pkg_setup
}
src_prepare() {
sed -i \
-e 's:$(datadir)/locale:/usr/share/locale:' \
-e 's:$(localedir):/usr/share/locale:' \
$(find . -name 'Makefile.*') \
|| die 'sed failed'
sed -i \
-e '/-fomit-frame-pointer/d' \
-e '/-ffast-math/d' \
-e '/^AX_CFLAGS_GCC_OPTION.*OPTIMIZER_FLAGS/d' \
configure.ac \
|| die "sed failed"
eautoreconf
}
src_configure() {
egamesconf \
--disable-dependency-tracking \
$(use_enable alsa) \
$(use_enable altivec) \
$(use_enable cjk cjk-fonts) \
$(use_enable debug debugger) \
$(use_enable jack) \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc Documentation/cheats.txt AUTHORS ChangeLog TODO
dohtml Documentation/*
prepgamesdirs
}