Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/net6: ChangeLog net6-1.3.14.ebuild net6-1.3.13.ebuild
Date: Mon, 31 Oct 2011 20:28:25
Message-Id: 20111031202813.F21BA2004B@flycatcher.gentoo.org
1 xarthisius 11/10/31 20:28:13
2
3 Modified: ChangeLog
4 Added: net6-1.3.14.ebuild
5 Removed: net6-1.3.13.ebuild
6 Log:
7 Version bump, contains fixes for CVE-2011-4093 and CVE-2011-4091, drop old
8
9 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.42 net-libs/net6/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/net6/ChangeLog?rev=1.42&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/net6/ChangeLog?rev=1.42&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/net6/ChangeLog?r1=1.41&r2=1.42
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/net6/ChangeLog,v
21 retrieving revision 1.41
22 retrieving revision 1.42
23 diff -u -r1.41 -r1.42
24 --- ChangeLog 30 Oct 2011 09:08:38 -0000 1.41
25 +++ ChangeLog 31 Oct 2011 20:28:13 -0000 1.42
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/net6
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/net6/ChangeLog,v 1.41 2011/10/30 09:08:38 xarthisius Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/net6/ChangeLog,v 1.42 2011/10/31 20:28:13 xarthisius Exp $
31 +
32 +*net6-1.3.14 (31 Oct 2011)
33 +
34 + 31 Oct 2011; Kacper Kowalik <xarthisius@g.o> -net6-1.3.13.ebuild,
35 + -files/net6-1.3.13-gnutls3.patch, +net6-1.3.14.ebuild:
36 + Version bump, contains fixes for CVE-2011-4093 and CVE-2011-4091, drop old
37
38 30 Oct 2011; Kacper Kowalik <xarthisius@g.o> net6-1.3.13.ebuild,
39 +net6-1.3.13-gnutls3.patch:
40
41
42
43 1.1 net-libs/net6/net6-1.3.14.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/net6/net6-1.3.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/net6/net6-1.3.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: net6-1.3.14.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/net6/net6-1.3.14.ebuild,v 1.1 2011/10/31 20:28:13 xarthisius Exp $
53
54 EAPI=4
55
56 inherit multilib
57
58 DESCRIPTION="Network access framework for IPv4/IPv6 written in C++"
59 HOMEPAGE="http://gobby.0x539.de/"
60 SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
65 IUSE="nls static-libs"
66
67 RDEPEND="dev-libs/libsigc++:2
68 >=net-libs/gnutls-1.2.10"
69 DEPEND="${RDEPEND}
70 >=dev-util/pkgconfig-0.20
71 nls? ( sys-devel/gettext )"
72
73 DOCS=( AUTHORS ChangeLog NEWS README )
74
75 src_configure() {
76 econf $(use_enable nls) \
77 $(use_enable static-libs static)
78 }
79
80 src_install() {
81 default
82 use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib${PN}.la
83 }