mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
df9fb5e3bc
Among other changes this fixes a regression where trying to kill a process with htop terminates htop and leads to the error message "htop: No such file or directory". Changes: https://github.com/hishamhm/htop/compare/2.1.0-26-g697f5bb...2.2.0 PR: 227115 Submitted by: tobik Reported by: Philipp Engel <kidon@posteo.de> Approved by: Hung-Yi Chen <gaod@hychen.org> (maintainer timeout, 2 weeks)
32 lines
680 B
Makefile
32 lines
680 B
Makefile
# Created by: Tony Shadwick <tshadwick@oss-solutions.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= htop
|
|
DISTVERSION= 2.2.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Better top(1) - interactive process viewer
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf libtool localbase ncurses pkgconfig python:2.7,build shebangfix
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-unicode
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= hishamhm
|
|
SHEBANG_FILES= scripts/MakeHeader.py
|
|
|
|
PLIST_FILES= bin/htop \
|
|
man/man1/htop.1.gz \
|
|
share/applications/htop.desktop \
|
|
share/pixmaps/htop.png
|
|
|
|
OPTIONS_DEFINE= LSOF
|
|
OPTIONS_DEFAULT= LSOF
|
|
|
|
LSOF_RUN_DEPENDS= lsof:sysutils/lsof
|
|
|
|
.include <bsd.port.mk>
|