blob: c1bc614588a3b402d9cec9d73c9c5f877a8d5edf (
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
|
# 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 optfeature python-single-r1
MY_P=${PN}-$(ver_cut 1-3)
DESCRIPTION="Enriched clone of the game 'Logical' by Rainbow Arts"
HOMEPAGE="https://pathological.sourceforge.net/"
SRC_URI="
https://downloads.sourceforge.net/pathological/${MY_P}.tar.gz
mirror://debian/pool/main/p/pathological/${MY_P/-/_}-${PV/*_p}.debian.tar.xz
"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
media-libs/sdl2-image[jpeg,png]
$(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]')
"
BDEPEND="
${PYTHON_DEPS}
doc? ( media-libs/netpbm[png] )
"
PATCHES=(
"${FILESDIR}"/${P}-pygame2-compat.patch
)
src_prepare() {
# debian's patches add python3 support and sanitize other aspects
# use_ogg_music: excluded given .xm files are fine
local debian
debian=($(<"${WORKDIR}"/debian/patches/series)) || die
debian=(${debian[@]/60_use_ogg_music.patch/})
PATCHES+=("${debian[@]/#/${WORKDIR}/debian/patches/}")
default
sed -e "s|^cd .*/|cd ${EPREFIX@Q}/usr/share/|" \
-e "s|^exec|exec ${EPYTHON@Q}|" \
-i ${PN} || die
gzip -d ${PN}.6.gz || die
rm graphics/*.xcf || die
}
src_compile() {
use doc && emake docs
}
src_install() {
dobin ${PN}
doman ${PN}.6
insinto /usr/share/${PN}
doins -r circuits graphics music sounds ${PN}.py
doicon ${PN}.xpm
domenu "${WORKDIR}"/debian/${PN}.desktop
use doc && local HTML_DOCS=( html/. )
dodoc changelog
einstalldocs
}
pkg_postinst() {
optfeature "background music support" "media-libs/sdl2-mixer[mod]"
}
|