Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wol/
Date: Wed, 19 Aug 2020 23:15:49
Message-Id: 1597878908.801c22f60d2525a87aef6cf66114de19e4130541.conikost@gentoo
1 commit: 801c22f60d2525a87aef6cf66114de19e4130541
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 23:15:08 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 23:15:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=801c22f6
7
8 net-misc/wol: don't call directly ar
9
10 Closes: https://bugs.gentoo.org/725186
11 Package-Manager: Portage-3.0.1, Repoman-2.3.23
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 net-misc/wol/wol-0.7.1-r2.ebuild | 8 +++++++-
15 1 file changed, 7 insertions(+), 1 deletion(-)
16
17 diff --git a/net-misc/wol/wol-0.7.1-r2.ebuild b/net-misc/wol/wol-0.7.1-r2.ebuild
18 index 27e01462efd..8ee1f1db407 100644
19 --- a/net-misc/wol/wol-0.7.1-r2.ebuild
20 +++ b/net-misc/wol/wol-0.7.1-r2.ebuild
21 @@ -1,8 +1,10 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27
28 +inherit toolchain-funcs
29 +
30 DESCRIPTION="Implements Wake On LAN (Magic Paket) functionality in a small program"
31 HOMEPAGE="http://ahh.sourceforge.net/wol/"
32 SRC_URI="mirror://sourceforge/ahh/${P}.tar.gz"
33 @@ -20,3 +22,7 @@ src_configure() {
34
35 econf ${myeconfargs[@]}
36 }
37 +
38 +src_compile() {
39 + emake AR="$(tc-getAR)"
40 +}