# 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*" RDEPEND="nls? ( sys-devel/gettext ) games-emulation/xmame" src_unpack() { unpack ${A} cd ${S} } src_compile() { local myconf use nls || myconf="--disable-nls " ! use joystick || myconf="${myconf} --enable-joystick" econf ${myconf} || die "econf failed" emake || die "emake failed" } src_install() { einstall || die "install failed" dodoc AUTHORS BUGS ChangeLog NEWS README TODO }