# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header:$ inherit games eutils DESCRIPTION="Frontend for AdvanceMAME, MAME, MESS, RAINE and any other emulator." SRC_URI="mirror://sourceforge/advancemame/${P}.tar.gz" HOMEPAGE="http://advancemame.sourceforge.net" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc" IUSE="sdl svga alsa slang" RDEPEND="virtual/glibc app-arch/unzip sys-libs/zlib x86? ( >=dev-lang/nasm-0.98 ) media-libs/libsdl slang? ( sys-libs/slang ) alsa? ( media-libs/alsa-lib ) svga? ( >=media-libs/svgalib-1.9 )" DEPEND="${RDEPEND} virtual/os-headers" src_unpack() { unpack ${A} cd ${S} } src_compile() { export PATH="${PATH}:${T}" ln -s `which nasm` ${T}/${CHOST}-nasm >& /dev/null egamesconf \ --host="" \ `use_enable debug` \ `use_enable static` \ `use_enable x86 asm` \ `use_enable svga svgalib` \ `use_enable fbconf fb` \ `use_enable alsa` \ `use_enable oss` \ `use_enable slang` \ `use_enable sdl` \ --with-system=sdl \ --enable-pthread \ --with-emu=${advance} \ || die emake || die } src_install () { dogamesbin advmenu dodir ${GAMES_DATADIR}/advance insinto ${GAMES_DATADIR}/advance dodoc HISTORY README RELEASE obj/doc/*.txt dohtml obj/doc/*.html }