diff options
author | Jeroen Roovers <jer@gentoo.org> | 2016-11-05 09:55:40 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2016-11-05 09:55:40 +0100 |
commit | cd18360aa514275260293436172e7b7ecc8dbc72 (patch) | |
tree | 1d96ac1bf24d0a742f39e0fb4c2a4e9cdfefeb96 /net-analyzer/ifmetric | |
parent | dev-ruby/cocaine: add ruby22, ruby23 (diff) | |
download | gentoo-cd18360aa514275260293436172e7b7ecc8dbc72.tar.gz gentoo-cd18360aa514275260293436172e7b7ecc8dbc72.tar.bz2 gentoo-cd18360aa514275260293436172e7b7ecc8dbc72.zip |
net-analyzer/ifmetric: Add Debian patch for bug #428674).
Package-Manager: portage-2.3.2
Diffstat (limited to 'net-analyzer/ifmetric')
-rw-r--r-- | net-analyzer/ifmetric/files/ifmetric-0.3-replybuf.patch | 11 | ||||
-rw-r--r-- | net-analyzer/ifmetric/ifmetric-0.3-r2.ebuild | 32 |
2 files changed, 43 insertions, 0 deletions
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 +} |