diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:52:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:52:39 +0000 |
commit | d6cf861871432ce21ab151b55bb8cdb8f98be3c7 (patch) | |
tree | 6430863c42044a28b185bbb5576cd6e30f387d50 /app-emulation/gngb | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | historical-d6cf861871432ce21ab151b55bb8cdb8f98be3c7.tar.gz historical-d6cf861871432ce21ab151b55bb8cdb8f98be3c7.tar.bz2 historical-d6cf861871432ce21ab151b55bb8cdb8f98be3c7.zip |
Changed econf||die to econf
Diffstat (limited to 'app-emulation/gngb')
-rw-r--r-- | app-emulation/gngb/gngb-20020111.ebuild | 16 | ||||
-rw-r--r-- | app-emulation/gngb/gngb-20020819.ebuild | 16 |
2 files changed, 14 insertions, 18 deletions
diff --git a/app-emulation/gngb/gngb-20020111.ebuild b/app-emulation/gngb/gngb-20020111.ebuild index 0a74c127191b..972be3c6e2c3 100644 --- a/app-emulation/gngb/gngb-20020111.ebuild +++ b/app-emulation/gngb/gngb-20020111.ebuild @@ -1,29 +1,27 @@ # 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-20020111.ebuild,v 1.8 2002/11/17 22:48:28 hanno Exp $ - -IUSE="opengl" +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gngb/gngb-20020111.ebuild,v 1.9 2002/11/30 02:51:53 vapier Exp $ DESCRIPTION="gngb - Gameboy / Gameboy Color emulator" HOMEPAGE="http://membres.lycos.fr/frogus/gngb/" +SRC_URI="http://membres.lycos.fr/frogus/gngb/download/${P}.tar.gz" + LICENSE="GPL-2" KEYWORDS="x86 -ppc" SLOT="0" +IUSE="opengl" + 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 - + econf ${myconf} emake || die } -src_install () { +src_install() { dodoc NEWS README TODO INSTALL AUTHORS make DESTDIR=${D} install || die } diff --git a/app-emulation/gngb/gngb-20020819.ebuild b/app-emulation/gngb/gngb-20020819.ebuild index cef949a1d5db..15dcc87f23eb 100644 --- a/app-emulation/gngb/gngb-20020819.ebuild +++ b/app-emulation/gngb/gngb-20020819.ebuild @@ -1,29 +1,27 @@ # 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.2 2002/11/17 22:48:28 hanno Exp $ - -IUSE="opengl" +# $Header: /var/cvsroot/gentoo-x86/app-emulation/gngb/gngb-20020819.ebuild,v 1.3 2002/11/30 02:52:39 vapier Exp $ DESCRIPTION="gngb - Gameboy / Gameboy Color emulator" HOMEPAGE="http://membres.lycos.fr/frogus/gngb/" +SRC_URI="http://membres.lycos.fr/frogus/gngb/download/${P}.tar.gz" + LICENSE="GPL-2" KEYWORDS="x86 -ppc" SLOT="0" +IUSE="opengl" + 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 - + econf ${myconf} emake || die } -src_install () { +src_install() { dodoc NEWS README TODO INSTALL AUTHORS make DESTDIR=${D} install || die } |