Diff xfdesktop-4.18.1 with a xfdesktop-4.19.1

/usr/portage/xfce-base/xfdesktop/xfdesktop-4.19.1.ebuild 2023-10-09 14:52:36.008368514 +0300
14 14

  
15 15
LICENSE="GPL-2+"
16 16
SLOT="0"
17
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
18
IUSE="libnotify +thunar"
17
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
18
IUSE="libnotify +thunar wayland X"
19
REQUIRED_USE="|| ( wayland X )"
19 20

  
20 21
DEPEND="
21 22
	>=x11-libs/cairo-1.16
22 23
	>=dev-libs/glib-2.66.0
23
	>=x11-libs/gtk+-3.24.0:3
24
	>=x11-libs/libwnck-3.14:3
25
	x11-libs/libX11
24
	>=x11-libs/gtk+-3.24.0:3[wayland?,X?]
26 25
	>=xfce-base/exo-0.11:=
27 26
	>=xfce-base/garcon-0.6:=
28 27
	>=xfce-base/libxfce4ui-4.13:=
29 28
	>=xfce-base/libxfce4util-4.13:=
30
	>=xfce-base/xfconf-4.12.1:=
29
	>=xfce-base/libxfce4windowing-4.19.1:=
30
	>=xfce-base/xfconf-4.18.0:=
31 31
	libnotify? ( >=x11-libs/libnotify-0.7:= )
32 32
	thunar? ( >=xfce-base/thunar-4.17.10:= )
33
	wayland? ( >=gui-libs/gtk-layer-shell-0.7.0 )
34
	X? ( >=x11-libs/libX11-1.6.7 )
33 35
"
34 36
RDEPEND="
35 37
	${DEPEND}
36 38
"
37 39
BDEPEND="
38
	dev-util/intltool
39
	sys-devel/gettext
40
	dev-libs/glib
41
	dev-util/gdbus-codegen
42
	dev-util/glib-utils
43
	>=sys-devel/gettext-0.19.8
40 44
	virtual/pkgconfig
41 45
"
42 46

  
43 47
src_configure() {
44 48
	local myconf=(
49
		$(use_enable wayland)
50
		$(use_enable X x11)
45 51
		$(use_enable thunar file-icons)
46 52
		$(use_enable thunar thunarx)
47 53
		$(use_enable libnotify notifications)
Thank you!