# Copyright 1999-2022 Gentoo Authors and Martin V\"ath # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit flag-o-matic toolchain-funcs RESTRICT="mirror" TARGET="${PN}" DESCRIPTION="Multiple Arcade Machine Emulator for X11" HOMEPAGE="http://x.mame.net/" SRC_URI="http://gentoo.osuosl.org/distfiles/xmame-${PV}.tar.bz2" LICENSE="XMAME" SLOT="0" KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc sparc x86" IUSE="alsa bundled-libs cpu_flags_x86_mmx dga ggi joystick lirc net opengl sdl svga X xinerama xv" RDEPEND="sys-libs/zlib alsa? ( media-libs/alsa-lib ) dga? ( x11-libs/libXxf86dga x11-libs/libXxf86vm ) !bundled-libs? ( dev-libs/expat ) ggi? ( media-libs/libggi ) lirc? ( app-misc/lirc ) opengl? ( virtual/opengl virtual/glu ) sdl? ( >=media-libs/libsdl-1.2.0 ) svga? ( media-libs/svgalib ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) X? ( x11-libs/libXext )" DEPEND="${RDEPEND}" BDEPEND="x86? ( dev-lang/nasm ) x11-base/xorg-proto" # Icc sucks. bug #41342 # icc? ( dev-lang/icc ) S=${WORKDIR}/xmame-${PV} PATCHES=("${FILESDIR}"/${P}-overflow.patch) toggle_feature() { if use $1 ; then sed -i \ -e "/$2.*=/s:#::" Makefile \ || die "sed Makefile ($1 / $2) failed" fi } toggle_feature2() { use $1 && toggle_feature $2 $3 } src_prepare() { local mycpu case ${ARCH} in x86) mycpu="i386";; ia64) mycpu="ia64";; amd64) mycpu="amd64";; ppc) mycpu="risc";; sparc) mycpu="risc";; hppa) mycpu="risc";; alpha) mycpu="alpha";; mips) mycpu="mips";; esac sed -i \ -e "/^PREFIX/s:=.*:=/usr:" \ -e "/^MY_CPU/s:i386:${mycpu}:" \ -e "/^MANDIR/s:man/man:share/man/man:" \ -e "/^TARGET/s:mame:${TARGET:1}:" \ -e "/^INSTALL_GROUP/s:bin:root:" \ -e "/^CFLAGS =/d" \ -e 's/-s,//' \ -e 's/-Wl,-s//' \ -e "/\bCFLAGS +=/d" \ Makefile \ || die "sed Makefile failed" if use ppc ; then sed -i \ -e '/LD.*--relax/s:^# ::' Makefile \ || die "sed Makefile (ppc/LD) failed" fi if use cpu_flags_x86_mmx ; then cat >> src/unix/effect_asm.asm </dev/null fi done insinto "/usr/share/${PN}" doins -r ctrlr dodoc doc/{changes.*,*.txt,mame/*,${TARGET}rc.dist} README todo docinto html dodoc -r doc/img doc/mess doc/*.html doc/*.css # default to sdl since the client is a bit more featureful if use sdl ; then dosym "${TARGET}.SDL" "/usr/bin/${TARGET}" elif [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then dosym "${TARGET}.x11" "/usr/bin/${TARGET}" elif use svga ; then dosym ${TARGET}.svgalib "/usr/bin/${TARGET}" #elif use ggi ; then #dosym ${TARGET}.ggi "/usr/bin/${TARGET}" fi } pkg_postinst() { elog "Your available MAME binaries are: ${TARGET}" if use opengl || use X || use dga || use xv ; then elog " ${TARGET}.x11" fi use sdl && elog " ${TARGET}.SDL" #use ggi && elog " ${TARGET}.ggi" use svga && elog " ${TARGET}.svgalib" elog "Helper utilities are located in /usr/$(get_libdir)/${PN}." }