Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xiccd/
Date: Tue, 29 Nov 2016 10:29:05
Message-Id: 1480415235.c0723dac553fe33194d84eb4e4b32d012ffc03bb.marecki@gentoo
1 commit: c0723dac553fe33194d84eb4e4b32d012ffc03bb
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 10:26:58 2016 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 10:27:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0723dac
7
8 x11-misc/xiccd: new package
9
10 A desktop environment-free equivalent of the gnome-settings-daemon colord
11 plug-in, colord-kde and so on.
12
13 Package-Manager: portage-2.3.2
14
15 x11-misc/xiccd/Manifest | 1 +
16 x11-misc/xiccd/metadata.xml | 19 +++++++++++++++++++
17 x11-misc/xiccd/xiccd-0.2.3.ebuild | 25 +++++++++++++++++++++++++
18 3 files changed, 45 insertions(+)
19
20 diff --git a/x11-misc/xiccd/Manifest b/x11-misc/xiccd/Manifest
21 new file mode 100644
22 index 00000000..0511572
23 --- /dev/null
24 +++ b/x11-misc/xiccd/Manifest
25 @@ -0,0 +1 @@
26 +DIST xiccd-0.2.3.tar.gz 30136 SHA256 b455cd08ad917b40cb89971e93ccc6f13f98e13e4c07be585499c8abecece993 SHA512 2c68c5de95dd6390c4196e198c63a78f82903d4f1210b98b8e67ee7b0ebc5d06e21e553288e2ced26c2df9c232c0b6fd1972308bf0a0e31dbdfae8ec208a86ec WHIRLPOOL b6648d378c38ebf5a4c383cf6ccc3f500d84962f07c49ffd296b7b57799b4c546784c8bc9b7ebeb49df9f110836132e3832be526936d8b2e78f76a31edc7ca3e
27
28 diff --git a/x11-misc/xiccd/metadata.xml b/x11-misc/xiccd/metadata.xml
29 new file mode 100644
30 index 00000000..0f9feee
31 --- /dev/null
32 +++ b/x11-misc/xiccd/metadata.xml
33 @@ -0,0 +1,19 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>marecki@g.o</email>
39 + <name>Marek Szuba</name>
40 + </maintainer>
41 + <longdescription lang="en">
42 + xiccd enumerates displays and register them in colord, creates default
43 + ICC profiles based on EDID data, applies ICC profiles provided by
44 + colord, and maintains user's private ICC storage directory. It does
45 + basically the same as <pkg>gnome-base/gnome-settings-daemon</pkg>
46 + colord plugin or <pkg>kde-misc/colord-kde</pkg> but does not depend on
47 + any particular desktop environment.
48 + </longdescription>
49 + <upstream>
50 + <remote-id type="github">agalakhov/xiccd</remote-id>
51 + </upstream>
52 +</pkgmetadata>
53
54 diff --git a/x11-misc/xiccd/xiccd-0.2.3.ebuild b/x11-misc/xiccd/xiccd-0.2.3.ebuild
55 new file mode 100644
56 index 00000000..969007c
57 --- /dev/null
58 +++ b/x11-misc/xiccd/xiccd-0.2.3.ebuild
59 @@ -0,0 +1,25 @@
60 +# Copyright 1999-2016 Gentoo Foundation
61 +# Distributed under the terms of the GNU General Public License v2
62 +# $Id$
63 +
64 +EAPI=6
65 +
66 +inherit autotools
67 +
68 +DESCRIPTION="A desktop environment-independent bridge between colord and X"
69 +HOMEPAGE="https://github.com/agalakhov/xiccd"
70 +SRC_URI="https://github.com/agalakhov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
71 +
72 +LICENSE="GPL-3+"
73 +SLOT="0"
74 +KEYWORDS="~amd64"
75 +
76 +RDEPEND="dev-libs/glib:2
77 + x11-apps/xrandr
78 + x11-misc/colord"
79 +DEPEND="${RDEPEND}"
80 +
81 +src_prepare() {
82 + default
83 + eautoreconf
84 +}