Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/clutter-gst: ChangeLog clutter-gst-1.4.4.ebuild
Date: Tue, 01 Nov 2011 06:31:16
Message-Id: 20111101063106.1EB3B2004B@flycatcher.gentoo.org
1 tetromino 11/11/01 06:31:06
2
3 Modified: ChangeLog
4 Added: clutter-gst-1.4.4.ebuild
5 Log:
6 Bump. Build system changes only. DISABLE_DEPRECATED flags were removed by upstream. Do not set PYTHON_DEPEND, it makes python into a runtime dependency.
7
8 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 media-libs/clutter-gst/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter-gst/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter-gst/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter-gst/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 15 Oct 2011 22:59:07 -0000 1.17
24 +++ ChangeLog 1 Nov 2011 06:31:05 -0000 1.18
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-libs/clutter-gst
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/ChangeLog,v 1.17 2011/10/15 22:59:07 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/ChangeLog,v 1.18 2011/11/01 06:31:05 tetromino Exp $
30 +
31 +*clutter-gst-1.4.4 (01 Nov 2011)
32 +
33 + 01 Nov 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +clutter-gst-1.4.4.ebuild:
35 + Bump. Build system changes only. DISABLE_DEPRECATED flags were removed by
36 + upstream. Do not set PYTHON_DEPEND, it makes python into a runtime
37 + dependency.
38
39 *clutter-gst-1.4.2 (15 Oct 2011)
40
41
42
43
44 1.1 media-libs/clutter-gst/clutter-gst-1.4.4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter-gst/clutter-gst-1.4.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/clutter-gst/clutter-gst-1.4.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: clutter-gst-1.4.4.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/clutter-gst-1.4.4.ebuild,v 1.1 2011/11/01 06:31:06 tetromino Exp $
54
55 EAPI="4"
56 GCONF_DEBUG="yes"
57 CLUTTER_LA_PUNT="yes"
58
59 # inherit clutter after gnome2 so that defaults aren't overriden
60 # inherit gnome.org in the end so we use gnome mirrors and get the xz tarball
61 # no PYTHON_DEPEND, python2 is just a build-time dependency
62 inherit python gnome2 clutter gnome.org
63
64 DESCRIPTION="GStreamer Integration library for Clutter"
65
66 SLOT="1.0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc examples +introspection"
69
70 RDEPEND="
71 >=dev-libs/glib-2.20:2
72 >=media-libs/clutter-1.4.0:1.0[introspection?]
73 >=media-libs/gstreamer-0.10.26:0.10[introspection?]
74 media-libs/gst-plugins-base:0.10[introspection?]
75 introspection? ( >=dev-libs/gobject-introspection-0.6.8 )"
76 DEPEND="${RDEPEND}
77 =dev-lang/python-2*
78 doc? ( >=dev-util/gtk-doc-1.8 )"
79
80 pkg_setup() {
81 DOCS="AUTHORS NEWS README"
82 EXAMPLES="examples/{*.c,*.png,README}"
83 G2CONF="${G2CONF}
84 $(use_enable introspection)"
85
86 python_set_active_version 2
87 python_pkg_setup
88 }
89
90 src_compile() {
91 # Clutter tries to access dri without userpriv, upstream bug #661873
92 # Massive failure of a hack, see bug 360219, bug 360073, bug 363917
93 DISPLAY="999invalid" emake
94 }