diff options
author | Hanno Böck <hanno@gentoo.org> | 2012-06-23 21:58:43 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2012-06-23 21:58:43 +0000 |
commit | 8a1d73b65fbdce1295abd0ee17b7aba0f1dc2c0f (patch) | |
tree | 7d9ae90161a290d03e06ec7383341fe5b5b2f10e /games-emulation/desmume | |
parent | Version bump (diff) | |
download | gentoo-2-8a1d73b65fbdce1295abd0ee17b7aba0f1dc2c0f.tar.gz gentoo-2-8a1d73b65fbdce1295abd0ee17b7aba0f1dc2c0f.tar.bz2 gentoo-2-8a1d73b65fbdce1295abd0ee17b7aba0f1dc2c0f.zip |
desmume bump
(Portage version: 2.1.11/cvs/Linux x86_64)
Diffstat (limited to 'games-emulation/desmume')
-rw-r--r-- | games-emulation/desmume/ChangeLog | 9 | ||||
-rw-r--r-- | games-emulation/desmume/desmume-0.9.8.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/games-emulation/desmume/ChangeLog b/games-emulation/desmume/ChangeLog index 1095794a1724..3a01b921d75e 100644 --- a/games-emulation/desmume/ChangeLog +++ b/games-emulation/desmume/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/desmume -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/desmume/ChangeLog,v 1.18 2011/11/12 21:01:35 hanno Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/desmume/ChangeLog,v 1.19 2012/06/23 21:58:43 hanno Exp $ + +*desmume-0.9.8 (23 Jun 2012) + + 23 Jun 2012; Hanno Boeck <hanno@gentoo.org> +desmume-0.9.8.ebuild: + Version bump, all patches have been applied upstream. *desmume-0.9.7 (12 Nov 2011) diff --git a/games-emulation/desmume/desmume-0.9.8.ebuild b/games-emulation/desmume/desmume-0.9.8.ebuild new file mode 100644 index 000000000000..2d36db7d9d81 --- /dev/null +++ b/games-emulation/desmume/desmume-0.9.8.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/desmume/desmume-0.9.8.ebuild,v 1.1 2012/06/23 21:58:43 hanno Exp $ + +EAPI="2" + +inherit games + +DESCRIPTION="Nintendo DS emulator" +HOMEPAGE="http://desmume.org/" +SRC_URI="mirror://sourceforge/desmume/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=x11-libs/gtk+-2.8.0:2 + gnome-base/libglade + x11-libs/gtkglext + virtual/opengl + sys-libs/zlib + dev-libs/zziplib + media-libs/libsdl[joystick] + x11-libs/agg" +RDEPEND="${DEPEND}" + +src_configure() { + egamesconf --datadir=/usr/share || die "egamesconf failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake failed" + dodoc AUTHORS ChangeLog README README.LIN + prepgamesdirs +} |