Diff xcb-2.4-r1 with a xcb-2.4-r2

/usr/portage/x11-misc/xcb/xcb-2.4-r2.ebuild 2023-10-09 14:52:35.952368513 +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
EAPI=6
4
EAPI=8
5

  
5 6
inherit toolchain-funcs
6 7

  
7 8
DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
......
10 11

  
11 12
LICENSE="BSD"
12 13
SLOT="0"
13
KEYWORDS="~alpha amd64 ~ppc ~riscv x86"
14
KEYWORDS="~alpha ~amd64 ~ppc ~riscv ~x86"
14 15
IUSE="motif"
15 16

  
16 17
RDEPEND="
......
18 19
	x11-libs/libXaw
19 20
	x11-libs/libXext
20 21
	x11-libs/libXt
22
	motif? ( >=x11-libs/motif-2.3:0 )
21 23
"
22 24
DEPEND="
23 25
	${RDEPEND}
24 26
	x11-base/xorg-proto
25
	motif? ( >=x11-libs/motif-2.3:0 )
26 27
"
27 28

  
29
PATCHES=(
30
	"${FILESDIR}"/${PN}-modern-c-porting.patch
31
)
32

  
28 33
src_compile() {
29 34
	local gui libs
30 35

  
Thank you!