Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libgadu: libgadu-1.12.1.ebuild ChangeLog
Date: Sat, 03 Jan 2015 13:43:09
Message-Id: 20150103134305.26ABDEC6E@oystercatcher.gentoo.org
1 mrueg 15/01/03 13:43:05
2
3 Modified: ChangeLog
4 Added: libgadu-1.12.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.91 net-libs/libgadu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.91&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.91&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.90&r2=1.91
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
20 retrieving revision 1.90
21 retrieving revision 1.91
22 diff -u -r1.90 -r1.91
23 --- ChangeLog 23 Sep 2014 00:55:37 -0000 1.90
24 +++ ChangeLog 3 Jan 2015 13:43:05 -0000 1.91
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libgadu
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.90 2014/09/23 00:55:37 reavertm Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.91 2015/01/03 13:43:05 mrueg Exp $
31 +
32 +*libgadu-1.12.1 (03 Jan 2015)
33 +
34 + 03 Jan 2015; Manuel RĂ¼ger <mrueg@g.o> +libgadu-1.12.1.ebuild:
35 + Version bump.
36
37 23 Sep 2014; Maciej Mrozowski <reavertm@g.o> -libgadu-1.11.0.ebuild,
38 -libgadu-1.11.1.ebuild:
39
40
41
42 1.1 net-libs/libgadu/libgadu-1.12.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.12.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libgadu-1.12.1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.12.1.ebuild,v 1.1 2015/01/03 13:43:05 mrueg Exp $
52
53 EAPI=5
54
55 AUTOTOOLS_AUTORECONF=1
56
57 inherit autotools-utils
58
59 DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
60 HOMEPAGE="http://toxygen.net/libgadu/"
61 SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
65 SLOT="0"
66 IUSE="doc gnutls ssl static-libs test threads"
67
68 REQUIRED_USE="
69 gnutls? ( ssl )
70 "
71 COMMON_DEPEND="
72 >=dev-libs/protobuf-c-0.15
73 sys-libs/zlib
74 ssl? (
75 gnutls? ( net-libs/gnutls )
76 !gnutls? ( >=dev-libs/openssl-0.9.6m )
77 )
78 "
79 DEPEND="${COMMON_DEPEND}
80 doc? ( app-doc/doxygen )
81 test? (
82 dev-libs/expat
83 dev-libs/libxml2:2
84 net-misc/curl
85 )
86 "
87 RDEPEND="${COMMON_DEPEND}
88 !=net-im/kadu-0.6.0.2
89 !=net-im/kadu-0.6.0.1
90 "
91
92 AUTOTOOLS_IN_SOURCE_BUILD=1
93
94 PATCHES=(
95 "${FILESDIR}/${PN}-1.12.0-tests.patch"
96 )
97
98 DOCS=(AUTHORS ChangeLog NEWS README)
99
100 src_configure() {
101 local myeconfargs=(
102 --with-protobuf
103 $(use_enable test tests)
104 $(use_with threads pthread)
105 )
106
107 if use ssl; then
108 myeconfargs+=(
109 $(use_with gnutls gnutls)
110 $(use_with !gnutls openssl)
111 )
112 else
113 myeconfargs+=(
114 --without-gnutls
115 --without-openssl
116 )
117 fi
118
119 autotools-utils_src_configure
120 }
121
122 src_install() {
123 use doc && HTML_DOCS=(docs/html/)
124 autotools-utils_src_install
125 }