Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xdpyinfo/
Date: Thu, 07 Apr 2022 21:12:35
Message-Id: 1649365941.3cfff63ff50bc1493bd14a905a1b383f194b62ab.mattst88@gentoo
1 commit: 3cfff63ff50bc1493bd14a905a1b383f194b62ab
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 21:11:47 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 21:12:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cfff63f
7
8 x11-apps/xdpyinfo: Version bump to 1.3.3
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-apps/xdpyinfo/Manifest | 1 +
13 x11-apps/xdpyinfo/xdpyinfo-1.3.3.ebuild | 38 +++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/x11-apps/xdpyinfo/Manifest b/x11-apps/xdpyinfo/Manifest
17 index 1a78785a3fa4..c2f08be00f63 100644
18 --- a/x11-apps/xdpyinfo/Manifest
19 +++ b/x11-apps/xdpyinfo/Manifest
20 @@ -1 +1,2 @@
21 DIST xdpyinfo-1.3.2.tar.bz2 141351 BLAKE2B b2dee4f424dee902c31430b8843c14d6836508ee0125db7de41f5e9faef1732dea571e90b37638cc90dabd3995a0ceb5e4094707138b7e066ee1ae856258503c SHA512 2c9097c13778c7a7fe5a9b3ee04b28512ff6028231eca91ecdf6104c742be470678920d37a4f540fece7e39dccbea34802271f359ab80618027b2856c8912e7d
22 +DIST xdpyinfo-1.3.3.tar.xz 137088 BLAKE2B 8fdf49e65ac05ab27672ef2044044353f8bbfe0c8bf6135e71b9fbd45b3cb643f5794977802cbb7a44cfe9d20905b5e74b0cc41829c9fef837f32c81bb05ea2f SHA512 47fe0821bc64145876853712ebd7c0af80111c243813615b892429021cc9a53abd38c4684551ae300cb5a4eacdd3d26e2c93e789ed91a948b20e2c37cd2d2442
23
24 diff --git a/x11-apps/xdpyinfo/xdpyinfo-1.3.3.ebuild b/x11-apps/xdpyinfo/xdpyinfo-1.3.3.ebuild
25 new file mode 100644
26 index 000000000000..1be291758419
27 --- /dev/null
28 +++ b/x11-apps/xdpyinfo/xdpyinfo-1.3.3.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +XORG_TARBALL_SUFFIX="xz"
36 +inherit xorg-3
37 +
38 +DESCRIPTION="Display information utility for X"
39 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris ~x86-winnt"
40 +IUSE="dga dmx xinerama"
41 +
42 +RDEPEND="
43 + x11-libs/libX11
44 + x11-libs/libXcomposite
45 + x11-libs/libXext
46 + x11-libs/libXi
47 + x11-libs/libXrender
48 + x11-libs/libXtst
49 + x11-libs/libXxf86vm
50 + x11-libs/libxcb
51 + dga? ( x11-libs/libXxf86dga )
52 + dmx? ( x11-libs/libdmx )
53 + xinerama? ( x11-libs/libXinerama )
54 +"
55 +DEPEND="${RDEPEND}
56 + x11-base/xorg-proto
57 +"
58 +
59 +src_configure() {
60 + local XORG_CONFIGURE_OPTIONS=(
61 + --without-xf86misc
62 + $(use_with dga)
63 + $(use_with dmx)
64 + $(use_with xinerama)
65 + )
66 + xorg-3_src_configure
67 +}