commit: 9aa161d76e9a78c65c20dd6e88e0a0a3c808fb66 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Nov 19 14:36:20 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 19 14:36:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa161d7
net-analyzer/ifmetric: fix modern C issues in configure Closes: https://bugs.gentoo.org/899926 Signed-off-by: Sam James <sam <AT> gentoo.org> .../{ifmetric-0.3-r3.ebuild => ifmetric-0.3-r4.ebuild} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/net-analyzer/ifmetric/ifmetric-0.3-r3.ebuild b/net-analyzer/ifmetric/ifmetric-0.3-r4.ebuild similarity index 84% rename from net-analyzer/ifmetric/ifmetric-0.3-r3.ebuild rename to 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 \
