Gentoo Archives: gentoo-commits

From: "Maciej Mrozowski (reavertm)" <reavertm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libgadu: ChangeLog libgadu-1.11.0.ebuild libgadu-1.10.1.ebuild libgadu-1.9.0-r1.ebuild
Date: Wed, 01 Jun 2011 01:09:21
Message-Id: 20110601010911.225FA20054@flycatcher.gentoo.org
1 reavertm 11/06/01 01:09:11
2
3 Modified: ChangeLog
4 Added: libgadu-1.11.0.ebuild
5 Removed: libgadu-1.10.1.ebuild libgadu-1.9.0-r1.ebuild
6 Log:
7 Version bump (bug 369511), remove old
8
9 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.57 net-libs/libgadu/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.57&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.57&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.56&r2=1.57
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
21 retrieving revision 1.56
22 retrieving revision 1.57
23 diff -u -r1.56 -r1.57
24 --- ChangeLog 25 Mar 2011 10:17:47 -0000 1.56
25 +++ ChangeLog 1 Jun 2011 01:09:11 -0000 1.57
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-libs/libgadu
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.56 2011/03/25 10:17:47 xarthisius Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.57 2011/06/01 01:09:11 reavertm Exp $
31 +
32 +*libgadu-1.11.0 (01 Jun 2011)
33 +
34 + 01 Jun 2011; Maciej Mrozowski <reavertm@g.o> -libgadu-1.9.0-r1.ebuild,
35 + -files/libgadu-1.9.0-memleak.patch, -libgadu-1.10.1.ebuild,
36 + +libgadu-1.11.0.ebuild:
37 + Version bump (bug 369511), remove old
38
39 25 Mar 2011; Kacper Kowalik <xarthisius@g.o> libgadu-1.9.1.ebuild:
40 ppc/ppc64 stable wrt #357289
41
42
43
44 1.1 net-libs/libgadu/libgadu-1.11.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libgadu-1.11.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.11.0.ebuild,v 1.1 2011/06/01 01:09:11 reavertm Exp $
54
55 EAPI="4"
56
57 MY_P="${P/_/-}"
58
59 inherit autotools-utils
60
61 DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
62 HOMEPAGE="http://toxygen.net/libgadu/"
63 SRC_URI="http://toxygen.net/libgadu/files/${MY_P}.tar.gz"
64
65 LICENSE="LGPL-2.1"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
67 SLOT="0"
68 IUSE="doc gnutls ssl static-libs threads"
69
70 REQUIRED_USE="
71 gnutls? ( ssl )
72 "
73 COMMON_DEPEND="
74 sys-libs/zlib
75 ssl? (
76 gnutls? ( net-libs/gnutls )
77 !gnutls? ( >=dev-libs/openssl-0.9.6m )
78 )
79 "
80 DEPEND="${COMMON_DEPEND}
81 doc? ( app-doc/doxygen )
82 "
83 RDEPEND="${COMMON_DEPEND}
84 !=net-im/kadu-0.6.0.2
85 !=net-im/kadu-0.6.0.1
86 "
87
88 S="${WORKDIR}/${MY_P}"
89
90 AUTOTOOLS_IN_SOURCE_BUILD=1
91
92 DOCS=(AUTHORS ChangeLog NEWS README)
93
94 src_configure() {
95 local myeconfargs=(
96 $(use_with threads pthread)
97 )
98
99 if use ssl; then
100 myeconfargs+=(
101 $(use_with gnutls gnutls)
102 $(use_with !gnutls openssl)
103 )
104 else
105 myeconfargs+=(
106 --without-gnutls
107 --without-openssl
108 )
109 fi
110
111 autotools-utils_src_configure
112 }
113
114 src_install() {
115 use doc && HTML_DOCS=(docs/html/)
116 autotools-utils_src_install
117 }