Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-glib: ChangeLog telepathy-glib-0.12.3.ebuild
Date: Wed, 03 Nov 2010 21:07:39
Message-Id: 20101103210734.DEFA62004B@flycatcher.gentoo.org
1 ford_prefect 10/11/03 21:07:34
2
3 Modified: ChangeLog
4 Added: telepathy-glib-0.12.3.ebuild
5 Log:
6 Bump to 0.12.3 - small fixes and a bunch of bug fixese since 0.12.0. Also, don't let USE=debug control --enable-debug - this is only enables conditionally enabled code to get debugging output (which upstream needs to actually debug any issues remotely).
7
8 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.55 net-libs/telepathy-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.55&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.55&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?r1=1.54&r2=1.55
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v
20 retrieving revision 1.54
21 retrieving revision 1.55
22 diff -u -r1.54 -r1.55
23 --- ChangeLog 13 Oct 2010 21:49:50 -0000 1.54
24 +++ ChangeLog 3 Nov 2010 21:07:34 -0000 1.55
25 @@ -1,6 +1,15 @@
26 # ChangeLog for net-libs/telepathy-glib
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.54 2010/10/13 21:49:50 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.55 2010/11/03 21:07:34 ford_prefect Exp $
30 +
31 +*telepathy-glib-0.12.3 (03 Nov 2010)
32 +
33 + 03 Nov 2010; Arun Raghavan <ford_prefect@g.o>
34 + +telepathy-glib-0.12.3.ebuild:
35 + Bump to 0.12.3 - small fixes and a bunch of bug fixese since 0.12.0. Also,
36 + don't let USE=debug control --enable-debug - this is only enables
37 + conditionally enabled code to get debugging output (which upstream needs
38 + to actually debug any issues remotely).
39
40 13 Oct 2010; Gilles Dartiguelongue <eva@g.o>
41 telepathy-glib-0.12.0.ebuild, metadata.xml:
42
43
44
45 1.1 net-libs/telepathy-glib/telepathy-glib-0.12.3.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.12.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.12.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: telepathy-glib-0.12.3.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.12.3.ebuild,v 1.1 2010/11/03 21:07:34 ford_prefect Exp $
55
56 EAPI="2"
57 PYTHON_DEPEND="2:2.5"
58
59 inherit python
60
61 DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol."
62 HOMEPAGE="http://telepathy.freedesktop.org"
63 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68 IUSE="debug +introspection vala"
69
70 RDEPEND=">=dev-libs/glib-2.24
71 >=dev-libs/dbus-glib-0.82
72 introspection? ( >=dev-libs/gobject-introspection-0.6.14 )
73 vala? (
74 dev-lang/vala:0.10[vapigen]
75 >=dev-libs/gobject-introspection-0.9.6 )
76 "
77 DEPEND="${RDEPEND}
78 dev-libs/libxslt
79 >=dev-util/pkgconfig-0.21"
80
81 pkg_setup() {
82 python_set_active_version 2
83 python_pkg_setup
84 }
85
86 src_configure() {
87 local myconf
88
89 if use vala; then
90 myconf="--enable-introspection
91 VALAC=$(type -p valac-0.10)
92 VAPIGEN=$(type -p vapigen-0.10)"
93 fi
94
95 econf \
96 $(use_enable debug backtrace) \
97 $(use_enable debug handle-leak-debug) \
98 $(use_enable introspection) \
99 $(use_enable vala vala-bindings) \
100 ${myconf}
101 }
102
103 src_test() {
104 if ! dbus-launch emake -j1 check; then
105 die "Make check failed. See above for details."
106 fi
107 }
108
109 src_install() {
110 emake install DESTDIR="${D}" || die "emake install failed"
111 dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
112 }