blob: a99e8349fe56c9cfba7eb828748d50e6ab801b24 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jools/jools-0.20-r1.ebuild,v 1.6 2009/12/19 13:09:16 pacho Exp $
inherit eutils python games
MUS_P=${PN}-musicpack-1.0
DESCRIPTION="clone of Bejeweled, a popular pattern-matching game"
HOMEPAGE="http://pessimization.com/software/jools/"
SRC_URI="http://pessimization.com/software/jools/${P}.tar.gz
http://pessimization.com/software/jools/${MUS_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND="dev-python/pygame"
DEPEND=""
S=${WORKDIR}/${P}/jools
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
echo "MEDIAROOT = \"${GAMES_DATADIR}/${PN}\"" > config.py
cd music
unpack ${MUS_P}.tar.gz
}
src_install() {
games_make_wrapper ${PN} "python ./__init__.py" "$(games_get_libdir)"/${PN}
insinto "$(games_get_libdir)"/${PN}
doins *.py || die "doins py failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r fonts images music sounds || die "doins data failed"
newicon images/ruby/0001.png ${PN}.png
make_desktop_entry ${PN} Jools
dodoc ../{ChangeLog,doc/{POINTS,TODO}}
dohtml ../doc/manual.html
prepgamesdirs
}
pkg_postinst() {
python_mod_optimize "$(games_get_libdir)"/${PN}
games_pkg_postinst
}
pkg_postrm() {
python_mod_cleanup "$(games_get_libdir)"/${PN}
}
|