Diff gtkdiskfree-2.0.4_p20200224 with a gtkdiskfree-2.0.4_p20200224-r1

/usr/portage/app-admin/gtkdiskfree/gtkdiskfree-2.0.4_p20200224-r1.ebuild 2023-10-09 14:52:28.152368316 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
11 11

  
12 12
LICENSE="GPL-2+"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
14
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
15 15
IUSE="gtk2"
16 16

  
17
DEPEND="
17
RDEPEND="
18 18
	dev-libs/glib
19 19
	x11-libs/cairo
20 20
	x11-libs/gdk-pixbuf
21 21
	gtk2? ( x11-libs/gtk+:2 )
22 22
	!gtk2? ( x11-libs/gtk+:3 )"
23
RDEPEND="${DEPEND}"
23
DEPEND="${RDEPEND}
24
	x11-base/xorg-proto"
24 25
BDEPEND="sys-devel/gettext
25 26
	virtual/pkgconfig"
26 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-2.0.4-musl-setlocale.patch
30
)
31

  
27 32
src_configure() {
28 33
	if use gtk2 ; then
29 34
		econf $(use_with gtk2)
Thank you!