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.0_rc2.ebuild
Date: Mon, 08 Feb 2010 21:21:55
Message-Id: E1Neb3D-0000if-Us@stork.gentoo.org
1 reavertm 10/02/08 21:21:47
2
3 Modified: ChangeLog
4 Added: libgadu-1.9.0_rc2.ebuild
5 Log:
6 Version bump 1.9.0-rc2, bug #289719
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.34 net-libs/libgadu/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 10 Jan 2010 16:37:26 -0000 1.33
23 +++ ChangeLog 8 Feb 2010 21:21:47 -0000 1.34
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libgadu
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.33 2010/01/10 16:37:26 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.34 2010/02/08 21:21:47 reavertm Exp $
29 +
30 +*libgadu-1.9.0_rc2 (08 Feb 2010)
31 +
32 + 08 Feb 2010; Maciej Mrozowski <reavertm@g.o>
33 + +libgadu-1.9.0_rc2.ebuild:
34 + Version bump 1.9.0-rc2, bug #289719
35
36 10 Jan 2010; Christian Faulhammer <fauli@g.o> libgadu-1.8.2.ebuild:
37 Transfer Prefix keywords
38
39
40
41 1.1 net-libs/libgadu/libgadu-1.9.0_rc2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/libgadu-1.9.0_rc2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/libgadu-1.9.0_rc2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgadu-1.9.0_rc2.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.0_rc2.ebuild,v 1.1 2010/02/08 21:21:47 reavertm Exp $
51
52 EAPI="2"
53
54 MY_P="${P/_/-}"
55
56 inherit base
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 src_configure() {
81 econf \
82 --enable-shared \
83 $(use_enable static-libs static) \
84 $(use_with threads pthread) \
85 $(use_with ssl openssl)
86 }
87
88 src_install() {
89 base_src_install
90
91 if ! use static-libs; then
92 find "${D}" -type f -name '*.la' -delete \
93 || die "la removal failed"
94 fi
95
96 dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
97
98 if use doc; then
99 dohtml -r docs/html/* || die "dohtml failed"
100 fi
101 }