Diff gkrellm-2.3.11-r1 with a gkrellm-2.3.11-r2

/usr/portage/app-admin/gkrellm/gkrellm-2.3.11-r2.ebuild 2023-10-09 14:52:28.152368316 +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 desktop systemd toolchain-funcs
7 7

  
......
9 9
HOMEPAGE="http://gkrellm.srcbox.net/"
10 10
if [[ "${PV}" == 9999 ]] ; then
11 11
	inherit git-r3
12
	EGIT_REPO_URI="https://git.srcbox.net/gkrellm"
12
	EGIT_REPO_URI="https://git.srcbox.net/gkrellm/gkrellm.git"
13 13
else
14 14
	SRC_URI="http://gkrellm.srcbox.net/releases/${P}.tar.bz2"
15 15
	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
......
39 39
		x11-libs/libSM
40 40
		x11-libs/libX11
41 41
		x11-libs/pango
42
		)"
43
DEPEND="${RDEPEND}
44
	nls? ( sys-devel/gettext )"
45

  
46
BDEPEND="
47
	virtual/pkgconfig
42
		)
48 43
"
44
DEPEND="
45
	${RDEPEND}
46
	x11-base/xorg-proto
47
	nls? ( sys-devel/gettext )
48
"
49

  
50
BDEPEND="virtual/pkgconfig"
49 51

  
50 52
PATCHES=(
51
	"${FILESDIR}"/${PN}-2.3.5-config.patch
52
	"${FILESDIR}"/${PN}-2.3.5-width.patch
53
	"${FILESDIR}"/${PN}-2.3.5-sansfont.patch
53
	"${FILESDIR}/${PN}-2.3.5-config.patch"
54
	"${FILESDIR}/${PN}-2.3.5-width.patch"
55
	"${FILESDIR}/${PN}-2.3.5-sansfont.patch"
54 56
)
55 57

  
56 58
DOCS=( Changelog CREDITS README )
Thank you!