# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-arcade/marbleblast-demo/marbleblast-demo-1.3.ebuild,v 1.4 2006/09/19 18:56:41 wolf31o2 Exp $ inherit eutils games DESCRIPTION="race marbles through crazy stages" HOMEPAGE="http://www.garagegames.com/pg/product/view.php?id=3" SRC_URI="ftp://ggdev-1.homelan.com/marbleblast/MarbleBlastDemo-${PV}.sh.bin" LICENSE="MARBLEBLAST" SLOT="0" KEYWORDS="-* ~amd64 x86" RESTRICT="strip" IUSE="" DEPEND="" GAMES_CHECK_LICENSE="yes" dir=${GAMES_PREFIX_OPT}/${PN} Ddir=${D}/${dir} S=${WORKDIR} src_unpack() { unpack_makeself tar -zxf MarbleBlast.tar.gz -C "${T}" || die "extracting MarbleBlast.tar.gz" } src_install() { insinto "${dir}" exeinto "${dir}" for i in common lib marble do doins -r "${T}"/${i} || die "copying ${i}" done doins "${T}"/main.cs doexe bin/Linux/x86/marbleblastdemo "${T}"/marbleblastdemo.bin games_make_wrapper marbleblast-demo ./marbleblastdemo "${dir}" "${dir}" dodoc "${T}"/README_DEMO.txt prepgamesdirs }