Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/iputils: ChangeLog iputils-20100418.ebuild
Date: Tue, 31 Aug 2010 17:10:34
Message-Id: 20100831171030.DBF1D20051@flycatcher.gentoo.org
1 vapier 10/08/31 17:10:30
2
3 Modified: ChangeLog iputils-20100418.ebuild
4 Log:
5 Make openssl support optional #335436 by Jorge Manuel B. S. Vicetto. Fix building with older linux headers #335347 by Mark Wagner.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.84 net-misc/iputils/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/ChangeLog?rev=1.84&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/ChangeLog?rev=1.84&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/ChangeLog?r1=1.83&r2=1.84
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-misc/iputils/ChangeLog,v
18 retrieving revision 1.83
19 retrieving revision 1.84
20 diff -u -r1.83 -r1.84
21 --- ChangeLog 30 Aug 2010 11:57:13 -0000 1.83
22 +++ ChangeLog 31 Aug 2010 17:10:30 -0000 1.84
23 @@ -1,6 +1,11 @@
24 # ChangeLog for net-misc/iputils
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/ChangeLog,v 1.83 2010/08/30 11:57:13 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/ChangeLog,v 1.84 2010/08/31 17:10:30 vapier Exp $
28 +
29 + 31 Aug 2010; Mike Frysinger <vapier@g.o> iputils-20100418.ebuild,
30 + +files/iputils-20100418-openssl.patch, +files/iputils-20100418-so_mark.patch:
31 + Make openssl support optional #335436 by Jorge Manuel B. S. Vicetto. Fix
32 + building with older linux headers #335347 by Mark Wagner.
33
34 30 Aug 2010; Jeroen Roovers <jer@g.o> iputils-20100418.ebuild:
35 Stable for HPPA PPC (bug #332527).
36
37
38
39 1.7 net-misc/iputils/iputils-20100418.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild?r1=1.6&r2=1.7
44
45 Index: iputils-20100418.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- iputils-20100418.ebuild 30 Aug 2010 11:57:13 -0000 1.6
52 +++ iputils-20100418.ebuild 31 Aug 2010 17:10:30 -0000 1.7
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild,v 1.6 2010/08/30 11:57:13 jer Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/iputils-20100418.ebuild,v 1.7 2010/08/31 17:10:30 vapier Exp $
58
59 inherit flag-o-matic eutils toolchain-funcs
60
61 @@ -12,10 +12,11 @@
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-linux ~x86-linux"
65 -IUSE="doc idn ipv6 SECURITY_HAZARD static"
66 +IUSE="doc idn ipv6 SECURITY_HAZARD ssl static"
67
68 # sysfsutils is needed for libsysfs which is used by arping only
69 RDEPEND="!net-misc/rarpd
70 + ssl? ( dev-libs/openssl )
71 idn? ( net-dns/libidn )
72 sys-fs/sysfsutils"
73 DEPEND="${RDEPEND}
74 @@ -27,8 +28,10 @@
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}"/021109-uclibc-no-ether_ntohost.patch
78 + epatch "${FILESDIR}"/${PN}-20100418-openssl.patch #335436
79 + epatch "${FILESDIR}"/${PN}-20100418-so_mark.patch #335347
80 epatch "${FILESDIR}"/${PN}-20100418-makefile.patch
81 - epatch "${FILESDIR}"/${PN}-20100418-proper-libs.patch
82 + epatch "${FILESDIR}"/${PN}-20100418-proper-libs.patch #332703
83 epatch "${FILESDIR}"/${PN}-20100418-printf-size.patch
84 epatch "${FILESDIR}"/${PN}-20100418-aliasing.patch
85 epatch "${FILESDIR}"/${PN}-20071127-kernel-ifaddr.patch
86 @@ -36,6 +39,7 @@
87 epatch "${FILESDIR}"/${PN}-20100418-ping-CVE-2010-2529.patch #332527
88 use SECURITY_HAZARD && epatch "${FILESDIR}"/${PN}-20071127-nonroot-floodping.patch
89 use static && append-ldflags -static
90 + use ssl && append-cppflags -DHAVE_OPENSSL
91 use ipv6 || sed -i -e 's:IPV6_TARGETS=:#IPV6_TARGETS=:' Makefile
92 export IDN=$(use idn && echo yes)
93 }