summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-09-12 23:17:50 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-09-12 23:17:50 +0000
commita0ad31f8ff80b1a449544b3e918780942c2e5aac (patch)
tree7cd3d255e67152ee264a80387193f6cf5713fdcd /games-emulation/yabause
parentAlso move uname to /bin. (diff)
downloadgentoo-2-a0ad31f8ff80b1a449544b3e918780942c2e5aac.tar.gz
gentoo-2-a0ad31f8ff80b1a449544b3e918780942c2e5aac.tar.bz2
gentoo-2-a0ad31f8ff80b1a449544b3e918780942c2e5aac.zip
version bump
(Portage version: 2.1.1)
Diffstat (limited to 'games-emulation/yabause')
-rw-r--r--games-emulation/yabause/ChangeLog8
-rw-r--r--games-emulation/yabause/files/digest-yabause-0.7.23
-rw-r--r--games-emulation/yabause/yabause-0.7.2.ebuild41
3 files changed, 51 insertions, 1 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog
index 3c59d928c294..ec360268f072 100644
--- a/games-emulation/yabause/ChangeLog
+++ b/games-emulation/yabause/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-emulation/yabause
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.12 2006/09/02 07:18:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.13 2006/09/12 23:17:50 mr_bones_ Exp $
+
+*yabause-0.7.2 (12 Sep 2006)
+
+ 12 Sep 2006; Michael Sterrett <mr_bones_@gentoo.org>
+ +yabause-0.7.2.ebuild:
+ version bump
*yabause-0.7.1 (02 Sep 2006)
diff --git a/games-emulation/yabause/files/digest-yabause-0.7.2 b/games-emulation/yabause/files/digest-yabause-0.7.2
new file mode 100644
index 000000000000..28cc17e095a3
--- /dev/null
+++ b/games-emulation/yabause/files/digest-yabause-0.7.2
@@ -0,0 +1,3 @@
+MD5 fcf19fee7769ba4c1b60616953e41f31 yabause-0.7.2.tar.gz 457376
+RMD160 a099586a57b3fd6f0e192c510db86b572753f990 yabause-0.7.2.tar.gz 457376
+SHA256 c748703e912066cb2b225a1d3045799cbd3d5b288dfe3bdb4e5ec2e40abf7e4b yabause-0.7.2.tar.gz 457376
diff --git a/games-emulation/yabause/yabause-0.7.2.ebuild b/games-emulation/yabause/yabause-0.7.2.ebuild
new file mode 100644
index 000000000000..d1175e1e2846
--- /dev/null
+++ b/games-emulation/yabause/yabause-0.7.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/yabause-0.7.2.ebuild,v 1.1 2006/09/12 23:17:50 mr_bones_ Exp $
+
+inherit games
+
+DESCRIPTION="A Sega Saturn emulator"
+HOMEPAGE="http://yabause.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~ppc x86"
+IUSE="gtk"
+
+RDEPEND="=x11-libs/gtk+-2*
+ =x11-libs/gtkglext-1.0*
+ virtual/opengl
+ virtual/glut
+ media-libs/libsdl
+ media-libs/sdl-gfx
+ media-libs/sdl-image"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+S=${WORKDIR}/${PN}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i \
+ -e "s/COLSATSTRIPRIORITY/COLSATSTRIPPRIORITY/" \
+ src/vidsoft.c \
+ || die "sed failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog TODO README
+ prepgamesdirs
+}