# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/games-emulation/gxmame/gxmame-0.33-r1.ebuild,v 1.1 2003/09/21 04:56:47 vapier Exp $ inherit games flag-o-matic gcc eutils DESCRIPTION="Frontend for XMame using the GTK library" HOMEPAGE="http://gxmame.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc" IUSE="nls joystick" DEPEND="virtual/x11 >=x11-libs/gtk+-2.0* =dev-libs/glib-1.2* media-libs/gdk-pixbuf" RDEPEND="nls? ( sys-devel/gettext ) games-emulation/xmame" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/game_opts.patch } src_compile() { if [ `use joystick` ] && [ `use nls` ] ; then econf \ `use_enable joystick` \ || die "econf failed" elif [ ! `use nls` ] && [ ! `use joystick` ] ; then econf \ --disable-nls \ || die "econf failed" elif [ ! `use nls` ] && [ `use joystick` ] ; then econf \ `use_enable joystick` \ --disable-nls \ || die "econf failed" else econf || die "econf failed" fi emake || die "emake failed" } src_install() { sed -i \ -e "s:^prefix.*:prefix=${D}/usr:" \ -e "s:^bindir.*:bindir=${D}/{GAMES_BINDIR}:" \ Makefile make install || die "install failed" dodoc AUTHORS BUGS ChangeLog NEWS README TODO }