commit: 326f6f0395169cf06fee8ab4cf70743ea93a4dc9 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Jan 5 07:42:58 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jan 5 07:45:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326f6f03
x11-libs/neXtaw: fix configure w/ clang 16 Closes: https://bugs.gentoo.org/879779 Signed-off-by: Sam James <sam <AT> gentoo.org> .../{neXtaw-0.15.1-r4.ebuild => neXtaw-0.15.1-r5.ebuild} | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/x11-libs/neXtaw/neXtaw-0.15.1-r4.ebuild b/x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild similarity index 86% rename from x11-libs/neXtaw/neXtaw-0.15.1-r4.ebuild rename to x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild index b99ad9f930f5..581a5a855fc0 100644 --- a/x11-libs/neXtaw/neXtaw-0.15.1-r4.ebuild +++ b/x11-libs/neXtaw/neXtaw-0.15.1-r5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 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="Athena Widgets with N*XTSTEP appearance" HOMEPAGE="https://siag.nu/neXtaw/" @@ -33,6 +33,13 @@ PATCHES=( "${FILESDIR}"/${P}-clang16.patch ) +src_prepare() { + default + + # Clang 16, bug #879779 + eautoreconf +} + src_configure() { append-cflags -std=gnu89 # old codebase, incompatible with c2x append-cflags -fno-strict-aliasing #864535
