commit: 4e6fd278984617728e201533d3dc6170a5714b90 Author: Nicholas Vinson <nvinson234 <AT> gmail <DOT> com> AuthorDate: Tue Dec 2 00:15:18 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 2 03:17:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6fd278
app-text/libetonyek: always run eautoreconf Because gcc-16 defaults to -std=c++20 for C++ builds, the configure script for libetonyek needs to be regenerated to pull in autoconf fixes for AC_PROG_CXX tests. Closes: https://bugs.gentoo.org/966934 Signed-off-by: Nicholas Vinson <nvinson234 <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44862 Closes: https://github.com/gentoo/gentoo/pull/44862 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/libetonyek/libetonyek-0.1.13.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-text/libetonyek/libetonyek-0.1.13.ebuild b/app-text/libetonyek/libetonyek-0.1.13.ebuild index afdfa7661b80..f54e3041b761 100644 --- a/app-text/libetonyek/libetonyek-0.1.13.ebuild +++ b/app-text/libetonyek/libetonyek-0.1.13.ebuild @@ -5,11 +5,12 @@ EAPI=8 if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://git.libreoffice.org/libetonyek.git" - inherit autotools git-r3 + inherit git-r3 else SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz" KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86" fi +inherit autotools DESCRIPTION="Library parsing Apple Keynote presentations" HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" @@ -40,7 +41,7 @@ BDEPEND=" src_prepare() { default [[ -d m4 ]] || mkdir "m4" || die - [[ ${PV} == *9999* ]] && eautoreconf + eautoreconf } src_configure() {
