diff options
author | Hanno Böck <hanno@gentoo.org> | 2002-10-13 19:41:59 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2002-10-13 19:41:59 +0000 |
commit | 199ac0746b3a7cc24ba6476e6486e478a1bb6a5e (patch) | |
tree | 064f7f3c3aad0dce61981c7fe01e63207240b0b5 /app-emulation/gngb | |
parent | Added =dev-java/japhar-0.10 (diff) | |
download | gentoo-2-199ac0746b3a7cc24ba6476e6486e478a1bb6a5e.tar.gz gentoo-2-199ac0746b3a7cc24ba6476e6486e478a1bb6a5e.tar.bz2 gentoo-2-199ac0746b3a7cc24ba6476e6486e478a1bb6a5e.zip |
version updated as ~x86
Diffstat (limited to 'app-emulation/gngb')
-rw-r--r-- | app-emulation/gngb/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/gngb/files/digest-gngb-20020819 | 1 | ||||
-rw-r--r-- | app-emulation/gngb/gngb-20020819.ebuild | 29 |
3 files changed, 37 insertions, 1 deletions
diff --git a/app-emulation/gngb/ChangeLog b/app-emulation/gngb/ChangeLog index 96e75ad3cb40..8c9ebc964458 100644 --- a/app-emulation/gngb/ChangeLog +++ b/app-emulation/gngb/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/gngb # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-emulation/gngb/ChangeLog,v 1.4 2002/09/03 15:00:59 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gngb/ChangeLog,v 1.5 2002/10/13 19:41:59 hanno Exp $ + +*gngb-20020819 (13 Oct 2002) + + 13 Oct 2002; Hanno Boeck <hanno@gentoo.org> gngb-20020819.ebuild : + + Version updated. *gngb-20020111 (27 Jul 2002) diff --git a/app-emulation/gngb/files/digest-gngb-20020819 b/app-emulation/gngb/files/digest-gngb-20020819 new file mode 100644 index 000000000000..21d07e31e1d2 --- /dev/null +++ b/app-emulation/gngb/files/digest-gngb-20020819 @@ -0,0 +1 @@ +MD5 8d5635ab7f7af84705f052db2b6751db gngb-20020819.tar.gz 130855 diff --git a/app-emulation/gngb/gngb-20020819.ebuild b/app-emulation/gngb/gngb-20020819.ebuild new file mode 100644 index 000000000000..b69c148f98c0 --- /dev/null +++ b/app-emulation/gngb/gngb-20020819.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gngb/gngb-20020819.ebuild,v 1.1 2002/10/13 19:41:59 hanno Exp $ + +IUSE="opengl" + +DESCRIPTION="gngb - Gameboy / Gameboy Color emulator" +HOMEPAGE="http://membres.lycos.fr/frogus/gngb/" +LICENSE="GPL-2" +KEYWORDS="~x86 -ppc" +SLOT="0" +RDEPEND="media-libs/libsdl + opengl? ( virtual/opengl )" +DEPEND="${RDEPEND}" +SRC_URI="http://membres.lycos.fr/frogus/gngb/download/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_compile() { + use opengl || myconf=" --with-gl " + + econf ${myconf} || die + + emake || die +} + +src_install () { + dodoc NEWS README TODO INSTALL AUTHORS + make DESTDIR=${D} install || die +} |