Diff dmenu-5.1 with a dmenu-5.2

/usr/portage/x11-misc/dmenu/dmenu-5.2.ebuild 2023-10-09 14:52:35.932368513 +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
4
EAPI=8
5 5
inherit savedconfig toolchain-funcs
6 6

  
7 7
DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
......
10 10

  
11 11
LICENSE="MIT"
12 12
SLOT="0"
13
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
13
KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv x86"
14 14
IUSE="xinerama"
15 15

  
16 16
RDEPEND="
17 17
	media-libs/fontconfig
18 18
	x11-libs/libX11
19
	x11-libs/libXft
19
	>=x11-libs/libXft-2.3.5
20 20
	xinerama? ( x11-libs/libXinerama )
21 21
"
22 22
DEPEND="${RDEPEND}
......
25 25
BDEPEND="virtual/pkgconfig"
26 26

  
27 27
PATCHES=(
28
	"${FILESDIR}"/${PN}-4.9-gentoo.patch
28
	"${FILESDIR}"/${PN}-5.2-gentoo.patch
29 29
)
30 30

  
31 31
src_prepare() {
Thank you!