blob: 4c8ee0d2cecf4f49a4375e6098ba56450bea186d (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
inherit prefix python-any-r1 xdg
DESCRIPTION="Game resources for Freedoom: Phase 1+2"
HOMEPAGE="https://freedoom.github.io"
SRC_URI="https://github.com/freedoom/freedoom/archive/v${PV}.tar.gz -> freedoom-${PV}.tar.gz"
S="${WORKDIR}/freedoom-${PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
BDEPEND="
$(python_gen_any_dep 'dev-python/pillow[${PYTHON_USEDEP},zlib]')
app-text/asciidoc
dev-util/source-highlight
games-util/deutex[png]
"
DOOMWADPATH="share/doom"
python_check_deps() {
python_has_version -b "dev-python/pillow[${PYTHON_USEDEP},zlib]"
}
src_prepare() {
default
hprefixify dist/freedoom
}
src_compile() {
emake wads/freedoom{1,2}.wad \
freedoom{1,2}.6 \
{NEWS,README}.html
}
src_install() {
emake install-freedoom \
prefix="${ED}/usr/" \
bindir="bin/" \
docdir="share/doc/${PF}" \
mandir="share/man/" \
waddir="${DOOMWADPATH}/" \
MANUAL_PDF_FILES=
}
pkg_postinst() {
xdg_pkg_postinst
elog "Freedoom WAD files installed into ${EPREFIX}/usr/${DOOMWADPATH} directory."
}
|