diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-01-20 22:26:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-01-20 22:26:28 +0000 |
commit | 77aac5333b6282651b530f66dfda3baa850b56fb (patch) | |
tree | 26ecc6a753df177a36628834127ee52ccc4c5071 /games-emulation | |
parent | removed stale version (diff) | |
download | gentoo-2-77aac5333b6282651b530f66dfda3baa850b56fb.tar.gz gentoo-2-77aac5333b6282651b530f66dfda3baa850b56fb.tar.bz2 gentoo-2-77aac5333b6282651b530f66dfda3baa850b56fb.zip |
version bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/yabause/ChangeLog | 10 | ||||
-rw-r--r-- | games-emulation/yabause/files/digest-yabause-0.9.3 | 3 | ||||
-rw-r--r-- | games-emulation/yabause/yabause-0.9.3.ebuild | 38 |
3 files changed, 49 insertions, 2 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog index 8474e8d0ae67..553245efc028 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.22 2007/12/25 13:07:56 phreak Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.23 2008/01/20 22:26:28 mr_bones_ Exp $ + +*yabause-0.9.3 (20 Jan 2008) + + 20 Jan 2008; Michael Sterrett <mr_bones_@gentoo.org> + +yabause-0.9.3.ebuild: + version bump 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing dholm from metadata.xml as per #24623. diff --git a/games-emulation/yabause/files/digest-yabause-0.9.3 b/games-emulation/yabause/files/digest-yabause-0.9.3 new file mode 100644 index 000000000000..6609ca8142f2 --- /dev/null +++ b/games-emulation/yabause/files/digest-yabause-0.9.3 @@ -0,0 +1,3 @@ +MD5 92c5222270fd2b9cb61f909e0ecf6c02 yabause-0.9.3.tar.gz 561174 +RMD160 07803a55ba5a6c936672e26f76a8c55906bf8af6 yabause-0.9.3.tar.gz 561174 +SHA256 174a2348535be90f13d88789bb162043204c285d5012196aa61aadcc542e2475 yabause-0.9.3.tar.gz 561174 diff --git a/games-emulation/yabause/yabause-0.9.3.ebuild b/games-emulation/yabause/yabause-0.9.3.ebuild new file mode 100644 index 000000000000..6a490435773c --- /dev/null +++ b/games-emulation/yabause/yabause-0.9.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/yabause-0.9.3.ebuild,v 1.1 2008/01/20 22:26:28 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 +} |