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.9.1.ebuild
Date: Wed, 03 Nov 2010 21:35:45
Message-Id: 20101103213540.B96C62004B@flycatcher.gentoo.org
1 reavertm 10/11/03 21:35:40
2
3 Modified: ChangeLog
4 Added: libgadu-1.9.1.ebuild
5 Log:
6 Version bump, bug 343235
7
8 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.47 net-libs/libgadu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 20 Jul 2010 02:16:01 -0000 1.46
24 +++ ChangeLog 3 Nov 2010 21:35:40 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libgadu
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.46 2010/07/20 02:16:01 reavertm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.47 2010/11/03 21:35:40 reavertm Exp $
30 +
31 +*libgadu-1.9.1 (03 Nov 2010)
32 +
33 + 03 Nov 2010; Maciej Mrozowski <reavertm@g.o> +libgadu-1.9.1.ebuild:
34 + Version bump, bug 343235
35
36 20 Jul 2010; Maciej Mrozowski <reavertm@g.o> -libgadu-1.8.2.ebuild,
37 libgadu-1.9.0-r1.ebuild:
38
39
40
41 1.1 net-libs/libgadu/libgadu-1.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgadu/libgadu-1.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgadu-1.9.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.9.1.ebuild,v 1.1 2010/11/03 21:35:40 reavertm Exp $
51
52 EAPI="2"
53
54 MY_P="${P/_/-}"
55
56 inherit autotools-utils
57
58 DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol"
59 HOMEPAGE="http://toxygen.net/libgadu/"
60 SRC_URI="http://toxygen.net/libgadu/files/${MY_P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
64 SLOT="0"
65 IUSE="doc ssl static-libs threads"
66
67 COMMON_DEPEND="
68 ssl? ( >=dev-libs/openssl-0.9.6m )
69 "
70 DEPEND="${COMMON_DEPEND}
71 doc? ( app-doc/doxygen )
72 "
73 RDEPEND="${COMMON_DEPEND}
74 !=net-im/kadu-0.6.0.2
75 !=net-im/kadu-0.6.0.1
76 "
77
78 S="${WORKDIR}/${MY_P}"
79
80 AUTOTOOLS_IN_SOURCE_BUILD=1
81
82 DOCS=(AUTHORS ChangeLog NEWS README)
83
84 src_configure() {
85 myeconfargs=(
86 $(use_with ssl openssl)
87 $(use_with threads pthread)
88 )
89 autotools-utils_src_configure
90 }
91
92 src_install() {
93 use doc && HTML_DOCS=(docs/html/)
94 autotools-utils_src_install
95 }