Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-sofiasip: telepathy-sofiasip-0.5.18.ebuild ChangeLog
Date: Sun, 27 Sep 2009 18:07:59
Message-Id: E1MryA8-0003cR-BD@stork.gentoo.org
1 tester 09/09/27 18:07:56
2
3 Modified: ChangeLog
4 Added: telepathy-sofiasip-0.5.18.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 net-voip/telepathy-sofiasip/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 21 Aug 2009 21:21:13 -0000 1.5
23 +++ ChangeLog 27 Sep 2009 18:07:55 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-voip/telepathy-sofiasip
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog,v 1.5 2009/08/21 21:21:13 tester Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-sofiasip/ChangeLog,v 1.6 2009/09/27 18:07:55 tester Exp $
29 +
30 +*telepathy-sofiasip-0.5.18 (27 Sep 2009)
31 +
32 + 27 Sep 2009; Olivier CrĂȘte <tester@g.o>
33 + +telepathy-sofiasip-0.5.18.ebuild:
34 + Version bump
35
36 21 Aug 2009; Olivier CrĂȘte <tester@g.o>
37 -telepathy-sofiasip-0.5.14.ebuild, telepathy-sofiasip-0.5.17.ebuild:
38
39
40
41 1.1 net-voip/telepathy-sofiasip/telepathy-sofiasip-0.5.18.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-sofiasip/telepathy-sofiasip-0.5.18.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-voip/telepathy-sofiasip/telepathy-sofiasip-0.5.18.ebuild?rev=1.1&content-type=text/plain
45
46 Index: telepathy-sofiasip-0.5.18.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-sofiasip/telepathy-sofiasip-0.5.18.ebuild,v 1.1 2009/09/27 18:07:55 tester Exp $
51
52 inherit autotools
53
54 DESCRIPTION="A SIP connection manager for Telepathy based around the Sofia-SIP library."
55 HOMEPAGE="http://telepathy.freedesktop.org/"
56 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~x86 ~amd64"
61 IUSE="debug test"
62
63 RDEPEND=">=net-libs/sofia-sip-1.12.10
64 >=net-libs/telepathy-glib-0.7.27
65 >=dev-libs/glib-2.16
66 sys-apps/dbus
67 dev-libs/dbus-glib"
68
69 DEPEND="${RDEPEND}
70 dev-libs/libxslt
71 dev-lang/python
72 test? ( dev-python/twisted )"
73
74 src_unpack() {
75 unpack ${A}
76
77 cd "${S}"
78 sed -i -e "s/python2.5/python2.6 python2.5/" configure.ac
79 rm ltmain.sh m4/libtool.m4 m4/lt*.m4
80 eautoreconf
81 }
82
83 src_compile() {
84 econf $(use_enable debug) || die "econf failed"
85
86 emake || die "emake failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed"
91 dodoc AUTHORS ChangeLog NEWS README TODO
92 }