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 ) 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 ; 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 ; 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 ; Sun, 8 May 2011 17:36:51 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" 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: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: e6a3aa1c35081a8ad32fffe43ad46f7d commit: 80fba9c4e88f28aadf4a426b5e836ff7609dec17 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun May 8 17:34:49 2011 +0000 Commit: Gilles Dartiguelongue gentoo 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 +}