Diff xdpyinfo-1.3.4 with a xdpyinfo-1.4.0

/usr/portage/x11-apps/xdpyinfo/xdpyinfo-1.4.0.ebuild 2025-07-29 16:22:17.964470355 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit xorg-3
6
inherit xorg-meson
7 7

  
8 8
DESCRIPTION="Display information utility for X"
9
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
10
IUSE="dga dmx xinerama"
9
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
10
IUSE="dga xinerama"
11 11

  
12 12
RDEPEND="
13 13
	x11-libs/libX11
14
	x11-libs/libxcb
14 15
	x11-libs/libXcomposite
15 16
	x11-libs/libXext
16 17
	x11-libs/libXi
18
	x11-libs/libXpresent
19
	x11-libs/libXrandr
17 20
	x11-libs/libXrender
18 21
	x11-libs/libXtst
19 22
	x11-libs/libXxf86vm
20
	x11-libs/libxcb
21 23
	dga? ( x11-libs/libXxf86dga )
22
	dmx? ( x11-libs/libdmx )
23 24
	xinerama? ( x11-libs/libXinerama )
24 25
"
25 26
DEPEND="${RDEPEND}
......
28 29

  
29 30
src_configure() {
30 31
	local XORG_CONFIGURE_OPTIONS=(
31
		--without-xf86misc
32
		$(use_with dga)
33
		$(use_with dmx)
34
		$(use_with xinerama)
32
		-Dxf86misc=disabled
33
		$(meson_feature dga)
34
		$(meson_feature xinerama)
35 35
	)
36
	xorg-3_src_configure
36
	xorg-meson_src_configure
37 37
}
Thank you!