Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/clutter: clutter-1.5.14.ebuild ChangeLog
Date: Mon, 24 Jan 2011 21:29:37
Message-Id: 20110124212926.B384520054@flycatcher.gentoo.org
1 nirbheek 11/01/24 21:29:26
2
3 Modified: ChangeLog
4 Added: clutter-1.5.14.ebuild
5 Log:
6 Bump to 1.5.14
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 media-libs/clutter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 12 Jan 2011 05:45:55 -0000 1.13
24 +++ ChangeLog 24 Jan 2011 21:29:26 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/clutter
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v 1.13 2011/01/12 05:45:55 nirbheek Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter/ChangeLog,v 1.14 2011/01/24 21:29:26 nirbheek Exp $
30 +
31 +*clutter-1.5.14 (24 Jan 2011)
32 +
33 + 24 Jan 2011; Nirbheek Chauhan <nirbheek@g.o>
34 + +clutter-1.5.14.ebuild:
35 + Bump to 1.5.14
36
37 *clutter-1.5.12 (12 Jan 2011)
38
39
40
41
42 1.1 media-libs/clutter/clutter-1.5.14.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/clutter-1.5.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter/clutter-1.5.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: clutter-1.5.14.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.5.14.ebuild,v 1.1 2011/01/24 21:29:26 nirbheek 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 +introspection"
62
63 # NOTE: glx flavour uses libdrm + >=mesa-7.3
64 # We always use the gdk-pixbuf backend now since it's been split out
65 RDEPEND=">=dev-libs/glib-2.26
66 >=x11-libs/cairo-1.10
67 >=x11-libs/pango-1.20[introspection?]
68 >=dev-libs/json-glib-0.12[introspection?]
69 >=dev-libs/atk-1.7
70
71 virtual/opengl
72 x11-libs/libdrm
73 x11-libs/libX11
74 x11-libs/libXext
75 x11-libs/libXdamage
76 x11-proto/inputproto
77 >=x11-libs/libXi-1.3
78 >=x11-libs/libXfixes-3
79 >=x11-libs/libXcomposite-0.4
80
81 || ( x11-libs/gdk-pixbuf
82 >=x11-libs/gtk+-2.0 )
83
84 introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
85 "
86 DEPEND="${RDEPEND}
87 sys-devel/gettext
88 dev-util/pkgconfig
89 >=dev-util/gtk-doc-am-1.13
90 doc? (
91 >=dev-util/gtk-doc-1.13
92 >=app-text/docbook-sgml-utils-0.6.14[jadetex]
93 dev-libs/libxslt )
94 "
95 DOCS="AUTHORS README NEWS ChangeLog*"
96
97 src_configure() {
98 # We only need conformance tests, the rest are useless for us
99 sed -e 's/^\(SUBDIRS =\).*/\1/g' \
100 -i tests/Makefile.am || die "am tests sed failed"
101 sed -e 's/^\(SUBDIRS =\).*/\1/g' \
102 -i tests/Makefile.in || die "in tests sed failed"
103
104 # XXX: Conformance test suite (and clutter itself) does not work under Xvfb
105 # XXX: Profiling, coverage disabled for now
106 # XXX: What about eglx/eglnative/opengl-egl-xlib/osx/wayland/etc flavours?
107 # Uses gudev-1.0 and libxkbcommon for eglnative/cex1000
108 local myconf="
109 --enable-debug=minimum
110 --enable-cogl-debug=minimum
111 --enable-conformance=no
112 --disable-gcov
113 --enable-profile=no
114 --enable-maintainer-flags=no
115 --enable-xinput
116 --with-flavour=glx
117 --with-imagebackend=gdk-pixbuf
118 $(use_enable introspection)
119 $(use_enable doc docs)"
120
121 if use debug; then
122 myconf="${myconf}
123 --enable-debug=yes
124 --enable-cogl-debug=yes"
125 fi
126
127 econf ${myconf}
128 }