Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/clutter: ChangeLog clutter-1.2.12.ebuild
Date: Tue, 07 Sep 2010 20:05:22
Message-Id: 20100907200514.7121120051@flycatcher.gentoo.org
1 eva 10/09/07 20:05:14
2
3 Modified: ChangeLog
4 Added: clutter-1.2.12.ebuild
5 Log:
6 Version bump. Lots of bug fixes.
7
8 (Portage version: 2.2_rc74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 media-libs/clutter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 6 Jul 2010 16:07:34 -0000 1.3
24 +++ ChangeLog 7 Sep 2010 20:05:14 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/clutter
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v 1.3 2010/07/06 16:07:34 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v 1.4 2010/09/07 20:05:14 eva Exp $
30 +
31 +*clutter-1.2.12 (07 Sep 2010)
32 +
33 + 07 Sep 2010; Gilles Dartiguelongue <eva@g.o>
34 + +clutter-1.2.12.ebuild:
35 + Version bump. Lots of bug fixes.
36
37 06 Jul 2010; Samuli Suominen <ssuominen@g.o> clutter-1.2.10.ebuild:
38 Keyword ~ppc64 wrt #318691
39
40
41
42 1.1 media-libs/clutter/clutter-1.2.12.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/clutter-1.2.12.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/clutter-1.2.12.ebuild?rev=1.1&content-type=text/plain
46
47 Index: clutter-1.2.12.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/clutter/clutter-1.2.12.ebuild,v 1.1 2010/09/07 20:05:14 eva Exp $
52
53 EAPI="2"
54
55 inherit clutter
56
57 DESCRIPTION="Clutter is a library for creating graphical user interfaces"
58
59 SLOT="1.0"
60 KEYWORDS="~amd64 ~ppc64 ~x86"
61 IUSE="debug doc +gtk +introspection"
62
63 RDEPEND=">=dev-libs/glib-2.16
64 >=x11-libs/cairo-1.4
65 >=x11-libs/pango-1.20[introspection?]
66 >=dev-libs/json-glib-0.8[introspection?]
67
68 virtual/opengl
69 x11-libs/libX11
70 x11-libs/libXext
71 x11-libs/libXdamage
72 x11-libs/libXi
73 x11-proto/inputproto
74 >=x11-libs/libXfixes-3
75 >=x11-libs/libXcomposite-0.4
76
77 gtk? ( >=x11-libs/gtk+-2.0 )
78 "
79 DEPEND="${RDEPEND}
80 sys-devel/gettext
81 dev-util/pkgconfig
82 >=dev-util/gtk-doc-am-1.11
83 doc? (
84 >=dev-util/gtk-doc-1.11
85 >=app-text/docbook-sgml-utils-0.6.14[jadetex]
86 dev-libs/libxslt )
87 introspection? ( >=dev-libs/gobject-introspection-0.6.4 )"
88
89 src_configure() {
90 # XXX: Conformance test suite (and clutter itself) does not work under Xvfb
91 # XXX: Profiling, coverage disabled for now
92 # FIXME: Uses internal json-glib
93 local myconf="
94 --enable-debug=minimum
95 --enable-cogl-debug=minimum
96 --enable-conformance=no
97 --disable-gcov
98 --enable-profile=no
99 --enable-maintainer-flags=no
100 --enable-xinput
101 --with-json=system
102 --with-flavour=glx
103 --with-imagebackend=gdk-pixbuf
104 $(use_enable introspection)
105 $(use_enable doc docs)"
106
107 if ! use gtk; then
108 myconf="${myconf} --with-imagebackend=internal"
109 # Internal image backend is experimental
110 ewarn "You have selected the experimental internal image backend"
111 fi
112
113 if use debug; then
114 myconf="${myconf}
115 --enable-debug=yes
116 --enable-cogl-debug=yes"
117 fi
118
119 econf ${myconf}
120 }