blob: ded5c26e719f878b7eb58b59c3e699c88717f3ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/gxmame/gxmame-0.31.ebuild,v 1.1 2003/01/13 23:20:14 rphillips Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GXMame is a frontend for XMame using the GTK library, the goal is to provide the same GUI as mame32."
HOMEPAGE="http://gxmame.sourceforge.net/"
SRC_URI="mirror://sourceforge/gxmame/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="x11-base/xfree
=x11-libs/gtk+-1.2*
=dev-libs/glib-1.2*"
src_compile() {
econf
emake || die
}
src_install() {
einstall
}
|