6c1c00ae6c
Changes since 3.1.1: What's new in version 3.1.2 * Bugfix for crash when storing modified settings at exit * Generate xz-compressed source tarball (with configure) using github actions * Allow -u UID with numerical value as argument * Added documentation for obsolete/state libraries/program files highlighting * Some obsolete/stale library highlighting refinements * Column width issues resolved * Dynamic UID column sizing improved * Discard stale information from Disk and Network I/O meters * Refined Linux kernel thread detection * Reworked process state handling * New CCGROUP column showing abbreviated cgroup name * New OFFSET column in the list of open files screen
29 lines
750 B
Makefile
29 lines
750 B
Makefile
# $NetBSD: Makefile,v 1.24 2022/01/20 22:48:41 fox Exp $
|
|
|
|
DISTNAME= htop-3.1.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=htop-dev/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://htop.dev/
|
|
COMMENT= Enhanced version of top utility
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= autoreconf automake
|
|
USE_NCURSES= yes # uses ncurses mouse definitions
|
|
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
|
|
.if ${CURSES_TYPE} != "ncursesw"
|
|
# See netbsd/README.md
|
|
CONFIGURE_ARGS+= --disable-unicode
|
|
.endif
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./autogen.sh
|
|
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|