Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/vala: ChangeLog vala-0.14.2-r1.ebuild
Date: Sat, 04 Feb 2012 22:38:46
Message-Id: 20120204223836.403822004C@flycatcher.gentoo.org
1 tetromino 12/02/04 22:38:36
2
3 Modified: ChangeLog
4 Added: vala-0.14.2-r1.ebuild
5 Log:
6 Add cogl-pango vala bindings from 0.15.x, required for vala support in libchamplain-0.12.x (bug #402013).
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.86 dev-lang/vala/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.86&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.86&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?r1=1.85&r2=1.86
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v
20 retrieving revision 1.85
21 retrieving revision 1.86
22 diff -u -r1.85 -r1.86
23 --- ChangeLog 1 Feb 2012 02:55:39 -0000 1.85
24 +++ ChangeLog 4 Feb 2012 22:38:36 -0000 1.86
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-lang/vala
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.85 2012/02/01 02:55:39 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.86 2012/02/04 22:38:36 tetromino Exp $
30 +
31 +*vala-0.14.2-r1 (04 Feb 2012)
32 +
33 + 04 Feb 2012; Alexandre Rostovtsev <tetromino@g.o>
34 + +vala-0.14.2-r1.ebuild, +files/vala-0.14.2-cogl-pango-1.0.patch:
35 + Add cogl-pango vala bindings from 0.15.x, required for vala support in
36 + libchamplain-0.12.x (bug #402013).
37
38 *vala-0.14.2 (01 Feb 2012)
39
40
41
42
43 1.1 dev-lang/vala/vala-0.14.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.14.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.14.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: vala-0.14.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/vala-0.14.2-r1.ebuild,v 1.1 2012/02/04 22:38:36 tetromino Exp $
53
54 EAPI="4"
55 GCONF_DEBUG="no"
56 GNOME2_LA_PUNT="yes"
57
58 inherit autotools alternatives eutils gnome2
59
60 DESCRIPTION="Vala - Compiler for the GObject type system"
61 HOMEPAGE="http://live.gnome.org/Vala"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0.14"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-linux"
66 IUSE="test +vapigen"
67
68 RDEPEND=">=dev-libs/glib-2.16:2"
69 DEPEND="${RDEPEND}
70 !${CATEGORY}/${PN}:0
71 sys-devel/flex
72 || ( sys-devel/bison dev-util/byacc dev-util/yacc )
73 dev-util/pkgconfig
74 dev-libs/libxslt
75 test? (
76 dev-libs/dbus-glib
77 >=dev-libs/glib-2.26:2 )"
78
79 pkg_setup() {
80 G2CONF="${G2CONF}
81 --disable-unversioned
82 $(use_enable vapigen)"
83 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
84 }
85
86 src_prepare() {
87 # Patch from 0.15.x, needed for libchamplain:0.12, bug #402013,
88 # https://bugzilla.gnome.org/show_bug.cgi?id=669379
89 epatch "${FILESDIR}/${PN}-0.14.2-cogl-pango-1.0.patch"
90
91 eautoreconf
92 gnome2_src_prepare
93 }
94
95 src_install() {
96 gnome2_src_install
97
98 insinto /usr/share/aclocal
99 newins vala.m4 vala-${SLOT/./-}.m4
100 }
101
102 pkg_postinst() {
103 gnome2_pkg_postinst
104 alternatives_auto_makesym /usr/share/aclocal/vala.m4 "vala-0-[0-9][0-9].m4"
105 }
106
107 pkg_postrm() {
108 gnome2_pkg_postrm
109 alternatives_auto_makesym /usr/share/aclocal/vala.m4 "vala-0-[0-9][0-9].m4"
110 }