Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-glib: ChangeLog telepathy-glib-0.7.33.ebuild telepathy-glib-0.7.20.ebuild telepathy-glib-0.7.18.ebuild
Date: Wed, 05 Aug 2009 23:12:16
Message-Id: E1MYpeX-00053R-SV@stork.gentoo.org
1 eva 09/08/05 23:12:13
2
3 Modified: ChangeLog
4 Added: telepathy-glib-0.7.33.ebuild
5 Removed: telepathy-glib-0.7.20.ebuild
6 telepathy-glib-0.7.18.ebuild
7 Log:
8 Version bump. Update to latest telepathy-spec, bug fixes. Clean up old revisions.
9 (Portage version: 2.2_rc33/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.31 net-libs/telepathy-glib/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.31&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.31&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/telepathy-glib/ChangeLog?r1=1.30&r2=1.31
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v
21 retrieving revision 1.30
22 retrieving revision 1.31
23 diff -u -r1.30 -r1.31
24 --- ChangeLog 18 Jun 2009 13:02:44 -0000 1.30
25 +++ ChangeLog 5 Aug 2009 23:12:13 -0000 1.31
26 @@ -1,6 +1,16 @@
27 # ChangeLog for net-libs/telepathy-glib
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.30 2009/06/18 13:02:44 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.31 2009/08/05 23:12:13 eva Exp $
31 +
32 +*telepathy-glib-0.7.33 (05 Aug 2009)
33 +
34 + 05 Aug 2009; Gilles Dartiguelongue <eva@g.o>
35 + -telepathy-glib-0.7.18.ebuild, -telepathy-glib-0.7.20.ebuild,
36 + +telepathy-glib-0.7.33.ebuild,
37 + +files/telepathy-glib-0.7.33-fix-test.patch,
38 + +files/telepathy-glib-0.7.33-nobuildtest.patch:
39 + Version bump. Update to latest telepathy-spec, bug fixes. Clean up old
40 + revisions.
41
42 18 Jun 2009; Alexis Ballier <aballier@g.o>
43 telepathy-glib-0.7.31.ebuild:
44
45
46
47 1.1 net-libs/telepathy-glib/telepathy-glib-0.7.33.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.7.33.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.7.33.ebuild?rev=1.1&content-type=text/plain
51
52 Index: telepathy-glib-0.7.33.ebuild
53 ===================================================================
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.7.33.ebuild,v 1.1 2009/08/05 23:12:13 eva Exp $
57
58 EAPI="2"
59
60 inherit autotools eutils libtool
61
62 DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol."
63 HOMEPAGE="http://telepathy.freedesktop.org"
64 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
69 IUSE="debug doc"
70
71 RDEPEND=">=dev-libs/glib-2.16
72 >=dev-libs/dbus-glib-0.73
73 >=dev-lang/python-2.3"
74
75 DEPEND="${RDEPEND}
76 dev-libs/libxslt
77 >=dev-util/pkgconfig-0.21
78 dev-util/gtk-doc-am
79 doc? ( >=dev-util/gtk-doc-1.10 )"
80
81 src_prepare() {
82 # Make test suite pass, upstream bug #23164
83 epatch "${FILESDIR}/${P}-fix-test.patch"
84
85 # Do not build tests if not needed
86 epatch "${FILESDIR}/${P}-nobuildtest.patch"
87
88 #elibtoolize # for sane .so versionning on BSD
89 eautoreconf
90 }
91
92 src_configure() {
93 econf \
94 $(use_enable doc gtk-doc) \
95 $(use_enable debug) \
96 $(use_enable debug backtrace) \
97 $(use_enable debug handle-leak-debug) \
98 || die "econf failed"
99 }
100
101 src_test() {
102 if ! dbus-launch emake -j1 check; then
103 die "Make check failed. See above for details."
104 fi
105 }
106
107 src_install() {
108 emake install DESTDIR="${D}" || die "emake install failed"
109 dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
110 }