blob: e0e5bb0741d9ee8a150894aa6965ff8910c123e9 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
inherit desktop python-single-r1 xdg-utils
DESCRIPTION="A single-player game with a science-fiction theme"
HOMEPAGE="https://www.jwhitham.org/20kly/"
SRC_URI="https://www.jwhitham.org/20kly/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-python/pygame[${PYTHON_MULTI_USEDEP}]
')
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}"-gentoo.patch
)
src_prepare() {
default
sed -i \
-e "s:@GENTOO_LIBDIR@:/usr/$(get_libdir)/${PN}:" \
-e "s:@GENTOO_DATADIR@:/usr/share/${PN}:" \
${PN} || die
python_fix_shebang .
}
src_install() {
dobin ${PN}
insinto /usr/"$(get_libdir)/${PN}"
doins code/*.py
einstalldocs
insinto "/usr/share/${PN}"
doins -r audio data manual
python_optimize "${ED}/usr/$(get_libdir)/${PN}"
newicon data/32.png ${PN}.png
make_desktop_entry ${PN} "Light Years Into Space"
}
pkg_postinst() { xdg_icon_cache_update; }
pkg_postrm() { xdg_icon_cache_update; }
|