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/libchamplain: libchamplain-0.12.1.ebuild ChangeLog
Date: Sat, 04 Feb 2012 22:44:38
Message-Id: 20120204224428.9300C2004B@flycatcher.gentoo.org
1 tetromino 12/02/04 22:44:28
2
3 Modified: libchamplain-0.12.1.ebuild ChangeLog
4 Log:
5 Fix building vala bindings (bug #402013, thanks to Billy DeVincentis for reporting).
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 media-libs/libchamplain/libchamplain-0.12.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild?r1=1.1&r2=1.2
15
16 Index: libchamplain-0.12.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- libchamplain-0.12.1.ebuild 22 Dec 2011 23:38:36 -0000 1.1
23 +++ libchamplain-0.12.1.ebuild 4 Feb 2012 22:44:28 -0000 1.2
24 @@ -1,12 +1,12 @@
25 -# Copyright 1999-2011 Gentoo Foundation
26 +# Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild,v 1.1 2011/12/22 23:38:36 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/libchamplain-0.12.1.ebuild,v 1.2 2012/02/04 22:44:28 tetromino Exp $
30
31 EAPI="4"
32 GCONF_DEBUG="no"
33 GNOME2_LA_PUNT="yes"
34
35 -inherit gnome2
36 +inherit autotools eutils gnome2
37
38 DESCRIPTION="Clutter based world map renderer"
39 HOMEPAGE="http://blog.pierlux.com/projects/libchamplain/en/"
40 @@ -32,8 +32,9 @@
41 DEPEND="${RDEPEND}
42 dev-util/pkgconfig
43 doc? ( >=dev-util/gtk-doc-1.9 )
44 - vala? ( dev-lang/vala:0.14[vapigen] )"
45 + vala? ( >=dev-lang/vala-0.14.2-r1:0.14[vapigen] )"
46 # segfaults with vala:0.12
47 +# vala-0.14.2-r1 required for bug #402013
48
49 pkg_setup() {
50 DOCS="AUTHORS ChangeLog NEWS README"
51 @@ -52,6 +53,9 @@
52 }
53
54 src_prepare() {
55 + # bug #402013, https://bugzilla.gnome.org/show_bug.cgi?id=669378
56 + epatch "${FILESDIR}/${P}-vala-cogl-pango-1.0.patch"
57 +
58 # Fix documentation slotability
59 sed -e "s/^DOC_MODULE.*/DOC_MODULE = ${PN}-${SLOT}/" \
60 -i docs/reference/Makefile.{am,in} || die "sed (1) failed"
61 @@ -60,5 +64,6 @@
62 mv "${S}"/docs/reference/${PN}{,-${SLOT}}-docs.sgml || die "mv (1) failed"
63 mv "${S}"/docs/reference-gtk/${PN}-gtk{,-${SLOT}}-docs.sgml || die "mv (2) failed"
64
65 + eautoreconf
66 gnome2_src_prepare
67 }
68
69
70
71 1.24 media-libs/libchamplain/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?rev=1.24&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?rev=1.24&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?r1=1.23&r2=1.24
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v
80 retrieving revision 1.23
81 retrieving revision 1.24
82 diff -u -r1.23 -r1.24
83 --- ChangeLog 22 Dec 2011 23:38:36 -0000 1.23
84 +++ ChangeLog 4 Feb 2012 22:44:28 -0000 1.24
85 @@ -1,6 +1,12 @@
86 # ChangeLog for media-libs/libchamplain
87 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v 1.23 2011/12/22 23:38:36 eva Exp $
89 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v 1.24 2012/02/04 22:44:28 tetromino Exp $
91 +
92 + 04 Feb 2012; Alexandre Rostovtsev <tetromino@g.o>
93 + libchamplain-0.12.1.ebuild,
94 + +files/libchamplain-0.12.1-vala-cogl-pango-1.0.patch:
95 + Fix building vala bindings (bug #402013, thanks to Billy DeVincentis for
96 + reporting).
97
98 *libchamplain-0.12.1 (22 Dec 2011)