diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2011-10-31 17:17:36 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2011-10-31 17:17:36 +0200 |
commit | f84ea1ec0de99987ff31c079d3f202f899dd7748 (patch) | |
tree | 1913de31fb50bbc5fdf95be3f1e2f4eb52b75811 /games-emulation | |
parent | e81fccaed5783c5bcce462b72cdac61282796d57 (diff) |
new file: mednafen-0.9.17.ebuild
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mednafen/mednafen-0.9.17.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/games-emulation/mednafen/mednafen-0.9.17.ebuild b/games-emulation/mednafen/mednafen-0.9.17.ebuild new file mode 100644 index 0000000..ab542e1 --- /dev/null +++ b/games-emulation/mednafen/mednafen-0.9.17.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.8.13.ebuild,v 1.5 2010/09/25 14:19:44 maekke Exp $ + +EAPI=2 +inherit autotools eutils games + +DESCRIPTION="An advanced NES, GENESIS, GB/GBC/GBA, TurboGrafx 16/CD, NGPC and Lynx emulator" +HOMEPAGE="http://mednafen.sourceforge.net/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="alsa altivec cjk debug jack nls" + +RDEPEND="virtual/opengl + media-libs/libsndfile + dev-libs/libcdio + media-libs/libsdl[audio,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} + +src_unpack() { + unpack ${PN}-${PV}-wip.tar.bz2 +} + +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 '/CPPFLAGS=.*CFLAGS/s/CFLAGS/CXXFLAGS/' \ + -e '/^AX_CFLAGS_GCC_OPTION.*OPTIMIZER_FLAGS/d' \ + configure.ac \ + || die "sed failed" +# epatch "${FILESDIR}"/${P}-gcc45.patch + eautoreconf +} + +src_configure() { + egamesconf \ + --disable-dependency-tracking \ + --enable-threads=pth \ + --disable-alsatest \ + $(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 +} |