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: libgadu-1.11.1.ebuild ChangeLog libgadu-1.9.1.ebuild
Date: Sat, 28 Jan 2012 02:17:19
Message-Id: 20120128021707.DEFC82004B@flycatcher.gentoo.org
1 reavertm 12/01/28 02:17:07
2
3 Modified: ChangeLog
4 Added: libgadu-1.11.1.ebuild
5 Removed: libgadu-1.9.1.ebuild
6 Log:
7 Version bump, remove old, bug 399223.
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.65 net-libs/libgadu/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.65&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.65&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.64&r2=1.65
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
21 retrieving revision 1.64
22 retrieving revision 1.65
23 diff -u -r1.64 -r1.65
24 --- ChangeLog 9 Jul 2011 16:49:16 -0000 1.64
25 +++ ChangeLog 28 Jan 2012 02:17:07 -0000 1.65
26 @@ -1,6 +1,12 @@
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.64 2011/07/09 16:49:16 xarthisius Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.65 2012/01/28 02:17:07 reavertm Exp $
32 +
33 +*libgadu-1.11.1 (28 Jan 2012)
34 +
35 + 28 Jan 2012; Maciej Mrozowski <reavertm@g.o> +libgadu-1.11.1.ebuild,
36 + -libgadu-1.9.1.ebuild:
37 + Version bump, remove old, bug 399223.
38
39 09 Jul 2011; Kacper Kowalik <xarthisius@g.o> libgadu-1.11.0.ebuild:
40 ppc stable wrt #372785
41
42
43
44 1.1 net-libs/libgadu/libgadu-1.11.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.11.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libgadu-1.11.1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 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.1.ebuild,v 1.1 2012/01/28 02:17:07 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 # Bug 373215, relies on remote server presence
66 RESTRICT="test"
67
68 LICENSE="LGPL-2.1"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
70 SLOT="0"
71 IUSE="doc gnutls ssl static-libs threads"
72
73 REQUIRED_USE="
74 gnutls? ( ssl )
75 "
76 COMMON_DEPEND="
77 sys-libs/zlib
78 ssl? (
79 gnutls? ( net-libs/gnutls )
80 !gnutls? ( >=dev-libs/openssl-0.9.6m )
81 )
82 "
83 DEPEND="${COMMON_DEPEND}
84 doc? ( app-doc/doxygen )
85 "
86 RDEPEND="${COMMON_DEPEND}
87 !=net-im/kadu-0.6.0.2
88 !=net-im/kadu-0.6.0.1
89 "
90
91 S="${WORKDIR}/${MY_P}"
92
93 AUTOTOOLS_IN_SOURCE_BUILD=1
94
95 DOCS=(AUTHORS ChangeLog NEWS README)
96
97 src_configure() {
98 local myeconfargs=(
99 $(use_with threads pthread)
100 )
101
102 if use ssl; then
103 myeconfargs+=(
104 $(use_with gnutls gnutls)
105 $(use_with !gnutls openssl)
106 )
107 else
108 myeconfargs+=(
109 --without-gnutls
110 --without-openssl
111 )
112 fi
113
114 autotools-utils_src_configure
115 }
116
117 src_install() {
118 use doc && HTML_DOCS=(docs/html/)
119 autotools-utils_src_install
120 }