diff options
author | Sam James <sam@gentoo.org> | 2024-11-19 14:36:20 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-19 14:36:20 +0000 |
commit | 9aa161d76e9a78c65c20dd6e88e0a0a3c808fb66 (patch) | |
tree | 6dce73c446ca71de4b574d8afa2461bd15929a64 /net-analyzer | |
parent | app-text/unrtf: drop ~ia64, fix copyright (diff) | |
download | gentoo-9aa161d76e9a78c65c20dd6e88e0a0a3c808fb66.tar.gz gentoo-9aa161d76e9a78c65c20dd6e88e0a0a3c808fb66.tar.bz2 gentoo-9aa161d76e9a78c65c20dd6e88e0a0a3c808fb66.zip |
net-analyzer/ifmetric: fix modern C issues in configure
Closes: https://bugs.gentoo.org/899926
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ifmetric/ifmetric-0.3-r4.ebuild (renamed from net-analyzer/ifmetric/ifmetric-0.3-r3.ebuild) | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net-analyzer/ifmetric/ifmetric-0.3-r3.ebuild b/net-analyzer/ifmetric/ifmetric-0.3-r4.ebuild index df13f75e5942..27101a208ed3 100644 --- a/net-analyzer/ifmetric/ifmetric-0.3-r3.ebuild +++ b/net-analyzer/ifmetric/ifmetric-0.3-r4.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + 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" @@ -19,6 +21,13 @@ PATCHES=( ) HTML_DOCS=( doc/README.html ) +src_prepare() { + default + + # bug #899926 + eautoreconf +} + src_configure() { # man page and HTML are already generated econf \ |