diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-08-19 18:19:40 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-08-19 18:19:40 +0000 |
commit | 35556c88067df8bd79f7013acb9812e10cd4cb04 (patch) | |
tree | f570a0965e87e9d00a7a38030564aa2aaba496e7 /games-emulation/yabause | |
parent | Version bump. (diff) | |
download | gentoo-2-35556c88067df8bd79f7013acb9812e10cd4cb04.tar.gz gentoo-2-35556c88067df8bd79f7013acb9812e10cd4cb04.tar.bz2 gentoo-2-35556c88067df8bd79f7013acb9812e10cd4cb04.zip |
version bump
(Portage version: 2.1.2.11)
Diffstat (limited to 'games-emulation/yabause')
-rw-r--r-- | games-emulation/yabause/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/yabause/files/digest-yabause-0.8.6 | 3 | ||||
-rw-r--r-- | games-emulation/yabause/yabause-0.8.6.ebuild | 40 |
3 files changed, 50 insertions, 1 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog index 7d4ee78976f7..656da5f19c03 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.17 2007/06/29 03:34:39 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.18 2007/08/19 18:19:40 mr_bones_ Exp $ + +*yabause-0.8.6 (19 Aug 2007) + + 19 Aug 2007; Michael Sterrett <mr_bones_@gentoo.org> + +yabause-0.8.6.ebuild: + version bump *yabause-0.8.5 (29 Jun 2007) diff --git a/games-emulation/yabause/files/digest-yabause-0.8.6 b/games-emulation/yabause/files/digest-yabause-0.8.6 new file mode 100644 index 000000000000..449ac4f842cb --- /dev/null +++ b/games-emulation/yabause/files/digest-yabause-0.8.6 @@ -0,0 +1,3 @@ +MD5 27e6e9807f7454a8f05a5abd3c04f7e1 yabause-0.8.6.tar.gz 548772 +RMD160 0a055bd1ffe91d4d8f7158836d38f335f93eef22 yabause-0.8.6.tar.gz 548772 +SHA256 5c334e1cc00650f70a7b7285dea7c6c31688a1ea48f85f15d46349834f98beec yabause-0.8.6.tar.gz 548772 diff --git a/games-emulation/yabause/yabause-0.8.6.ebuild b/games-emulation/yabause/yabause-0.8.6.ebuild new file mode 100644 index 000000000000..5cb1b49ec78d --- /dev/null +++ b/games-emulation/yabause/yabause-0.8.6.ebuild @@ -0,0 +1,40 @@ +# 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.8.6.ebuild,v 1.1 2007/08/19 18:19: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" + +S=${WORKDIR}/${PN} + +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 +} |