You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
641 B
32 lines
641 B
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
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="http://0pointer.de/lennart/projects/ifmetric/${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
|
|
}
|