Diff zathura-0.5.2-r4 with a zathura-0.5.2-r5

/usr/portage/app-text/zathura/zathura-0.5.2-r5.ebuild 2023-10-09 14:52:28.904368335 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit meson virtualx xdg
7 7

  
......
15 15
else
16 16
	SRC_URI="
17 17
		https://github.com/pwmt/zathura/archive/${PV}.tar.gz -> ${P}.tar.gz
18
		https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-manpages.tar.xz
18
		https://cdn.turret.cyou/354c6d33bfd3bbc67c0047af1328498978eef352/${P}-manpages.tar.xz
19 19
	"
20
	KEYWORDS="amd64 arm ~riscv x86 ~amd64-linux ~x86-linux"
20
	KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
21 21
fi
22 22

  
23 23
LICENSE="ZLIB"
......
26 26

  
27 27
RESTRICT="!test? ( test )"
28 28

  
29
DEPEND=">=dev-libs/girara-0.3.7
29
DEPEND="
30
	>=dev-libs/girara-0.3.7
30 31
	>=dev-libs/glib-2.50:2
32
	sys-apps/file
31 33
	>=sys-devel/gettext-0.19.8
32 34
	x11-libs/cairo
33 35
	>=x11-libs/gtk+-3.22:3
34
	sys-apps/file
35 36
	seccomp? ( sys-libs/libseccomp )
36 37
	sqlite? ( >=dev-db/sqlite-3.5.9:3 )
37
	synctex? ( app-text/texlive-core )"
38

  
38
	synctex? ( app-text/texlive-core )
39
"
39 40
RDEPEND="${DEPEND}"
40

  
41 41
BDEPEND="
42
	test? ( dev-libs/appstream-glib
43
		dev-libs/check )
44
	virtual/pkgconfig"
42
	test? (
43
		dev-libs/appstream-glib
44
		dev-libs/check
45
		x11-base/xorg-server[xvfb]
46
	)
47
	virtual/pkgconfig
48
"
45 49

  
46 50
PATCHES=(
47 51
	"${FILESDIR}"/zathura-disable-seccomp-tests.patch
......
58 62
	meson_src_configure
59 63
}
60 64

  
61
src_install() {
62
	meson_src_install
63
	doman "${WORKDIR}"/man/zathura*
64
}
65

  
66 65
src_test() {
67 66
	virtx meson_src_test
68 67
}
68

  
69
src_install() {
70
	meson_src_install
71
	[[ ${PV} != *9999 ]] && doman "${WORKDIR}"/man/zathura*
72
}
Thank you!