Diff seer-1.17 with a seer-2.0

/usr/portage/dev-util/seer/seer-2.0.ebuild 2023-10-09 14:52:31.000368388 +0300
13 13
else
14 14
	SRC_URI="https://github.com/epasveer/seer/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
15 15

  
16
	KEYWORDS="~amd64 ~arm64 ~ppc64"
16
	# Unkeyworded until tested a bit more
17
	#KEYWORDS="~amd64 ~arm64 ~ppc64"
17 18
fi
18 19

  
19 20
S="${WORKDIR}"/${P}/src
......
35 36
	sys-devel/gdb
36 37
"
37 38

  
39
src_configure() {
40
	local mycmakeargs=(
41
		# TODO: Support Qt 6 once it's unmasked
42
		# Note that >= 2.0 barely supports Qt 5, see https://github.com/epasveer/seer/wiki/Building-Seer---Qt5.
43
		-DQTVERSION=QT5
44
	)
45

  
46
	cmake_src_configure
47
}
48

  
38 49
src_install() {
39 50
	cmake_src_install
40 51

  
Thank you!