Gentoo Archives: gentoo-commits

From: Chi-Thanh Christopher Nguyen <chithanh@××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/x11:master commit in: x11-libs/xcb-util-cursor/, profiles/
Date: Fri, 04 Oct 2013 15:43:46
Message-Id: 1380901367.fdb17c294eb6fafa41a43aafb29c99dad455e3dc.chithead@gentoo
1 commit: fdb17c294eb6fafa41a43aafb29c99dad455e3dc
2 Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 4 15:42:47 2013 +0000
4 Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
5 CommitDate: Fri Oct 4 15:42:47 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=fdb17c29
7
8 x11-libs/xcb-util-cursor: initial commit
9
10 ---
11 profiles/package.mask | 1 +
12 x11-libs/xcb-util-cursor/metadata.xml | 5 ++++
13 .../xcb-util-cursor/xcb-util-cursor-9999.ebuild | 34 ++++++++++++++++++++++
14 3 files changed, 40 insertions(+)
15
16 diff --git a/profiles/package.mask b/profiles/package.mask
17 index b61c086..323b25b 100644
18 --- a/profiles/package.mask
19 +++ b/profiles/package.mask
20 @@ -81,6 +81,7 @@
21 =x11-libs/pixman-9999
22 =x11-libs/startup-notification-9999
23 =x11-libs/xcb-util-9999
24 +=x11-libs/xcb-util-cursor-9999
25 =x11-libs/xcb-util-image-9999
26 =x11-libs/xcb-util-keysyms-9999
27 =x11-libs/xcb-util-renderutil-9999
28
29 diff --git a/x11-libs/xcb-util-cursor/metadata.xml b/x11-libs/xcb-util-cursor/metadata.xml
30 new file mode 100644
31 index 0000000..01c4c00
32 --- /dev/null
33 +++ b/x11-libs/xcb-util-cursor/metadata.xml
34 @@ -0,0 +1,5 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 +<herd>x11</herd>
39 +</pkgmetadata>
40
41 diff --git a/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild b/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild
42 new file mode 100644
43 index 0000000..2a97dea
44 --- /dev/null
45 +++ b/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild
46 @@ -0,0 +1,34 @@
47 +# Copyright 1999-2012 Gentoo Foundation
48 +# Distributed under the terms of the GNU General Public License v2
49 +# $Header: $
50 +
51 +EAPI=4
52 +
53 +XORG_MODULE=/
54 +XORG_BASE_INDIVIDUAL_URI=http://xcb.freedesktop.org/dist
55 +XORG_DOC=doc
56 +inherit xorg-2
57 +
58 +EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/util-cursor"
59 +EGIT_HAS_SUBMODULES=yes
60 +
61 +DESCRIPTION="X C-language Bindings sample implementations"
62 +HOMEPAGE="http://xcb.freedesktop.org/"
63 +
64 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
65 +IUSE="test"
66 +
67 +RDEPEND=">=x11-libs/xcb-util-${PV}
68 + x11-proto/xcb-proto
69 + x11-proto/xproto"
70 +DEPEND="${RDEPEND}
71 + >=dev-util/gperf-3.0.1
72 + test? ( >=dev-libs/check-0.9.4 )"
73 +
74 +pkg_setup() {
75 + XORG_CONFIGURE_OPTIONS=(
76 + $(use_with doc doxygen)
77 + )
78 +
79 + xorg-2_pkg_setup
80 +}