diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-10-18 18:53:31 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-10-18 18:53:31 +0000 |
commit | d713ac99875855ee188fa881336e185163ff5867 (patch) | |
tree | 221c0586088bca54e1e0217f0979cf7365dc6fb5 /games-emulation/goosnes | |
parent | Mark 7.0.91 stable on alpha (diff) | |
download | gentoo-2-d713ac99875855ee188fa881336e185163ff5867.tar.gz gentoo-2-d713ac99875855ee188fa881336e185163ff5867.tar.bz2 gentoo-2-d713ac99875855ee188fa881336e185163ff5867.zip |
Use autotools eclass
(Portage version: 2.1.2_pre3-r4)
Diffstat (limited to 'games-emulation/goosnes')
-rw-r--r-- | games-emulation/goosnes/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/goosnes/files/digest-goosnes-0.5.2 | 2 | ||||
-rw-r--r-- | games-emulation/goosnes/goosnes-0.5.2.ebuild | 12 |
3 files changed, 14 insertions, 7 deletions
diff --git a/games-emulation/goosnes/ChangeLog b/games-emulation/goosnes/ChangeLog index 8625615373ab..f44b472dc536 100644 --- a/games-emulation/goosnes/ChangeLog +++ b/games-emulation/goosnes/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/goosnes -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/ChangeLog,v 1.7 2005/09/20 14:46:34 mr_bones_ Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/ChangeLog,v 1.8 2006/10/18 18:53:31 nyhm Exp $ + + 18 Oct 2006; Tristan Heaven <nyhm@gentoo.org> goosnes-0.5.2.ebuild: + Use autotools eclass 20 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> goosnes-0.5.2.ebuild: remove gtk2 use flag diff --git a/games-emulation/goosnes/files/digest-goosnes-0.5.2 b/games-emulation/goosnes/files/digest-goosnes-0.5.2 index d68220bc55e7..782c734750e6 100644 --- a/games-emulation/goosnes/files/digest-goosnes-0.5.2 +++ b/games-emulation/goosnes/files/digest-goosnes-0.5.2 @@ -1 +1,3 @@ MD5 032cb84df865f4b9e76973f8c0195804 goosnes_0.5.2-1.tar.gz 100685 +RMD160 8e0e5d63b03314ed27584103ce7f6afaad6c99ef goosnes_0.5.2-1.tar.gz 100685 +SHA256 e95295e4f0ba073faa47f193961731e9fef8f369b75b7df591f70dc6eb20b3b7 goosnes_0.5.2-1.tar.gz 100685 diff --git a/games-emulation/goosnes/goosnes-0.5.2.ebuild b/games-emulation/goosnes/goosnes-0.5.2.ebuild index 9ab9a140d6e3..172c222a2816 100644 --- a/games-emulation/goosnes/goosnes-0.5.2.ebuild +++ b/games-emulation/goosnes/goosnes-0.5.2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # 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.9 2005/09/20 14:46:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/goosnes/goosnes-0.5.2.ebuild,v 1.10 2006/10/18 18:53:31 nyhm Exp $ -inherit games +WANT_AUTOCONF=latest +WANT_AUTOMAKE=latest +inherit autotools games DESCRIPTION="A GTK+ frontend for Snes9X" HOMEPAGE="http://bard.sytes.net/goosnes/" @@ -24,7 +26,7 @@ src_unpack() { unpack ${A} cd "${S}" # packaging is broken - aclocal && autoheader && autoconf && automake || die + eautoreconf } src_compile() { @@ -33,7 +35,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README prepgamesdirs } |