Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/magic/
Date: Wed, 29 Sep 2021 22:21:40
Message-Id: 1632954082.c4fcafe9dfa8d26fe7876ed96432a32a6798d623.sam@gentoo
1 commit: c4fcafe9dfa8d26fe7876ed96432a32a6798d623
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 29 22:20:52 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 29 22:21:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4fcafe9
7
8 sci-electronics/magic: fix autoconf 2.71 compatibility in stable
9
10 Bug: https://bugs.gentoo.org/775422
11 Closes: https://bugs.gentoo.org/814788
12 See: be7ed26f001fb31bf32a69824c3cc858b48f0326
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 sci-electronics/magic/magic-7.5.202-r1.ebuild | 6 ++++++
16 1 file changed, 6 insertions(+)
17
18 diff --git a/sci-electronics/magic/magic-7.5.202-r1.ebuild b/sci-electronics/magic/magic-7.5.202-r1.ebuild
19 index 00761831257..40a3643a1eb 100644
20 --- a/sci-electronics/magic/magic-7.5.202-r1.ebuild
21 +++ b/sci-electronics/magic/magic-7.5.202-r1.ebuild
22 @@ -31,6 +31,12 @@ src_prepare() {
23 eautoreconf
24 cd ..
25 sed -i -e "s: -pg : :" tcltk/Makefile || die
26 +
27 + # required for >=autoconf-2.70 (bug #775422)
28 + local ac_aux_file
29 + for ac_aux_file in install-sh config.guess config.sub ; do
30 + ln -s scripts/${ac_aux_file} ${ac_aux_file} || die
31 + done
32 }
33
34 src_configure() {