Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/fetch/
Date: Fri, 30 Sep 2022 20:32:49
Message-Id: 1664569952.31f6cdae30ecc9fec095064bca94aa384ba65980.sam@gentoo
1 commit: 31f6cdae30ecc9fec095064bca94aa384ba65980
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 19:45:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 20:32:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f6cdae
7
8 www-client/fetch: fix configure w/ clang 16
9
10 Old autoconf.
11
12 Closes: https://bugs.gentoo.org/870499
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 www-client/fetch/fetch-1.0-r4.ebuild | 5 +++++
16 1 file changed, 5 insertions(+)
17
18 diff --git a/www-client/fetch/fetch-1.0-r4.ebuild b/www-client/fetch/fetch-1.0-r4.ebuild
19 index 214f3e73c506..3e3ee5a9c8d0 100644
20 --- a/www-client/fetch/fetch-1.0-r4.ebuild
21 +++ b/www-client/fetch/fetch-1.0-r4.ebuild
22 @@ -3,6 +3,8 @@
23
24 EAPI=7
25
26 +inherit autotools
27 +
28 DESCRIPTION="HTTP download tool built atop the HTTP fetcher library"
29 HOMEPAGE="https://sourceforge.net/projects/fetch/"
30 SRC_URI="mirror://sourceforge/fetch/${P}.tar.gz"
31 @@ -22,4 +24,7 @@ HTML_DOCS=( docs/fetch.html )
32 src_prepare() {
33 default
34 sed -i -e "/^ld_rpath/d" configure || die "sed failed"
35 +
36 + # bug #870499
37 + eautoreconf
38 }