Diff flameshot-0.10.2 with a flameshot-11.0.0

/usr/portage/media-gfx/flameshot/flameshot-11.0.0.ebuild 2023-10-09 14:52:31.624368404 +0300
1
# Copyright 2022 Gentoo Authors
1
# Copyright 2021-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
11 11

  
12 12
LICENSE="Apache-2.0 Free-Art-1.3 GPL-3+"
13 13
SLOT="0"
14
KEYWORDS="amd64 x86"
14
KEYWORDS="~amd64 ~x86"
15 15

  
16 16
DEPEND="
17 17
	dev-qt/qtcore:5
......
22 22
	dev-qt/qtnetwork:5
23 23
	dev-qt/qtdbus:5
24 24
	sys-apps/dbus
25
	dev-libs/spdlog:=
26 25
"
27 26
BDEPEND="
28 27
	dev-qt/linguist-tools:5
......
30 29
RDEPEND="${DEPEND}"
31 30

  
32 31
src_prepare() {
33
	rm -r external/spdlog || die
34 32
	rm -r external/singleapplication || die
35 33

  
36 34
	cmake_src_prepare
......
38 36

  
39 37
src_configure() {
40 38
	local mycmakeargs=(
41
		-DUSE_EXTERNAL_SPDLOG=1
42 39
		-DUSE_EXTERNAL_SINGLEAPPLICATION=1
43 40
		-DENABLE_CACHE=0
44 41
	)
Thank you!