40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/monsterz/monsterz-0.7.1-r2.ebuild,v 1.7 2013/08/28 17:48:12 hasufell Exp $
|
|
|
|
EAPI=2
|
|
inherit eutils games
|
|
|
|
DESCRIPTION="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}.tar.gz"
|
|
|
|
LICENSE="GPL-1+ LGPL-2+ WTFPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa ppc sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/pygame
|
|
media-libs/sdl-image[png]
|
|
media-libs/sdl-mixer[mod]"
|
|
|
|
src_prepare() {
|
|
epatch \
|
|
"${FILESDIR}"/${P}-gentoo.patch \
|
|
"${FILESDIR}"/${P}-64bit.patch \
|
|
"${FILESDIR}"/${P}-blit.patch
|
|
sed -i \
|
|
-e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
|
|
monsterz.py || die "sed failed"
|
|
rm -f Makefile
|
|
}
|
|
|
|
src_install() {
|
|
insinto "${GAMES_DATADIR}"/${PN}
|
|
doins -r graphics sound || die "doins failed"
|
|
newgamesbin monsterz.py ${PN} || die "newgamesbin failed"
|
|
newicon graphics/icon.png ${PN}.png
|
|
make_desktop_entry ${PN} Monsterz
|
|
dodoc README AUTHORS TODO
|
|
prepgamesdirs
|
|
}
|