Diff tetzle-2.1.3-r1 with a tetzle-2.2.2

/usr/portage/games-board/tetzle/tetzle-2.2.2.ebuild 2023-10-09 14:52:31.080368390 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 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
inherit qmake-utils xdg
6
inherit cmake xdg
7 7

  
8 8
DESCRIPTION="Jigsaw puzzle game that uses tetrominoes for the pieces"
9 9
HOMEPAGE="https://gottcode.org/tetzle/"
10
SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
10
SRC_URI="https://gottcode.org/tetzle/${P}.tar.bz2"
11 11

  
12
LICENSE="GPL-3"
12
LICENSE="GPL-3+"
13 13
SLOT="0"
14
KEYWORDS="~amd64 ~x86"
15
IUSE=""
14
KEYWORDS="~amd64"
16 15

  
17
BDEPEND="
18
	dev-qt/linguist-tools:5
19
"
20
DEPEND="
21
	dev-qt/qtcore:5
22
	dev-qt/qtgui:5[-gles2-only]
23
	dev-qt/qtwidgets:5
24
"
25
RDEPEND="${DEPEND}"
26

  
27
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
28

  
29
src_configure() {
30
	eqmake5
31
}
32

  
33
src_install() {
34
	emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
35
	einstalldocs
36
}
16
RDEPEND="dev-qt/qtbase:6[gui,opengl,widgets,-gles2-only]"
17
DEPEND="${RDEPEND}"
18
BDEPEND="dev-qt/qttools:6[linguist]"
Thank you!