commit: 953272b8b89d950792e595fb9e5f3171589ee0b2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Fri Jan 10 16:58:01 2025 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Fri Jan 10 17:00:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953272b8
dev-libs/atf: call eautoreconf to modernize the build system Closes: https://bugs.gentoo.org/879659 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> dev-libs/atf/atf-0.21-r2.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-libs/atf/atf-0.21-r2.ebuild b/dev-libs/atf/atf-0.21-r2.ebuild index bc30e3d33c4e..7965648357f7 100644 --- a/dev-libs/atf/atf-0.21-r2.ebuild +++ b/dev-libs/atf/atf-0.21-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit flag-o-matic +inherit autotools flag-o-matic DESCRIPTION="Libraries to write tests in C, C++ and shell" HOMEPAGE="https://github.com/freebsd/atf" @@ -17,6 +17,12 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-getopt-solaris.patch ) +src_prepare() { + default + # Refresh autotools, bug 879659 + eautoreconf +} + src_configure() { # Uses std::auto_ptr (deprecated in c++11, removed in c++17) append-cxxflags "-std=c++14"