Diff slurp-1.4.0 with a slurp-9999

/usr/portage/gui-apps/slurp/slurp-9999.ebuild 2023-10-09 14:52:31.172368393 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=8
4
EAPI=7
5 5

  
6 6
inherit meson
7 7

  
......
13 13
	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
14 14
else
15 15
	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
16
	KEYWORDS="~amd64 ~arm64"
17 17
fi
18 18

  
19 19
LICENSE="MIT"
......
24 24
	>=dev-libs/wayland-protocols-1.14
25 25
	dev-libs/wayland
26 26
	x11-libs/cairo
27
	x11-libs/libxkbcommon
28
"
27
	x11-libs/libxcb"
28

  
29 29
RDEPEND="${DEPEND}"
30 30

  
31
if [[ ${PV} == 9999 ]]; then
32
	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
33
else
34
	BDEPEND+="man? ( app-text/scdoc )"
35
fi
31
BDEPEND="man? ( ~app-text/scdoc-9999 )"
36 32

  
37 33
src_configure() {
38 34
	local emesonargs=(
Thank you!