From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-343210-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QJ7un-0000id-Tf
	for garchives@archives.gentoo.org; Sun, 08 May 2011 17:37:10 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 166451C03D;
	Sun,  8 May 2011 17:36:53 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id D243B1C048
	for <gentoo-commits@lists.gentoo.org>; Sun,  8 May 2011 17:36:52 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 642BD1B4064
	for <gentoo-commits@lists.gentoo.org>; Sun,  8 May 2011 17:36:52 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 97EDB45C56
	for <gentoo-commits@lists.gentoo.org>; Sun,  8 May 2011 17:36:51 +0000 (UTC)
From: "Gilles Dartiguelongue" <eva@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" <eva@gentoo.org>
Message-ID: <80fba9c4e88f28aadf4a426b5e836ff7609dec17.eva@gentoo>
Subject: [gentoo-commits] proj/gnome:master commit in: x11-misc/colord/
X-VCS-Repository: proj/gnome
X-VCS-Files: x11-misc/colord/colord-0.1.7.ebuild
X-VCS-Directories: x11-misc/colord/
X-VCS-Committer: eva
X-VCS-Committer-Name: Gilles Dartiguelongue
X-VCS-Revision: 80fba9c4e88f28aadf4a426b5e836ff7609dec17
Date: Sun,  8 May 2011 17:36:51 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: e6a3aa1c35081a8ad32fffe43ad46f7d

commit:     80fba9c4e88f28aadf4a426b5e836ff7609dec17
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun May  8 17:34:49 2011 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun May  8 17:34:49 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D=
commit;h=3D80fba9c4

x11-misc/colord: Initial ebuild

---
 x11-misc/colord/colord-0.1.7.ebuild |   53 +++++++++++++++++++++++++++++=
++++++
 1 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/x11-misc/colord/colord-0.1.7.ebuild b/x11-misc/colord/colord=
-0.1.7.ebuild
new file mode 100644
index 0000000..aab708c
--- /dev/null
+++ b/x11-misc/colord/colord-0.1.7.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3D"3"
+
+inherit base
+
+DESCRIPTION=3D"system service to accurately color manage input and outpu=
t devices"
+HOMEPAGE=3D"http://colord.hughsie.com/"
+SRC_URI=3D"http://people.freedesktop.org/~hughsient/releases/${P}.tar.bz=
2"
+
+LICENSE=3D"GPL-2"
+SLOT=3D"0"
+KEYWORDS=3D"~amd64"
+IUSE=3D""
+
+# XXX: raise to libusb-1.0.9:1 when available
+RDEPEND=3D"
+	dev-db/sqlite:3
+	>=3Ddev-libs/glib-2.25.9:2
+	>=3Ddev-libs/libusb-1.0.8:1
+	media-gfx/sane-backends
+	media-libs/lcms:2
+	>=3Dsys-auth/polkit-0.97
+	sys-fs/udev[extras]
+"
+DEPEND=3D"${RDEPEND}
+	app-text/docbook-sgml-utils
+	dev-libs/libxslt
+	>=3Ddev-util/intltool-0.35
+	dev-util/pkgconfig
+	sys-devel/gettext
+"
+
+# FIXME: needs pre-installed dbus service files
+RESTRICT=3D"test"
+
+DOCS=3D(AUTHORS ChangeLog MAINTAINERS NEWS README TODO)
+
+src_configure() {
+	econf \
+		--disable-examples \
+		--disable-static \
+		--enable-polkit \
+		--enable-reverse \
+		--enable-sane
+}
+
+src_install() {
+	base_src_install
+	find "${D}" -name "*.la" -delete
+}