Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/
Date: Sat, 03 Oct 2020 16:20:33
Message-Id: 1601742006.0aba05157b1220eee7942033b97ff75639e061eb.soap@gentoo
1 commit: 0aba05157b1220eee7942033b97ff75639e061eb
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 16:20:06 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 16:20:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aba0515
7
8 net-analyzer/argus: Pass AR/RANLIB to emake
9
10 Closes: https://bugs.gentoo.org/724836
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 net-analyzer/argus/argus-3.0.8.3-r1.ebuild | 7 +++++--
15 1 file changed, 5 insertions(+), 2 deletions(-)
16
17 diff --git a/net-analyzer/argus/argus-3.0.8.3-r1.ebuild b/net-analyzer/argus/argus-3.0.8.3-r1.ebuild
18 index bc999ce3908..cc378b5cf4b 100644
19 --- a/net-analyzer/argus/argus-3.0.8.3-r1.ebuild
20 +++ b/net-analyzer/argus/argus-3.0.8.3-r1.ebuild
21 @@ -3,7 +3,7 @@
22
23 EAPI=7
24
25 -inherit autotools
26 +inherit autotools toolchain-funcs
27
28 DESCRIPTION="network Audit Record Generation and Utilization System"
29 HOMEPAGE="https://openargus.org/"
30 @@ -64,7 +64,10 @@ src_configure() {
31 }
32
33 src_compile() {
34 - emake CCOPT="${CFLAGS} ${LDFLAGS}"
35 + emake \
36 + CCOPT="${CFLAGS} ${LDFLAGS}" \
37 + AR="$(tc-getAR)" \
38 + RANLIB="$(tc-getRANLIB)"
39 }
40
41 src_install() {