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.3.4.ebuild
Date: Sun, 23 Mar 2008 00:15:08
Message-Id: E1JdDrd-00066R-6q@stork.gentoo.org
1 eva 08/03/23 00:15:05
2
3 Modified: ChangeLog
4 Added: loudmouth-1.3.4.ebuild
5 Log:
6 bump to 1.3.4, introduce asyncns USE flag
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.55 net-libs/loudmouth/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?rev=1.55&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?rev=1.55&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/ChangeLog?r1=1.54&r2=1.55
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v
19 retrieving revision 1.54
20 retrieving revision 1.55
21 diff -u -r1.54 -r1.55
22 --- ChangeLog 18 Mar 2008 09:50:21 -0000 1.54
23 +++ ChangeLog 23 Mar 2008 00:15:04 -0000 1.55
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.54 2008/03/18 09:50:21 remi Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v 1.55 2008/03/23 00:15:04 eva Exp $
29 +
30 +*loudmouth-1.3.4 (22 Mar 2008)
31 +
32 + 22 Mar 2008; Gilles Dartiguelongue <eva@g.o>
33 + +loudmouth-1.3.4.ebuild:
34 + bump to 1.3.4, introduce asyncns USE flag
35
36 18 Mar 2008; RĂ©mi Cardona <remi@g.o> loudmouth-1.2.3.ebuild,
37 loudmouth-1.3.3.ebuild:
38
39
40
41 1.1 net-libs/loudmouth/loudmouth-1.3.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/loudmouth-1.3.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/loudmouth/loudmouth-1.3.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: loudmouth-1.3.4.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.3.4.ebuild,v 1.1 2008/03/23 00:15:04 eva Exp $
51
52 inherit gnome2
53
54 DESCRIPTION="Lightweight C Jabber library"
55 HOMEPAGE="http://www.loudmouth-project.org/"
56 SRC_URI="http://ftp.imendio.com/pub/imendio/${PN}/src/${P}.tar.bz2"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
61
62 IUSE="asyncns doc gnutls ssl debug test"
63
64 RDEPEND=">=dev-libs/glib-2.4
65 ssl? ( || (
66 gnutls? ( >=net-libs/gnutls-1.4.0 )
67 !gnutls? ( dev-libs/openssl )
68 ) )
69 asyncns? ( net-libs/libasyncns )"
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 && use gnutls; then
84 G2CONF="${G2CONF} --with-ssl=gnutls"
85 elif use ssl; then
86 G2CONF="${G2CONF} --with-ssl=openssl"
87 else
88 G2CONF="${G2CONF} --with-ssl=no"
89 fi
90 }
91
92
93
94 --
95 gentoo-commits@l.g.o mailing list