diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-12-24 10:12:50 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-12-24 10:12:50 +0000 |
commit | 465aa5d37fa5d02b19c33ebb342dd9dbdde3b267 (patch) | |
tree | 169fad841e4b9f67ad3d9a06e131b2f3a269393f /games-emulation/yabause | |
parent | Version bump, bug #158971. (diff) | |
download | gentoo-2-465aa5d37fa5d02b19c33ebb342dd9dbdde3b267.tar.gz gentoo-2-465aa5d37fa5d02b19c33ebb342dd9dbdde3b267.tar.bz2 gentoo-2-465aa5d37fa5d02b19c33ebb342dd9dbdde3b267.zip |
Version bump
(Portage version: 2.1.2_rc4)
Diffstat (limited to 'games-emulation/yabause')
-rw-r--r-- | games-emulation/yabause/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/yabause/files/digest-yabause-0.8.0 | 3 | ||||
-rw-r--r-- | games-emulation/yabause/yabause-0.8.0.ebuild | 42 |
3 files changed, 51 insertions, 1 deletions
diff --git a/games-emulation/yabause/ChangeLog b/games-emulation/yabause/ChangeLog index ec360268f072..2f0ae52f5f56 100644 --- a/games-emulation/yabause/ChangeLog +++ b/games-emulation/yabause/ChangeLog @@ -1,6 +1,11 @@ # 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.13 2006/09/12 23:17:50 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.14 2006/12/24 10:12:50 nyhm Exp $ + +*yabause-0.8.0 (24 Dec 2006) + + 24 Dec 2006; Tristan Heaven <nyhm@gentoo.org> +yabause-0.8.0.ebuild: + Version bump *yabause-0.7.2 (12 Sep 2006) diff --git a/games-emulation/yabause/files/digest-yabause-0.8.0 b/games-emulation/yabause/files/digest-yabause-0.8.0 new file mode 100644 index 000000000000..958fced642a9 --- /dev/null +++ b/games-emulation/yabause/files/digest-yabause-0.8.0 @@ -0,0 +1,3 @@ +MD5 f61c3829b3505691b151fb77d08fd183 yabause-0.8.0.tar.gz 503573 +RMD160 3c4b39bd27cf41c3c265119c6a8c2ce961699b0f yabause-0.8.0.tar.gz 503573 +SHA256 fe6d5141bb4b453f6717aec7a6e0823fb072a8a76b30a379810f084b95377cc2 yabause-0.8.0.tar.gz 503573 diff --git a/games-emulation/yabause/yabause-0.8.0.ebuild b/games-emulation/yabause/yabause-0.8.0.ebuild new file mode 100644 index 000000000000..4744e0853c1b --- /dev/null +++ b/games-emulation/yabause/yabause-0.8.0.ebuild @@ -0,0 +1,42 @@ +# 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.8.0.ebuild,v 1.1 2006/12/24 10:12:50 nyhm Exp $ + +WANT_AUTOCONF=latest +WANT_AUTOMAKE=latest +inherit autotools eutils 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="" + +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 '/DATA/d' src/gtk/Makefile.am || die "sed failed" + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + make_desktop_entry ${PN} Yabause + doicon src/gtk/${PN}.png + dodoc AUTHORS ChangeLog GOALS TODO README README.LIN + prepgamesdirs +} |