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