blob: 785b83e5ca8e5432a3aca2cea1c53c944a976455 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson virtualx xdg
DESCRIPTION="A highly customizable and functional document viewer"
HOMEPAGE="https://pwmt.org/projects/zathura/"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git"
EGIT_BRANCH="develop"
else
SRC_URI="
https://github.com/pwmt/zathura/archive/${PV}.tar.gz -> ${P}.tar.gz
"
KEYWORDS="~amd64 arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux"
fi
LICENSE="ZLIB"
SLOT="0/6.7"
IUSE="+man seccomp synctex test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/json-glib
man? ( dev-python/sphinx )
seccomp? ( sys-libs/libseccomp )
synctex? ( app-text/texlive-core )
sys-apps/file
x11-libs/cairo
x11-libs/pango
>=dev-db/sqlite-3.6.23:3
>=dev-libs/girara-0.4.3:=
>=dev-libs/glib-2.72:2
>=x11-libs/gtk+-3.24:3
"
DEPEND="
${RDEPEND}
>=sys-kernel/linux-headers-5.13
test? (
dev-libs/check
>=x11-libs/gtk+-3.24:3[X]
)
"
BDEPEND="
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
-Dconvert-icon=disabled
-Dlandlock=enabled
-Dmanpages=$(usex man enabled disabled)
-Dseccomp=$(usex seccomp enabled disabled)
-Dsynctex=$(usex synctex enabled disabled)
)
meson_src_configure
}
src_test() {
virtx meson_src_test
}
src_install() {
meson_src_install
}
|