summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--games-emulation/yabause/ChangeLog8
-rw-r--r--games-emulation/yabause/files/digest-yabause-0.9.23
-rw-r--r--games-emulation/yabause/yabause-0.9.2.ebuild38
3 files changed, 48 insertions, 1 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog
index 3c14785c9ee6..4cacdb901b3f 100644
--- a/games-emulation/yabause/ChangeLog
+++ b/games-emulation/yabause/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-emulation/yabause
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.20 2007/11/06 17:58:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.21 2007/12/17 03:27:40 mr_bones_ Exp $
+
+*yabause-0.9.2 (17 Dec 2007)
+
+ 17 Dec 2007; Michael Sterrett <mr_bones_@gentoo.org>
+ +yabause-0.9.2.ebuild:
+ version bump
*yabause-0.9.1 (06 Nov 2007)
diff --git a/games-emulation/yabause/files/digest-yabause-0.9.2 b/games-emulation/yabause/files/digest-yabause-0.9.2
new file mode 100644
index 000000000000..b69db7af6709
--- /dev/null
+++ b/games-emulation/yabause/files/digest-yabause-0.9.2
@@ -0,0 +1,3 @@
+MD5 45d5fc2cc6b7b757b6d2cb97f794d7f8 yabause-0.9.2.tar.gz 551031
+RMD160 fc37d101a61e99d8a81d9c75d36508d6d1dac0d0 yabause-0.9.2.tar.gz 551031
+SHA256 15ff8ea5b8d6fce4973543bfb3d09fc8c0d3e2e36f48312024272432d4584884 yabause-0.9.2.tar.gz 551031
diff --git a/games-emulation/yabause/yabause-0.9.2.ebuild b/games-emulation/yabause/yabause-0.9.2.ebuild
new file mode 100644
index 000000000000..86fbf133cb63
--- /dev/null
+++ b/games-emulation/yabause/yabause-0.9.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/yabause-0.9.2.ebuild,v 1.1 2007/12/17 03:27:40 mr_bones_ Exp $
+
+inherit autotools games
+
+DESCRIPTION="A Sega Saturn emulator"
+HOMEPAGE="http://yabause.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="=x11-libs/gtk+-2*
+ x11-libs/gtkglext
+ virtual/opengl
+ virtual/glu
+ virtual/glut
+ media-libs/libsdl"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i 's:$(datadir):/usr/share:' \
+ src/gtk/Makefile.am \
+ || die "sed failed"
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog GOALS README README.LIN TODO
+ prepgamesdirs
+}