diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-12 02:57:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-12 02:57:28 +0000 |
commit | 31e68d7b6ab28f0f89934be5b31f0e8b87e6cfed (patch) | |
tree | daaea94a06478fae0f5c0b112a7fd22661b7fb0a /games-emulation/goosnes | |
parent | fixing Manifest (diff) | |
download | gentoo-2-31e68d7b6ab28f0f89934be5b31f0e8b87e6cfed.tar.gz gentoo-2-31e68d7b6ab28f0f89934be5b31f0e8b87e6cfed.tar.bz2 gentoo-2-31e68d7b6ab28f0f89934be5b31f0e8b87e6cfed.zip |
more rdepends; error messages
Diffstat (limited to 'games-emulation/goosnes')
-rw-r--r-- | games-emulation/goosnes/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/goosnes/goosnes-0.5.2.ebuild | 17 |
2 files changed, 15 insertions, 9 deletions
diff --git a/games-emulation/goosnes/ChangeLog b/games-emulation/goosnes/ChangeLog index 03306efcc460..7ec73347ca01 100644 --- a/games-emulation/goosnes/ChangeLog +++ b/games-emulation/goosnes/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/goosnes -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/ChangeLog,v 1.2 2003/09/10 16:02:49 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/ChangeLog,v 1.3 2004/04/12 02:57:28 mr_bones_ Exp $ + + 11 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> goosnes-0.5.2.ebuild: + more rdepends; error messages *goosnes-0.5.2 (02 Mar 2003) diff --git a/games-emulation/goosnes/goosnes-0.5.2.ebuild b/games-emulation/goosnes/goosnes-0.5.2.ebuild index 3ca1e7ca3e7e..2b5886f9fcfd 100644 --- a/games-emulation/goosnes/goosnes-0.5.2.ebuild +++ b/games-emulation/goosnes/goosnes-0.5.2.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/goosnes-0.5.2.ebuild,v 1.3 2004/02/20 06:26:47 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/goosnes-0.5.2.ebuild,v 1.4 2004/04/12 02:57:28 mr_bones_ Exp $ DESCRIPTION="A GTK+ frontend for Snes9X" -SRC_URI="http://bard.sytes.net/debian/dists/unstable/main/source/${PN}_${PV}-1.tar.gz" HOMEPAGE="http://bard.sytes.net/goosnes/" +SRC_URI="http://bard.sytes.net/debian/dists/unstable/main/source/${PN}_${PV}-1.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86" IUSE="gtk2" @@ -15,17 +15,20 @@ DEPEND="|| ( gtk2? ( =x11-libs/gtk+-2* ) =x11-libs/gtk+-1* ) - dev-util/pkgconfig dev-libs/libxml2" -RDEPEND="games-emulation/snes9x" +RDEPEND="${DEPEND} + games-emulation/snes9x" + +DEPEND="${DEPEND} + dev-util/pkgconfig" src_compile() { use gtk2 && myconf="--with-gtk-version=2.0" econf ${myconf} || die - emake || die + emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog README } |