2f8f657990
package (since 2.x), it will work for most.
37 lines
969 B
Makefile
37 lines
969 B
Makefile
# $NetBSD: Makefile,v 1.15 2017/01/31 22:24:28 maya Exp $
|
|
|
|
DISTNAME= htop-2.0.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://hisham.hm/htop/releases/${PKGVERSION_NOREV}/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://hisham.hm/htop/
|
|
COMMENT= Enhanced version of top utility
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= automake aclocal autoheader autoconf
|
|
GNU_CONFIGURE= yes
|
|
USE_NCURSES= yes # uses ncurses mouse definitions
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
pre-configure:
|
|
set -e; cd ${WRKSRC}; \
|
|
aclocal; \
|
|
autoconf; \
|
|
automake
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "SunOS" && exists(/system/lxproc)
|
|
ONLY_FOR_PLATFORM+= SunOS-*-*
|
|
CONFIGURE_ARGS+= --with-proc=/system/lxproc
|
|
.endif
|
|
|
|
REPLACE_PYTHON+= scripts/MakeHeader.py
|
|
CONFIGURE_ENV+= ac_cv_file__proc_stat=yes ac_cv_file__proc_meminfo=yes
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../devel/ncursesw/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|