Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: ChangeLog telepathy-gabble-0.7.7.ebuild telepathy-gabble-0.5.14.ebuild telepathy-gabble-0.7.5.ebuild telepathy-gabble-0.6.0.ebuild
Date: Mon, 04 Aug 2008 10:57:34
Message-Id: E1KPxkp-0002BI-PM@stork.gentoo.org
1 coldwind 08/08/04 10:57:31
2
3 Modified: ChangeLog
4 Added: telepathy-gabble-0.7.7.ebuild
5 Removed: telepathy-gabble-0.5.14.ebuild
6 telepathy-gabble-0.7.5.ebuild
7 telepathy-gabble-0.6.0.ebuild
8 Log:
9 Version bump, remove old.
10 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
11
12 Revision Changes Path
13 1.35 net-voip/telepathy-gabble/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.35&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.35&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.34&r2=1.35
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
22 retrieving revision 1.34
23 retrieving revision 1.35
24 diff -u -r1.34 -r1.35
25 --- ChangeLog 13 Jun 2008 17:23:49 -0000 1.34
26 +++ ChangeLog 4 Aug 2008 10:57:31 -0000 1.35
27 @@ -1,6 +1,13 @@
28 # ChangeLog for net-voip/telepathy-gabble
29 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.34 2008/06/13 17:23:49 coldwind Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.35 2008/08/04 10:57:31 coldwind Exp $
32 +
33 +*telepathy-gabble-0.7.7 (04 Aug 2008)
34 +
35 + 04 Aug 2008; Santiago M. Mola <coldwind@g.o>
36 + -telepathy-gabble-0.5.14.ebuild, -telepathy-gabble-0.6.0.ebuild,
37 + -telepathy-gabble-0.7.5.ebuild, +telepathy-gabble-0.7.7.ebuild:
38 + Version bump, remove old.
39
40 *telepathy-gabble-0.7.6 (13 Jun 2008)
41
42
43
44
45 1.1 net-voip/telepathy-gabble/telepathy-gabble-0.7.7.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.7.7.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.7.7.ebuild?rev=1.1&content-type=text/plain
49
50 Index: telepathy-gabble-0.7.7.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.7.7.ebuild,v 1.1 2008/08/04 10:57:31 coldwind Exp $
55
56 inherit eutils
57
58 DESCRIPTION="A Jabber/XMPP connection manager, this handles single and multi user chats and voice calls."
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"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug test"
66
67 RDEPEND=">=dev-libs/glib-2.10
68 >=dev-libs/dbus-glib-0.73
69 >=net-libs/telepathy-glib-0.7.13
70 dev-lang/python
71 >=net-libs/loudmouth-1.3.2"
72
73 DEPEND="${RDEPEND}
74 dev-libs/libxslt
75 test? ( dev-python/twisted
76 dev-python/twisted-words )"
77
78 pkg_setup() {
79 if ! built_with_use -o net-libs/loudmouth ssl gnutls ; then
80 eerror "${PN} needs net-libs/loudmouth built with"
81 eerror "USE='gnutls' or USE='ssl'."
82 die "No TLS support in net-libs/loudmouth"
83 fi
84 }
85
86 src_compile() {
87 econf \
88 $(use_enable debug) \
89 $(use_enable debug handle-leak-debug) \
90 || die "econf failed"
91 emake || die "emake failed"
92 }
93
94 src_test() {
95 emake -j1 check || die "Make check failed. See above for details."
96 }
97
98 src_install() {
99 emake install DESTDIR="${D}" || die "emake install failed"
100 dodoc AUTHORS NEWS ChangeLog
101 }