commit: 8b39c3a10f9072f005e0e4d33f75712c14710d83
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 27 03:12:52 2025 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jul 27 03:21:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b39c3a1
x11-apps/xdpyinfo: Version bump to 1.4.0
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
x11-apps/xdpyinfo/Manifest | 1 +
x11-apps/xdpyinfo/xdpyinfo-1.4.0.ebuild | 37 +++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/x11-apps/xdpyinfo/Manifest b/x11-apps/xdpyinfo/Manifest
index 88625dbfb2cb..1e47c204b691 100644
--- a/x11-apps/xdpyinfo/Manifest
+++ b/x11-apps/xdpyinfo/Manifest
@@ -1 +1,2 @@
DIST xdpyinfo-1.3.4.tar.xz 137064 BLAKE2B
ea0e50d66c313e0f11164fe22cf9c46dcd9dafdcf0652895146a8f85e847e2f21ed2eb54f9512fd3a89657e44c6212b7c7de5359e304db660cfaa8c44a254356
SHA512
9ef9f5c10e15a40895e8f008896b960fdd438277657c7159d16f05db79cd2374cfaca4af2f4e59335824bfd2f74a045ef89dd99ea4130ed436ea59fbbb1cbe12
+DIST xdpyinfo-1.4.0.tar.xz 144060 BLAKE2B
43473141e8ad5e79750b64fd374598b192d51a3d4b14b2b60f48c2563fe88141ace7d2061f7b8e6e528d3b86081ced9887335bb6cd15f3ce13db5cb47d7089a3
SHA512
478dd3de58950eeca213a51820445e62a5a63b2fa9ff3505f22802a7980f855fc11f1465e57ff4c34cdf8df0a0ff3c576804ef44f11f3b52c1c9da4ecc5a62d3
diff --git a/x11-apps/xdpyinfo/xdpyinfo-1.4.0.ebuild
b/x11-apps/xdpyinfo/xdpyinfo-1.4.0.ebuild
new file mode 100644
index 000000000000..988aa429c4db
--- /dev/null
+++ b/x11-apps/xdpyinfo/xdpyinfo-1.4.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xorg-meson
+
+DESCRIPTION="Display information utility for X"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv
~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dga xinerama"
+
+RDEPEND="
+ x11-libs/libX11
+ x11-libs/libxcb
+ x11-libs/libXcomposite
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXpresent
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libXtst
+ x11-libs/libXxf86vm
+ dga? ( x11-libs/libXxf86dga )
+ xinerama? ( x11-libs/libXinerama )
+"
+DEPEND="${RDEPEND}
+ x11-base/xorg-proto
+"
+
+src_configure() {
+ local XORG_CONFIGURE_OPTIONS=(
+ -Dxf86misc=disabled
+ $(meson_feature dga)
+ $(meson_feature xinerama)
+ )
+ xorg-meson_src_configure
+}