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/loudmouth: ChangeLog loudmouth-1.4.1.ebuild
Date: Thu, 31 Jul 2008 21:25:24
Message-Id: E1KOfeD-00046s-G8@stork.gentoo.org
1 eva 08/07/31 21:25:21
2
3 Modified: ChangeLog
4 Added: loudmouth-1.4.1.ebuild
5 Log:
6 bump to 1.4.1. do not fail if keepalive doesn't work. probably fixes bug #233409.
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.69 net-libs/loudmouth/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?rev=1.69&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?rev=1.69&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?r1=1.68&r2=1.69
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v
19 retrieving revision 1.68
20 retrieving revision 1.69
21 diff -u -r1.68 -r1.69
22 --- ChangeLog 24 Jul 2008 18:17:38 -0000 1.68
23 +++ ChangeLog 31 Jul 2008 21:25:20 -0000 1.69
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-libs/loudmouth
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v 1.68 2008/07/24 18:17:38 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v 1.69 2008/07/31 21:25:20 eva Exp $
29 +
30 +*loudmouth-1.4.1 (31 Jul 2008)
31 +
32 + 31 Jul 2008; Gilles Dartiguelongue <eva@g.o>
33 + +loudmouth-1.4.1.ebuild:
34 + bump to 1.4.1. do not fail if keepalive doesn't work.
35 + probably fixes bug #233409.
36
37 24 Jul 2008; Raúl Porcel <armin76@g.o> loudmouth-1.4.0.ebuild:
38 sparc/x86 stable wrt #232205
39
40
41
42 1.1 net-libs/loudmouth/loudmouth-1.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/loudmouth-1.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/loudmouth-1.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: loudmouth-1.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/loudmouth-1.4.1.ebuild,v 1.1 2008/07/31 21:25:20 eva Exp $
52
53 inherit gnome2
54
55 DESCRIPTION="Lightweight C Jabber library"
56 HOMEPAGE="http://www.loudmouth-project.org/"
57 SRC_URI="http://ftp.imendio.com/pub/imendio/${PN}/src/${P}.tar.bz2"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
62
63 IUSE="asyncns doc ssl debug test"
64
65 RDEPEND=">=dev-libs/glib-2.4
66 ssl? ( >=net-libs/gnutls-1.4.0 )"
67 # FIXME: can't build against system lib
68 # asyncns? ( net-libs/libasyncns )"
69 # openssl dropped because of bug #216705
70
71 DEPEND="${RDEPEND}
72 test? ( dev-libs/check )
73 dev-util/pkgconfig
74 doc? ( >=dev-util/gtk-doc-1 )"
75
76 DOCS="AUTHORS ChangeLog NEWS README"
77
78 pkg_setup() {
79 G2CONF="${G2CONF}
80 $(use_enable debug)
81 $(use_with asyncns)"
82
83 if use ssl; then
84 G2CONF="${G2CONF} --with-ssl=gnutls"
85 else
86 G2CONF="${G2CONF} --with-ssl=no"
87 fi
88 }