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: sys-process/atop/
Date: Fri, 04 Aug 2017 07:15:34
Message-Id: 1501830923.eec52dc3492738596c4832e7124a37eb04913ce9.polynomial-c@gentoo
1 commit: eec52dc3492738596c4832e7124a37eb04913ce9
2 Author: sr20det <amd-1600 <AT> ya <DOT> ru>
3 AuthorDate: Fri Aug 4 06:51:47 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 4 07:15:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec52dc3
7
8 Update atop-2.3.0.ebuild
9
10 don't die if optional kernel feature not set
11 Closes: https://github.com/gentoo/gentoo/pull/5290
12
13 sys-process/atop/atop-2.3.0.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/sys-process/atop/atop-2.3.0.ebuild b/sys-process/atop/atop-2.3.0.ebuild
17 index 373ca36e8d6..31cb7439dd3 100644
18 --- a/sys-process/atop/atop-2.3.0.ebuild
19 +++ b/sys-process/atop/atop-2.3.0.ebuild
20 @@ -3,7 +3,7 @@
21
22 EAPI=6
23
24 -inherit linux-mod systemd toolchain-funcs
25 +inherit linux-info systemd toolchain-funcs
26
27 DESCRIPTION="Resource-specific view of processes"
28 HOMEPAGE="https://www.atoptool.nl/ https://github.com/Atoptool/atop"
29 @@ -39,7 +39,8 @@ PATCHES=(
30
31 pkg_pretend() {
32 if use kernel_linux ; then
33 - CONFIG_CHECK="BSD_PROCESS_ACCT"
34 + CONFIG_CHECK="~BSD_PROCESS_ACCT"
35 + check_extra_config
36 fi
37 }