From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 129D41381F3 for ; Fri, 4 Oct 2013 15:43:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E04BCE0807; Fri, 4 Oct 2013 15:43:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6420EE0807 for ; Fri, 4 Oct 2013 15:43:43 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B5B933EE60 for ; Fri, 4 Oct 2013 15:43:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2005EE5308 for ; Fri, 4 Oct 2013 15:43:41 +0000 (UTC) From: "Chi-Thanh Christopher Nguyen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chi-Thanh Christopher Nguyen" Message-ID: <1380901367.fdb17c294eb6fafa41a43aafb29c99dad455e3dc.chithead@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: x11-libs/xcb-util-cursor/, profiles/ X-VCS-Repository: proj/x11 X-VCS-Files: profiles/package.mask x11-libs/xcb-util-cursor/metadata.xml x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild X-VCS-Directories: x11-libs/xcb-util-cursor/ profiles/ X-VCS-Committer: chithead X-VCS-Committer-Name: Chi-Thanh Christopher Nguyen X-VCS-Revision: fdb17c294eb6fafa41a43aafb29c99dad455e3dc X-VCS-Branch: master Date: Fri, 4 Oct 2013 15:43:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c5aadd11-ce6f-413b-941e-b650d444b09d X-Archives-Hash: b6f989b0fde0ac8895454d33c60030e5 commit: fdb17c294eb6fafa41a43aafb29c99dad455e3dc Author: Chi-Thanh Christopher Nguyen gentoo org> AuthorDate: Fri Oct 4 15:42:47 2013 +0000 Commit: Chi-Thanh Christopher Nguyen cs tu-berlin de> CommitDate: Fri Oct 4 15:42:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=fdb17c29 x11-libs/xcb-util-cursor: initial commit --- profiles/package.mask | 1 + x11-libs/xcb-util-cursor/metadata.xml | 5 ++++ .../xcb-util-cursor/xcb-util-cursor-9999.ebuild | 34 ++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index b61c086..323b25b 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -81,6 +81,7 @@ =x11-libs/pixman-9999 =x11-libs/startup-notification-9999 =x11-libs/xcb-util-9999 +=x11-libs/xcb-util-cursor-9999 =x11-libs/xcb-util-image-9999 =x11-libs/xcb-util-keysyms-9999 =x11-libs/xcb-util-renderutil-9999 diff --git a/x11-libs/xcb-util-cursor/metadata.xml b/x11-libs/xcb-util-cursor/metadata.xml new file mode 100644 index 0000000..01c4c00 --- /dev/null +++ b/x11-libs/xcb-util-cursor/metadata.xml @@ -0,0 +1,5 @@ + + + +x11 + diff --git a/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild b/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild new file mode 100644 index 0000000..2a97dea --- /dev/null +++ b/x11-libs/xcb-util-cursor/xcb-util-cursor-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +XORG_MODULE=/ +XORG_BASE_INDIVIDUAL_URI=http://xcb.freedesktop.org/dist +XORG_DOC=doc +inherit xorg-2 + +EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/util-cursor" +EGIT_HAS_SUBMODULES=yes + +DESCRIPTION="X C-language Bindings sample implementations" +HOMEPAGE="http://xcb.freedesktop.org/" + +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" +IUSE="test" + +RDEPEND=">=x11-libs/xcb-util-${PV} + x11-proto/xcb-proto + x11-proto/xproto" +DEPEND="${RDEPEND} + >=dev-util/gperf-3.0.1 + test? ( >=dev-libs/check-0.9.4 )" + +pkg_setup() { + XORG_CONFIGURE_OPTIONS=( + $(use_with doc doxygen) + ) + + xorg-2_pkg_setup +}