blob: b20c0cfa5fc5a6cd854470a13ea89ed602507b63 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit desktop python-single-r1
DESCRIPTION="Traditional and challenging 2D platformer game with a slight rotational twist"
HOMEPAGE="https://www.oletus.fi/static/whichwayisup/"
SRC_URI="
https://www.oletus.fi/static/whichwayisup/${PN}_b079.zip
mirror://debian/pool/main/${P::1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz
https://dev.gentoo.org/~ionen/distfiles/${PN}.png
"
S=${WORKDIR}/${PN}
LICENSE="BitstreamVera CC-BY-3.0 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]')
media-libs/sdl2-image[png]
media-libs/sdl2-mixer[vorbis]
"
BDEPEND="
${PYTHON_DEPS}
app-arch/unzip
"
PATCHES=(
"${WORKDIR}"/debian/patches
)
src_prepare() {
# drop Debian specific patch
rm -- "${WORKDIR}"/debian/patches/font_path.patch || die
default
sed -i "/libdir =/s|= .*|= \"${EPREFIX}/usr/share/${PN}/lib\"|" run_game.py || die
python_fix_shebang run_game.py
rm data/pictures/Thumbs.db || die
}
src_install() {
newbin run_game.py ${PN}
insinto /usr/share/${PN}
doins -r data lib
dodoc README.txt changelog.txt
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} "Which Way Is Up?"
}
|