Diff grsync-1.3.0 with a grsync-1.3.1

/usr/portage/x11-misc/grsync/grsync-1.3.1.ebuild 2023-10-09 14:52:35.936368513 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
5
inherit autotools xdg
4
EAPI=8
5
inherit xdg
6 6

  
7 7
DESCRIPTION="A gtk frontend to rsync"
8 8
HOMEPAGE="http://www.opbyte.it/grsync/"
......
10 10

  
11 11
LICENSE="GPL-2"
12 12
SLOT="0"
13
KEYWORDS="amd64 ppc ppc64 x86"
13
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
14 14
IUSE="+gtk3"
15 15

  
16 16
DEPEND="
......
23 23

  
24 24
DOCS="AUTHORS NEWS README"
25 25

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

  
29
src_prepare() {
30
	default
31
	eautoreconf
32
}
33

  
34 26
src_configure() {
35 27
	econf --disable-unity $(use_enable gtk3)
36 28
}
Thank you!