Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xplanet/
Date: Tue, 04 May 2021 14:55:57
Message-Id: 1620140138.2e19c9194cfa6ed199bc31345f8ea65ae166f1b4.polynomial-c@gentoo
1 commit: 2e19c9194cfa6ed199bc31345f8ea65ae166f1b4
2 Author: Matt Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Tue May 4 14:19:25 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 14:55:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e19c919
7
8 x11-misc/xplanet: Don't call AR directly
9
10 Closes: https://bugs.gentoo.org/726292
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
13 Closes: https://github.com/gentoo/gentoo/pull/20680
14 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
15
16 x11-misc/xplanet/xplanet-1.3.1-r2.ebuild | 6 +++++-
17 1 file changed, 5 insertions(+), 1 deletion(-)
18
19 diff --git a/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild b/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild
20 index 1eef6008ea9..ac79390deb7 100644
21 --- a/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild
22 +++ b/x11-misc/xplanet/xplanet-1.3.1-r2.ebuild
23 @@ -2,7 +2,7 @@
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 -inherit autotools flag-o-matic
28 +inherit autotools flag-o-matic toolchain-funcs
29
30 DESCRIPTION="Render images of the earth into the X root window"
31 HOMEPAGE="http://xplanet.sourceforge.net/"
32 @@ -66,3 +66,7 @@ src_configure() {
33 )
34 econf --with-cspice=no "${myconf[@]}"
35 }
36 +
37 +src_compile() {
38 + emake AR=$(tc-getAR)
39 +}