blob: e9f4098849d595083504d900933a27e4ee3e95b3 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
PYTHON_DPEEND="2:2.4"
inherit eutils python games
MY_PN="Frets on Fire"
MY_PN_URI="FretsOnFire"
DESCRIPTION="A game of musical skill and fast fingers"
HOMEPAGE="http://fretsonfire.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN_URI}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc guitarhero"
# NOTES :
# pyopengl-2.0.0.44 (stable) makes the game crash with some configs
DEPEND=""
RDEPEND="dev-python/pygame
>=dev-python/pyopengl-2.0.1.09-r1
dev-python/imaging
dev-python/numpy
media-libs/sdl-mixer[vorbis]
doc? ( >=dev-python/epydoc-3.0.1 )
guitarhero? ( media-sound/vorbis-tools )"
S=${WORKDIR}/${MY_PN}-${PV}
DOCS="readme.txt todo.txt PKG-INFO MANIFEST"
src_prepare() {
# change main game executable path
sed -i -e "s:\(FretsOnFire.py\):$(games_get_libdir)/${PN}/\1:" \
src/FretsOnFire.py || die "patching src/FretsOnFire.py failed"
# change data path
sed -i -e \
"s:os.path.join(\"..\", \"\(data\)\"):\"${GAMES_DATADIR}/${PN}/\1\":" \
src/Version.py || die "patching src/Version.py failed"
}
src_compile() {
# NOTE : there is a Makefile but it has not te be run
if use doc; then
epydoc --html -o "doc/html" -n "Frets on Fire" src/*.py src/midi/*.py \
|| die "documentation generation failed"
fi
}
src_install() {
insinto "$(games_get_libdir)/${PN}"
# we have to ignore .pyc files
doins src/*.py src/*.pot || die "installation failed"
insinto "$(games_get_libdir)/${PN}/midi"
# we have to ignore .pyc files
doins src/midi/*.py || die "installation failed"
insinto "${GAMES_DATADIR}/${PN}"
# removes useless files
rm -fr data/win32
# removes useless file that is throwing a QA notice
rm -f data/PyOpenGL__init__.pyc
doins -r data || die "data installation failed"
games_make_wrapper \
${PN} "python FretsOnFire.py" "$(games_get_libdir)/${PN}" \
|| die "games wrapper installation failed"
if use doc; then
dohtml -r doc/html/* || die "documentation installation failed"
fi
dodoc ${DOCS} || die "documentation installation failed"
newicon data/icon.png ${PN}.png
make_desktop_entry ${PN} "Frets on Fire"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
python_mod_optimize "${ROOT}$(games_get_libdir)/${PN}"
}
pkg_postrm() {
python_mod_cleanup "${ROOT}$(games_get_libdir)/${PN}"
}
|