diff options
author | Sam James <sam@gentoo.org> | 2023-03-19 01:53:34 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-19 01:53:34 +0000 |
commit | a5ea3947424dc9f286e5b32f77a4ae43dcaed07a (patch) | |
tree | b6b259ab522c2fc8e23c5fda3e17ea66344142a5 /app-text/sgrep | |
parent | app-misc/timestamp: fix configure w/ clang 16 (diff) | |
download | gentoo-a5ea3947424dc9f286e5b32f77a4ae43dcaed07a.tar.gz gentoo-a5ea3947424dc9f286e5b32f77a4ae43dcaed07a.tar.bz2 gentoo-a5ea3947424dc9f286e5b32f77a4ae43dcaed07a.zip |
app-text/sgrep: fix configure w/ clang 16
Closes: https://bugs.gentoo.org/900533
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text/sgrep')
-rw-r--r-- | app-text/sgrep/sgrep-1.94a-r2.ebuild (renamed from app-text/sgrep/sgrep-1.94a-r1.ebuild) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app-text/sgrep/sgrep-1.94a-r1.ebuild b/app-text/sgrep/sgrep-1.94a-r2.ebuild index eb45eb4f246a..de456e40df77 100644 --- a/app-text/sgrep/sgrep-1.94a-r1.ebuild +++ b/app-text/sgrep/sgrep-1.94a-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="Use structural criteria to grep and index text, SGML, XML and HTML and filter" HOMEPAGE="https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html" SRC_URI="ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/${P}.tar.gz" @@ -19,6 +21,9 @@ src_prepare() { default sed -i "s:/usr/lib:${EPREFIX}/etc:g" sgrep.1 || die + + # Clang 16, bug #900533 + eautoreconf } src_configure() { |