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-farstream: ChangeLog telepathy-farstream-0.6.0.ebuild telepathy-farstream-0.1.2.ebuild
Date: Wed, 26 Dec 2012 22:53:36
Message-Id: 20121226225325.D213E2171D@flycatcher.gentoo.org
1 eva 12/12/26 22:53:25
2
3 Modified: ChangeLog
4 Added: telepathy-farstream-0.6.0.ebuild
5 Removed: telepathy-farstream-0.1.2.ebuild
6 Log:
7 Version bump. Clean up old revision.
8
9 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key C6085806)
10
11 Revision Changes Path
12 1.11 net-libs/telepathy-farstream/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farstream/ChangeLog?rev=1.11&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farstream/ChangeLog?rev=1.11&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farstream/ChangeLog?r1=1.10&r2=1.11
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/ChangeLog,v
21 retrieving revision 1.10
22 retrieving revision 1.11
23 diff -u -r1.10 -r1.11
24 --- ChangeLog 23 Dec 2012 18:07:27 -0000 1.10
25 +++ ChangeLog 26 Dec 2012 22:53:25 -0000 1.11
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/telepathy-farstream
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/ChangeLog,v 1.10 2012/12/23 18:07:27 maekke Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/ChangeLog,v 1.11 2012/12/26 22:53:25 eva Exp $
31 +
32 +*telepathy-farstream-0.6.0 (26 Dec 2012)
33 +
34 + 26 Dec 2012; Gilles Dartiguelongue <eva@g.o>
35 + -telepathy-farstream-0.1.2.ebuild, +telepathy-farstream-0.6.0.ebuild:
36 + Version bump. Clean up old revision.
37
38 23 Dec 2012; Markus Meier <maekke@g.o>
39 telepathy-farstream-0.4.0.ebuild:
40
41
42
43 1.1 net-libs/telepathy-farstream/telepathy-farstream-0.6.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farstream/telepathy-farstream-0.6.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farstream/telepathy-farstream-0.6.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: telepathy-farstream-0.6.0.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/net-libs/telepathy-farstream/telepathy-farstream-0.6.0.ebuild,v 1.1 2012/12/26 22:53:25 eva Exp $
53
54 EAPI="5"
55
56 inherit eutils
57
58 DESCRIPTION="Telepathy client library that uses Farstream to handle Call channels"
59 HOMEPAGE="http://telepathy.freedesktop.org"
60 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0/3"
64 KEYWORDS="~amd64 ~arm ~x86"
65 IUSE="examples +introspection"
66
67 RDEPEND="
68 >=dev-libs/glib-2.32:2
69 >=sys-apps/dbus-0.60
70 >=dev-libs/dbus-glib-0.60
71 media-libs/gstreamer:1.0[introspection?]
72 >=net-libs/telepathy-glib-0.19[introspection?]
73 net-libs/farstream:0.2[introspection?]
74 introspection? ( >=dev-libs/gobject-introspection-1.30 )
75 "
76 DEPEND="${RDEPEND}
77 >=dev-util/gtk-doc-am-1.17
78 virtual/pkgconfig
79 "
80
81 src_configure() {
82 econf \
83 --disable-static \
84 --disable-Werror \
85 $(use_enable introspection)
86 }
87
88 src_install() {
89 default
90 prune_libtool_files
91
92 if use examples; then
93 insinto /usr/share/doc/${PF}/examples
94 doins examples/*.c
95 insinto /usr/share/doc/${PF}/examples/python
96 doins examples/python/*.py
97 fi
98 }