Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-color-manager/
Date: Sun, 03 Jul 2016 17:01:49
Message-Id: 1467565296.d3725e9a6e327e90f647e68ff54edb38d50110aa.pacho@gentoo
1 commit: d3725e9a6e327e90f647e68ff54edb38d50110aa
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 17:01:10 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 17:01:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3725e9a
7
8 gnome-extra/gnome-color-manager: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 gnome-extra/gnome-color-manager/Manifest | 1 +
13 .../gnome-color-manager-3.20.0.ebuild | 65 ++++++++++++++++++++++
14 2 files changed, 66 insertions(+)
15
16 diff --git a/gnome-extra/gnome-color-manager/Manifest b/gnome-extra/gnome-color-manager/Manifest
17 index 958b756..14acb4e 100644
18 --- a/gnome-extra/gnome-color-manager/Manifest
19 +++ b/gnome-extra/gnome-color-manager/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-color-manager-3.18.0.tar.xz 2647648 SHA256 83d06f3b76b89b6c56bd6e4f792e15c67b561682fa9d59b60cbf716f6130a435 SHA512 4f1259681ee5f3762b1e4212e7b48c2caaa371d5cec00aa1ee4506f908310c8bbe4ff3e05e857707573475bfae0e61364d72c2d942d1d3fe5d978d2ca02c627c WHIRLPOOL 24e90187d17591450ac23da6afce3736e9380c2be75f0e3e7c470cebd5c849e8a40adf697cf42cc9269c419190379395d450fbe4a60eace40e16fe5ecf3ad8ae
22 +DIST gnome-color-manager-3.20.0.tar.xz 2661180 SHA256 fc4b8b075e79c1633ad935fb42e2aa06bf31a3e7e15360c705c771366e540793 SHA512 1c308fcf3f0d752f23fbbcd701272e05ede481260dffc77203d255b93da0278cd593558461309df0ea95d77b60c176c5ba2c695c27ec5042914a22272f033505 WHIRLPOOL 3ca5af3e491e7949f3af70611bcc304999d9afc4547442eb989d974aec4e95b993430eca9076f689e9239ee8bc88879c8773cb42574ed60c60913763e4f31158
23
24 diff --git a/gnome-extra/gnome-color-manager/gnome-color-manager-3.20.0.ebuild b/gnome-extra/gnome-color-manager/gnome-color-manager-3.20.0.ebuild
25 new file mode 100644
26 index 0000000..07dadcf
27 --- /dev/null
28 +++ b/gnome-extra/gnome-color-manager/gnome-color-manager-3.20.0.ebuild
29 @@ -0,0 +1,65 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit gnome2 virtualx
36 +
37 +DESCRIPTION="Color profile manager for the GNOME desktop"
38 +HOMEPAGE="https://git.gnome.org/browse/gnome-color-manager"
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="packagekit raw"
44 +
45 +# Need gtk+-3.3.8 for https://bugzilla.gnome.org/show_bug.cgi?id=673331
46 +RDEPEND="
47 + >=dev-libs/glib-2.31.10:2
48 + >=media-libs/lcms-2.2:2
49 + >=media-libs/libcanberra-0.10[gtk3]
50 + media-libs/libexif
51 + media-libs/tiff:0=
52 +
53 + >=x11-libs/gtk+-3.3.8:3
54 + >=x11-libs/vte-0.25.1:2.91
55 + >=x11-misc/colord-1.3.1:0=
56 + >=x11-libs/colord-gtk-0.1.20
57 +
58 + packagekit? ( app-admin/packagekit-base )
59 + raw? ( media-gfx/exiv2 )
60 +"
61 +# docbook-sgml-{utils,dtd:4.1} needed to generate man pages
62 +DEPEND="${RDEPEND}
63 + app-text/docbook-sgml-dtd:4.1
64 + app-text/docbook-sgml-utils
65 + dev-libs/appstream-glib
66 + dev-libs/libxslt
67 + >=dev-util/intltool-0.35
68 + dev-util/itstool
69 + virtual/pkgconfig
70 +"
71 +
72 +src_configure() {
73 + # Always enable tests since they are check_PROGRAMS anyway
74 + # appstream does not want to be relax by default !
75 + gnome2_src_configure \
76 + --disable-static \
77 + --enable-tests \
78 + $(use_enable packagekit) \
79 + $(use_enable raw exiv) \
80 + APPSTREAM_UTIL=$(type -P true)
81 +}
82 +
83 +src_test() {
84 + virtx emake check
85 +}
86 +
87 +pkg_postinst() {
88 + gnome2_pkg_postinst
89 +
90 + if ! has_version media-gfx/argyllcms ; then
91 + elog "If you want to do display or scanner calibration, you will need to"
92 + elog "install media-gfx/argyllcms"
93 + fi
94 +}