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/cogl: ChangeLog cogl-1.10.2.ebuild
Date: Fri, 20 Apr 2012 07:10:27
Message-Id: 20120420071017.6A3B42004B@flycatcher.gentoo.org
1 tetromino 12/04/20 07:10:17
2
3 Modified: ChangeLog
4 Added: cogl-1.10.2.ebuild
5 Log:
6 Version bump with various bugfixes.
7
8 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 media-libs/cogl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/cogl/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/cogl/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/cogl/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/cogl/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 19 Apr 2012 20:40:32 -0000 1.6
24 +++ ChangeLog 20 Apr 2012 07:10:17 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/cogl
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/cogl/ChangeLog,v 1.6 2012/04/19 20:40:32 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/cogl/ChangeLog,v 1.7 2012/04/20 07:10:17 tetromino Exp $
30 +
31 +*cogl-1.10.2 (20 Apr 2012)
32 +
33 + 20 Apr 2012; Alexandre Rostovtsev <tetromino@g.o> +cogl-1.10.2.ebuild:
34 + Version bump with various bugfixes.
35
36 19 Apr 2012; Brent Baude <ranger@g.o> cogl-1.8.2.ebuild:
37 Marking cogl-1.8.2 ppc64 stable for bug 410611
38
39
40
41 1.1 media-libs/cogl/cogl-1.10.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/cogl/cogl-1.10.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/cogl/cogl-1.10.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cogl-1.10.2.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/cogl/cogl-1.10.2.ebuild,v 1.1 2012/04/20 07:10:17 tetromino Exp $
51
52 EAPI="4"
53 CLUTTER_LA_PUNT="yes"
54
55 # Inherit gnome2 after clutter to download sources from gnome.org
56 inherit clutter gnome2 virtualx
57
58 DESCRIPTION="A library for using 3D graphics hardware to draw pretty pictures"
59 HOMEPAGE="http://www.clutter-project.org/"
60
61 LICENSE="LGPL-2.1"
62 SLOT="1.0"
63 IUSE="doc examples +introspection +pango"
64 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
65
66 # XXX: need uprof for optional profiling support
67 COMMON_DEPEND=">=dev-libs/glib-2.28.0:2
68 x11-libs/cairo
69 >=x11-libs/gdk-pixbuf-2:2
70 x11-libs/libdrm
71 x11-libs/libX11
72 >=x11-libs/libXcomposite-0.4
73 x11-libs/libXdamage
74 x11-libs/libXext
75 >=x11-libs/libXfixes-3
76 virtual/opengl
77
78 introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
79 pango? ( >=x11-libs/pango-1.20.0[introspection?] )"
80 # before clutter-1.7, cogl was part of clutter
81 RDEPEND="${COMMON_DEPEND}
82 !<media-libs/clutter-1.7"
83 DEPEND="${COMMON_DEPEND}
84 dev-util/pkgconfig
85 sys-devel/gettext
86 doc? ( app-text/docbook-xml-dtd:4.1.2
87 >=dev-util/gtk-doc-1.13 )
88 test? ( media-libs/mesa[classic] )"
89 # Need classic mesa swrast for tests, llvmpipe causes a test failure
90
91 pkg_setup() {
92 DOCS="NEWS README"
93 EXAMPLES="examples/{*.c,*.jpg}"
94 # XXX: think about kms-egl, gles, quartz, sdl, wayland
95 G2CONF="${G2CONF}
96 --disable-examples-install
97 --disable-profile
98 --disable-maintainer-flags
99 --enable-cairo
100 --enable-gdk-pixbuf
101 --enable-gl
102 --enable-glib
103 --enable-glx
104 --enable-deprecated
105 $(use_enable introspection)
106 $(use_enable pango cogl-pango)"
107 }
108
109 src_test() {
110 # Use swrast for tests, llvmpipe is incomplete and "test_sub_texture" fails
111 # NOTE: recheck if this is needed after every mesa bump
112 LIBGL_DRIVERS_PATH=${EROOT}/usr/$(get_libdir)/mesa Xemake check
113 }
114
115 src_install() {
116 clutter_src_install
117
118 # Remove silly examples-data directory
119 rm -rvf "${ED}/usr/share/cogl/examples-data/" || die
120 }