From cd18360aa514275260293436172e7b7ecc8dbc72 Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Sat, 5 Nov 2016 09:55:40 +0100 Subject: net-analyzer/ifmetric: Add Debian patch for bug #428674). Package-Manager: portage-2.3.2 --- .../ifmetric/files/ifmetric-0.3-replybuf.patch | 11 ++++++++ net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 net-analyzer/ifmetric/files/ifmetric-0.3-replybuf.patch create mode 100644 net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild (limited to 'net-analyzer') diff --git a/net-analyzer/ifmetric/files/ifmetric-0.3-replybuf.patch b/net-analyzer/ifmetric/files/ifmetric-0.3-replybuf.patch new file mode 100644 index 000000000000..883ce2b31215 --- /dev/null +++ b/net-analyzer/ifmetric/files/ifmetric-0.3-replybuf.patch @@ -0,0 +1,11 @@ +--- a/src/nlrequest.c ++++ b/src/nlrequest.c +@@ -44,7 +44,7 @@ + + for (;;) { + int bytes; +- char replybuf[2048]; ++ char replybuf[4096]; + struct nlmsghdr *p = (struct nlmsghdr *) replybuf; + + if ((bytes = recv(s, &replybuf, sizeof(replybuf), 0)) < 0) { diff --git a/net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild b/net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild new file mode 100644 index 000000000000..e6205aba76e3 --- /dev/null +++ b/net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Set metrics of all IPv4 routes attached to a given network interface at once" +HOMEPAGE="http://0pointer.de/lennart/projects/ifmetric/" +SRC_URI="${HOMEPAGE}${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="sys-kernel/linux-headers" + +DOCS=( + README + doc/README.html +) + +PATCHES=( + "${FILESDIR}"/${P}-ul.patch + "${FILESDIR}"/${P}-replybuf.patch +) + +src_configure() { + # man page and HTML are already generated + econf \ + --disable-xmltoman \ + --disable-lynx +} -- cgit v1.2.3-65-gdbad