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-libs/xcb-util-cursor/
Date: Mon, 17 Aug 2020 00:09:20
Message-Id: 1597622936.bc26ba9906aa49e18d33d4a698c1743471d3c26b.mattst88@gentoo
1 commit: bc26ba9906aa49e18d33d4a698c1743471d3c26b
2 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com>
3 AuthorDate: Sat Aug 15 19:59:40 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 17 00:08:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc26ba99
7
8 x11-libs/xcb-util-cursor: EAPI 7
9
10 Drop the SRC_URI definitions since the eclass automates it.
11
12 Drop the git eclass variables since there is no live ebuild.
13
14 Drop the doc USE flag since it has no effect.
15
16 Drop the test flag since there are no tests.
17
18 Move the gperf dependency to BDEPEND so it is natively executable.
19
20 Rebuild on libxcb slot changes like every other xcb-util package.
21
22 Package-Manager: Portage-2.3.103, Repoman-2.3.23
23 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
24 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
25
26 .../xcb-util-cursor-0.1.3-r3.ebuild | 24 ++++++++++++++++++++++
27 1 file changed, 24 insertions(+)
28
29 diff --git a/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r3.ebuild b/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r3.ebuild
30 new file mode 100644
31 index 00000000000..c992d55d7cc
32 --- /dev/null
33 +++ b/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r3.ebuild
34 @@ -0,0 +1,24 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +XORG_MULTILIB=yes
41 +inherit xorg-3
42 +
43 +DESCRIPTION="X C-language Bindings sample implementations"
44 +HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/lib/libxcb-cursor"
45 +
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
47 +
48 +RDEPEND=">=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]
49 + >=x11-libs/xcb-util-image-0.3.9-r1[${MULTILIB_USEDEP}]
50 + >=x11-libs/xcb-util-renderutil-0.3.9[${MULTILIB_USEDEP}]"
51 +DEPEND="${RDEPEND}
52 + >=x11-base/xcb-proto-1.8-r3:=[${MULTILIB_USEDEP}]
53 + x11-base/xorg-proto"
54 +BDEPEND=">=dev-util/gperf-3.0.1"
55 +
56 +XORG_CONFIGURE_OPTIONS=(
57 + --with-cursorpath='~/.cursors:~/.icons:/usr/local/share/cursors/xorg-x11:/usr/local/share/cursors:/usr/local/share/icons:/usr/local/share/pixmaps:/usr/share/cursors/xorg-x11:/usr/share/cursors:/usr/share/pixmaps/xorg-x11:/usr/share/icons:/usr/share/pixmaps'
58 +)