diff options
Diffstat (limited to 'games-emulation/raine/raine-0.43.2.1.ebuild')
-rw-r--r-- | games-emulation/raine/raine-0.43.2.1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/games-emulation/raine/raine-0.43.2.1.ebuild b/games-emulation/raine/raine-0.43.2.1.ebuild new file mode 100644 index 000000000000..69a642d8ef68 --- /dev/null +++ b/games-emulation/raine/raine-0.43.2.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/raine-0.43.2.1.ebuild,v 1.1 2006/05/03 19:20:16 tupone Exp $ + +inherit versionator games + +MY_PV=$(replace_version_separator 3 '-') + +DESCRIPTION="R A I N E M680x0 Arcade Emulation" +HOMEPAGE="http://www.rainemu.com/" +SRC_URI="http://www.rainemu.com/html/archive/raines-${MY_PV}.tar.bz2 + http://www.rainemu.com/html/archive/rainedocs.zip + http://www.rainemu.com/html/archive/icons.zip" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~x86" +IUSE="static kde" + +S="${WORKDIR}/${PN}-$(get_version_component_range -3)" + +RDEPEND="media-libs/allegro + sys-libs/zlib" +DEPEND="${RDEPEND} + app-arch/unzip" + +src_unpack() { + unpack ${A} + cd "${S}" + echo > detect-cpu + echo > cpuinfo + sed -i \ + -e "/bindir/s:/usr/games:${GAMES_BINDIR}:" \ + makefile \ + || die "sed failed" +} + +src_compile() { + local myopts= + use static \ + && myopts="${myopts} STATIC=1" \ + || myopts="${myopts} STATIC=" + emake \ + _MARCH="${CFLAGS}" \ + ${myopts} || die "emake failed" +} + +src_install() { + make prefix="${D}" install || die "make install failed" + keepdir "${GAMES_DATADIR}/${PN}/roms" + dodoc "${WORKDIR}/raine.txt" + + insinto /usr/share/icons + doins "${WORKDIR}/"*.png + if use kde ; then + insinto /usr/share/applnk/Games + doins "${FILESDIR}/Raine.desktop" + fi + prepgamesdirs +} |