diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-09-25 05:47:37 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-09-25 05:47:37 +0000 |
commit | 14c215e276e0b831fab32c4b1316f1b096315aa1 (patch) | |
tree | 559dac221b68215e2259efa2532ee4de3dfdebc7 /games-emulation | |
parent | Adding x11-drivers/xf86-video-radeonhd p.masked as it's still experimental. (diff) | |
download | gentoo-2-14c215e276e0b831fab32c4b1316f1b096315aa1.tar.gz gentoo-2-14c215e276e0b831fab32c4b1316f1b096315aa1.tar.bz2 gentoo-2-14c215e276e0b831fab32c4b1316f1b096315aa1.zip |
version bump
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/yabause/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/yabause/files/digest-yabause-0.9.0 | 3 | ||||
-rw-r--r-- | games-emulation/yabause/yabause-0.9.0.ebuild | 38 |
3 files changed, 48 insertions, 1 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog index 656da5f19c03..a84aabe7169e 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.18 2007/08/19 18:19:40 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.19 2007/09/25 05:47:37 mr_bones_ Exp $ + +*yabause-0.9.0 (25 Sep 2007) + + 25 Sep 2007; Michael Sterrett <mr_bones_@gentoo.org> + +yabause-0.9.0.ebuild: + version bump *yabause-0.8.6 (19 Aug 2007) diff --git a/games-emulation/yabause/files/digest-yabause-0.9.0 b/games-emulation/yabause/files/digest-yabause-0.9.0 new file mode 100644 index 000000000000..3a7dc39d1bf9 --- /dev/null +++ b/games-emulation/yabause/files/digest-yabause-0.9.0 @@ -0,0 +1,3 @@ +MD5 4210d6249f283d4a58b366923240accf yabause-0.9.0.tar.gz 545424 +RMD160 41cacdf2bcdbd1eda09c98a50409c45c306b3bb8 yabause-0.9.0.tar.gz 545424 +SHA256 36706a240d9d18c26ff205e718e1e9ac666cc38731b02dfbd75a2657054d4257 yabause-0.9.0.tar.gz 545424 diff --git a/games-emulation/yabause/yabause-0.9.0.ebuild b/games-emulation/yabause/yabause-0.9.0.ebuild new file mode 100644 index 000000000000..6a2e173fbff7 --- /dev/null +++ b/games-emulation/yabause/yabause-0.9.0.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.0.ebuild,v 1.1 2007/09/25 05:47:37 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 +} |