blob: ce5c9a47d66c5f94c7029a0a5545adb543d97611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Created by: Tony Shadwick <tshadwick@oss-solutions.com>
# $FreeBSD$
PORTNAME= htop
PORTVERSION= 1.0.3
CATEGORIES= sysutils
MASTER_SITES= http://hisham.hm/htop/releases/${PORTVERSION}/
MAINTAINER= gaod@hychen.org
COMMENT= Better top(1) - interactive process viewer
LICENSE= GPLv2
OPTIONS_DEFINE= LSOF
OPTIONS_DEFAULT=LSOF
NOT_FOR_ARCHS= ia64 powerpc sparc64
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib -lexecinfo
CONFIGURE_ARGS= --with-proc=/compat/linux/proc --enable-unicode
USES= autoreconf ncurses libtool execinfo python:2,build
LSOF_RUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof
post-patch:
@${REINPLACE_CMD} -e 's:/usr/bin/python:${PYTHON_CMD}:' ${WRKSRC}/scripts/MakeHeader.py
pre-configure:
@[ -f /compat/linux/proc/stat ] || { ${CAT} ${PKGMESSAGE}; ${FALSE}; }
.include <bsd.port.mk>
|