diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-16 18:55:43 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-16 18:55:43 +0000 |
commit | 3a778f1f4d591fb7c7a7e99c2f2b199e72a90820 (patch) | |
tree | 6992fbe219cd7712d378872a360de3b061de5b06 /app-emulation | |
parent | fix bug #17640 (diff) | |
download | gentoo-2-3a778f1f4d591fb7c7a7e99c2f2b199e72a90820.tar.gz gentoo-2-3a778f1f4d591fb7c7a7e99c2f2b199e72a90820.tar.bz2 gentoo-2-3a778f1f4d591fb7c7a7e99c2f2b199e72a90820.zip |
added src_install
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/gxmame/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/gxmame/gxmame-0.31.ebuild | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/app-emulation/gxmame/ChangeLog b/app-emulation/gxmame/ChangeLog index ab2126709e56..49a6b07ac932 100644 --- a/app-emulation/gxmame/ChangeLog +++ b/app-emulation/gxmame/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for app-emulation/gxmame # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/gxmame/ChangeLog,v 1.2 2003/02/12 04:01:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gxmame/ChangeLog,v 1.3 2003/03/16 18:55:43 seemant Exp $ *gxmame-0.31 (13 Jan 2003) + 16 Mar 2003; Seemant Kulleen <seemant@gentoo.org> gxmame-0.31.ebuild: + added src_install function. closes bug #17477 by Kfir Ozer <ufk2k@yahoo.com> + 13 Jan 2003; Ryan Phillips <rphillips@gentoo.org> gxmame-0.31.ebuild: Official version diff --git a/app-emulation/gxmame/gxmame-0.31.ebuild b/app-emulation/gxmame/gxmame-0.31.ebuild index 61caa69a835a..6ac38d5c44f5 100644 --- a/app-emulation/gxmame/gxmame-0.31.ebuild +++ b/app-emulation/gxmame/gxmame-0.31.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2003 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.5 2003/03/10 07:42:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gxmame/gxmame-0.31.ebuild,v 1.6 2003/03/16 18:55:43 seemant Exp $ + +IUSE="nls" DESCRIPTION="frontend for XMame using the GTK library" HOMEPAGE="http://gxmame.sourceforge.net/" @@ -9,7 +11,6 @@ SRC_URI="mirror://sourceforge/gxmame/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc" -IUSE="nls" DEPEND="x11-base/xfree =x11-libs/gtk+-1.2* @@ -21,3 +22,7 @@ src_compile() { econf `use_enable nls` || die emake || die } + +src_install() { + einstall || die +} |