blob: dfab7410a9cdc649391c8bec67da808726597dda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2009 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-r1.ebuild,v 1.7 2009/01/11 21:34:04 mr_bones_ 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="public-domain"
SLOT="0"
KEYWORDS="amd64 hppa ppc sparc x86"
IUSE=""
DEPEND="dev-python/pygame
media-libs/sdl-image[png]
media-libs/sdl-mixer[mikmod]"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-64bit.patch
sed -i \
-e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
monsterz.py || die "sed failed"
}
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
}
|