Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/colord-gtk: colord-gtk-0.1.23.ebuild ChangeLog colord-gtk-0.1.22.ebuild
Date: Sun, 30 Sep 2012 09:33:28
Message-Id: 20120930093317.D319621600@flycatcher.gentoo.org
1 pacho 12/09/30 09:33:17
2
3 Modified: ChangeLog
4 Added: colord-gtk-0.1.23.ebuild
5 Removed: colord-gtk-0.1.22.ebuild
6 Log:
7 Version bump, drop old.
8
9 (Portage version: 2.1.11.23/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 x11-libs/colord-gtk/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/colord-gtk/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/colord-gtk/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/colord-gtk/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/colord-gtk/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 26 Aug 2012 02:08:12 -0000 1.3
25 +++ ChangeLog 30 Sep 2012 09:33:17 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/colord-gtk
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/colord-gtk/ChangeLog,v 1.3 2012/08/26 02:08:12 tetromino Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/colord-gtk/ChangeLog,v 1.4 2012/09/30 09:33:17 pacho Exp $
31 +
32 +*colord-gtk-0.1.23 (30 Sep 2012)
33 +
34 + 30 Sep 2012; Pacho Ramos <pacho@g.o> +colord-gtk-0.1.23.ebuild,
35 + -colord-gtk-0.1.22.ebuild:
36 + Version bump, drop old.
37
38 *colord-gtk-0.1.22-r1 (26 Aug 2012)
39
40 @@ -22,4 +28,3 @@
41 +metadata.xml:
42 New ebuild for colord's gtk support library, split off from x11-misc/colord;
43 prevents a circular dependency betweek gtk+[colord] and colord[gtk].
44 -
45
46
47
48 1.1 x11-libs/colord-gtk/colord-gtk-0.1.23.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/colord-gtk/colord-gtk-0.1.23.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/colord-gtk/colord-gtk-0.1.23.ebuild?rev=1.1&content-type=text/plain
52
53 Index: colord-gtk-0.1.23.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/x11-libs/colord-gtk/colord-gtk-0.1.23.ebuild,v 1.1 2012/09/30 09:33:17 pacho Exp $
58
59 EAPI="4"
60 VALA_MIN_API_VERSION="0.14"
61 VALA_USE_DEPEND="vapigen"
62
63 inherit autotools eutils vala
64
65 DESCRIPTION="GTK support library for colord"
66 HOMEPAGE="http://www.freedesktop.org/software/colord/"
67 SRC_URI="http://www.freedesktop.org/software/colord/releases/${P}.tar.xz"
68
69 LICENSE="LGPL-3"
70 SLOT="0"
71 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
72 IUSE="doc +introspection vala"
73 REQUIRED_USE="vala? ( introspection )"
74
75 COMMON_DEPEND=">=dev-libs/glib-2.28:2
76 >=media-libs/lcms-2.2:2
77 x11-libs/gdk-pixbuf:2[introspection?]
78 x11-libs/gtk+:3[X(+),introspection?]
79 x11-misc/colord[introspection?,vala?]
80 introspection? ( >=dev-libs/gobject-introspection-0.9.8 )"
81 # ${PN} was part of x11-misc/colord until 0.1.22
82 RDEPEND="${COMMON_DEPEND}
83 !<x11-misc/colord-0.1.22"
84 DEPEND="${COMMON_DEPEND}
85 app-arch/xz-utils
86 dev-libs/libxslt
87 >=dev-util/intltool-0.35
88 >=sys-devel/gettext-0.17
89 virtual/pkgconfig
90 doc? (
91 app-text/docbook-xml-dtd:4.1.2
92 >=dev-util/gtk-doc-1.9
93 )
94 vala? ( $(vala_depend) )"
95
96 RESTRICT="test" # Tests need a display device with a default color profile set
97
98 src_prepare() {
99 use vala && vala_src_prepare
100
101 # https://bugs.freedesktop.org/show_bug.cgi?id=55464
102 epatch "${FILESDIR}/${PN}-0.1.22-automagic-vala.patch"
103 eautoreconf
104 }
105
106 src_configure() {
107 econf \
108 --disable-static \
109 $(use_enable doc gtk-doc) \
110 $(use_enable introspection) \
111 $(use_enable vala)
112 }
113
114 src_install() {
115 default
116 prune_libtool_files
117 }