# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit games DESCRIPTION=" Monsterz is a little puzzle game, similar to the famous Bejeweled or Zookeeper." HOMEPAGE="http://sam.zoy.org/projects/monsterz/" SRC_URI="http://sam.zoy.org/projects/monsterz/${P}-indep.tar.gz" S=${WORKDIR}/${P}-indep LICENSE="as-is2" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="dev-python/pygame" src_install() { cd ${S} local dir="${GAMES_DATADIR}/${PN}" insinto ${dir} doins *.py || die "doins failed" doins *.wav || die "doins failed" doins *.s3m || die "doins failed" doins *.png || die "doins failed" games_make_wrapper monsterz "python ./monsterz.py" "${dir}" dodoc README COPYING AUTHORS TODO INSTALL prepgamesdirs }