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/htop/
Date: Mon, 26 Mar 2018 13:26:40
Message-Id: 1522070790.e8cc1a5b84b6c5196ac9cb15808e58d0832b1bfe.polynomial-c@gentoo
1 commit: e8cc1a5b84b6c5196ac9cb15808e58d0832b1bfe
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 26 13:26:09 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 26 13:26:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8cc1a5b
7
8 sys-process/htop: Removed old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-process/htop/htop-2.1.0.ebuild | 59 --------------------------------------
13 1 file changed, 59 deletions(-)
14
15 diff --git a/sys-process/htop/htop-2.1.0.ebuild b/sys-process/htop/htop-2.1.0.ebuild
16 deleted file mode 100644
17 index 1ba6ab8008f..00000000000
18 --- a/sys-process/htop/htop-2.1.0.ebuild
19 +++ /dev/null
20 @@ -1,59 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit autotools linux-info
27 -
28 -DESCRIPTION="interactive process viewer"
29 -HOMEPAGE="http://hisham.hm/htop/"
30 -SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
31 -
32 -LICENSE="BSD GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
35 -IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
36 -
37 -RDEPEND="sys-libs/ncurses:0=[unicode?]"
38 -DEPEND="${RDEPEND}
39 - virtual/pkgconfig"
40 -
41 -DOCS=( ChangeLog README )
42 -
43 -CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
44 -
45 -PATCHES=(
46 - "${FILESDIR}/${P}-sysmacros.patch"
47 -)
48 -
49 -pkg_setup() {
50 - if ! has_version sys-process/lsof; then
51 - ewarn "To use lsof features in htop(what processes are accessing"
52 - ewarn "what files), you must have sys-process/lsof installed."
53 - fi
54 -
55 - linux-info_pkg_setup
56 -}
57 -
58 -src_prepare() {
59 - rm missing || die
60 -
61 - default
62 - eautoreconf
63 -}
64 -
65 -src_configure() {
66 - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
67 -
68 - local myeconfargs=(
69 - # fails to build against recent hwloc versions
70 - --disable-hwloc
71 - --enable-taskstats
72 - $(use_enable kernel_linux cgroup)
73 - $(use_enable kernel_linux linux-affinity)
74 - $(use_enable openvz)
75 - $(use_enable unicode)
76 - $(use_enable vserver)
77 - )
78 - econf ${myeconfargs[@]}
79 -}