diff options
author | vthriller <unixway.drive+git@gmail.com> | 2016-02-11 18:59:05 +0300 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-03-07 16:09:47 +0100 |
commit | 780a68f46db7f04dabe5b2f931261a9e304aa126 (patch) | |
tree | 98274952d21e0909963274b0b3a22103c96e3044 /sys-process | |
parent | 7f811529894d338c6c448025866dea29fd4d8afa (diff) | |
download | gentoo-780a68f46db7f04dabe5b2f931261a9e304aa126.tar.gz gentoo-780a68f46db7f04dabe5b2f931261a9e304aa126.tar.xz |
sys-process/htop: from version 2 onwards, FreeBSD is supported natively
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/htop/htop-2.0.0-r1.ebuild | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sys-process/htop/htop-2.0.0-r1.ebuild b/sys-process/htop/htop-2.0.0-r1.ebuild index f7224ea0f5e..e589b8443cc 100644 --- a/sys-process/htop/htop-2.0.0-r1.ebuild +++ b/sys-process/htop/htop-2.0.0-r1.ebuild @@ -29,17 +29,6 @@ PATCHES=( ) pkg_setup() { - if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then - echo - eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function." - eerror "To mount it, type:" - [ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc" - eerror "mount -t linprocfs none /compat/linux/proc" - eerror "Alternatively, place this information into /etc/fstab" - echo - die "htop needs /compat/linux/proc mounted" - fi - if ! has_version sys-process/lsof; then ewarn "To use lsof features in htop(what processes are accessing" ewarn "what files), you must have sys-process/lsof installed." @@ -60,8 +49,6 @@ src_configure() { local myeconfargs=() - use kernel_FreeBSD && myeconfargs+=( --with-proc=/compat/linux/proc ) - myeconfargs+=( # fails to build against recent hwloc versions --disable-hwloc |