Diff marco-1.26.1 with a marco-1.26.2-r1

/usr/portage/x11-wm/marco/marco-1.26.2-r1.ebuild 2023-10-09 14:52:36.000368514 +0300
5 5

  
6 6
MATE2_LA_PUNT="yes"
7 7

  
8
inherit mate
8
inherit mate meson
9 9

  
10
KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
10
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
11 11

  
12 12
DESCRIPTION="MATE default window manager"
13 13
LICENSE="FDL-1.2+ GPL-2+ LGPL-2+ MIT"
......
33 33
	x11-libs/libXdamage
34 34
	x11-libs/libXext
35 35
	x11-libs/libXfixes
36
	x11-libs/libXi
36 37
	x11-libs/libXpresent
37 38
	x11-libs/libXrandr
38 39
	x11-libs/libXrender
40
	x11-libs/libXres
39 41
	>=x11-libs/startup-notification-0.7
40 42
	xinerama? ( x11-libs/libXinerama )
41 43
"
......
49 51
BDEPEND="${COMMON_DEPEND}
50 52
	app-text/yelp-tools
51 53
	>=sys-devel/gettext-0.19.8
52
	>=sys-devel/libtool-2.0.0
53 54
	virtual/pkgconfig
54 55
	x11-base/xorg-proto
55 56
	test? ( app-text/docbook-xml-dtd:4.5 )
......
57 58
"
58 59

  
59 60
src_configure() {
60
	mate_src_configure \
61
		--enable-compositor \
62
		--enable-render \
63
		--enable-shape \
64
		--enable-sm \
65
		--enable-xsync \
66
		$(use_enable startup-notification) \
67
		$(use_enable xinerama)
61
	local emesonargs=(
62
		-Dcompositor=true
63
		-Drender=true
64
		-Dshape=true
65
		-Dsm=true
66
		-Dxsync=true
67
		$(meson_use startup-notification)
68
		$(meson_use xinerama)
69
	)
70
	meson_src_configure
68 71
}
69 72

  
70 73
src_install() {
71
	mate_src_install
74
	meson_src_install
72 75
	dodoc doc/*.txt
73 76
}
Thank you!