blob: 09f1a0c25b24b9e15a1424f2d2243a40bbf57b65 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop flag-o-matic optfeature prefix readme.gentoo-r1 toolchain-funcs
MY_P="df_$(ver_rs 1- _ $(ver_cut 2-))"
DESCRIPTION="Single-player fantasy game"
HOMEPAGE="https://www.bay12games.com/dwarves/"
SRC_URI="
amd64? ( https://www.bay12games.com/dwarves/${MY_P}_linux.tar.bz2 )
x86? ( https://www.bay12games.com/dwarves/${MY_P}_linux32.tar.bz2 )
https://dev.gentoo.org/~ionen/distfiles/${PN}.png"
S="${WORKDIR}/df_linux"
LICENSE="free-noncomm BSD BitstreamVera"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="debug gui"
RDEPEND="
dev-libs/glib:2
media-libs/glew:0=
media-libs/libglvnd[X]
media-libs/libsdl[joystick,opengl,video]
media-libs/sdl-image[png]
media-libs/sdl-ttf
sys-libs/zlib:=
virtual/glu
gui? ( x11-libs/gtk+:2 )"
# libsndfile, openal and ncurses are only needed at compile-time,
# optfeature through dlopen() at runtime if requested
DEPEND="
${RDEPEND}
media-libs/libsndfile
media-libs/openal
sys-libs/ncurses"
BDEPEND="virtual/pkgconfig"
QA_PREBUILT="opt/${PN}/libs/Dwarf_Fortress"
PATCHES=(
"${FILESDIR}"/${P}-missing-cmath.patch
"${FILESDIR}"/${P}-ncurses6.patch
"${FILESDIR}"/${P}-nogtk.patch
"${FILESDIR}"/${P}-segfault-fixes.patch
)
src_prepare() {
default
# remove prebuilt libraries that are provided by the system
rm libs/*.so* || die
}
src_compile() {
tc-export CXX PKG_CONFIG
# -DDEBUG is recognized to give additional debug output
append-cppflags -D$(usev !debug N)DEBUG
emake -f "${FILESDIR}"/Makefile.native HAVE_GTK=$(usex gui 1 0)
}
src_install() {
insinto /opt/${PN}
doins -r data libs raw
fperms +x /opt/${PN}/libs/Dwarf_Fortress
dobin "$(prefixify_ro "${FILESDIR}"/dwarf-fortress)"
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry dwarf-fortress "Dwarf Fortress"
dodoc README.linux *.txt
local DOC_CONTENTS="
Dwarf Fortress has been installed to ${EPREFIX}/opt/${PN}. This is
symlinked to ~/.${PN} when ${PN} is run. For more information on what
exactly is replaced, see ${EPREFIX}/usr/bin/${PN}. Note: This means
that the primary entry point is ${EPREFIX}/usr/bin/${PN}, do not run
${EPREFIX}/opt/${PN}/libs/Dwarf_Fortress."
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
optfeature "text PRINT_MODE" sys-libs/ncurses
optfeature "audio output" "media-libs/openal media-libs/libsndfile[-minimal]"
}
|