Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libgadu: ChangeLog libgadu-1.8.2.ebuild libgadu-1.7.0.ebuild libgadu-1.7.0_pre20050719.ebuild libgadu-1.8.0.ebuild
Date: Wed, 04 Feb 2009 16:15:49
Message-Id: E1LUkPh-0001n8-V7@stork.gentoo.org
1 rbu 09/02/04 16:15:45
2
3 Modified: ChangeLog
4 Added: libgadu-1.8.2.ebuild
5 Removed: libgadu-1.7.0.ebuild
6 libgadu-1.7.0_pre20050719.ebuild
7 libgadu-1.8.0.ebuild
8 Log:
9 Version bump (bug #244424), fixing a buffer overread vulnerability (bug
10 #244888)
11 (Portage version: 2.1.6.7/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.25 net-libs/libgadu/ChangeLog
15
16 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.25&view=markup
17 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?rev=1.25&content-type=text/plain
18 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/ChangeLog?r1=1.24&r2=1.25
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v
23 retrieving revision 1.24
24 retrieving revision 1.25
25 diff -u -r1.24 -r1.25
26 --- ChangeLog 21 Apr 2008 13:27:17 -0000 1.24
27 +++ ChangeLog 4 Feb 2009 16:15:45 -0000 1.25
28 @@ -1,6 +1,14 @@
29 # ChangeLog for net-libs/libgadu
30 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.24 2008/04/21 13:27:17 cla Exp $
32 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
33 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/ChangeLog,v 1.25 2009/02/04 16:15:45 rbu Exp $
34 +
35 +*libgadu-1.8.2 (04 Feb 2009)
36 +
37 + 04 Feb 2009; Robert Buchholz <rbu@g.o>
38 + -libgadu-1.7.0_pre20050719.ebuild, -libgadu-1.7.0.ebuild,
39 + -libgadu-1.8.0.ebuild, +libgadu-1.8.2.ebuild:
40 + Version bump (bug #244424), fixing a buffer overread vulnerability (bug
41 + #244888)
42
43 *libgadu-1.8.0 (21 Apr 2008)
44
45
46
47
48 1.1 net-libs/libgadu/libgadu-1.8.2.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/libgadu-1.8.2.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libgadu/libgadu-1.8.2.ebuild?rev=1.1&content-type=text/plain
52
53 Index: libgadu-1.8.2.ebuild
54 ===================================================================
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.8.2.ebuild,v 1.1 2009/02/04 16:15:45 rbu Exp $
58
59 inherit eutils libtool
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/${P}.tar.gz"
64 LICENSE="GPL-2"
65 SLOT="0"
66
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68
69 IUSE="ssl threads"
70
71 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6m )"
72 RDEPEND=${DEPEND}
73
74 src_compile() {
75 econf \
76 --enable-shared \
77 `use_with threads pthread` \
78 `use_with ssl openssl` \
79 || die "econf failed"
80
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 einstall || die
86 }