5572d03ae3
- Add CONFLICTS with sysutils/pstack. "pstack" is a workalike for the Solaris program of the same name. Running pstack on a process produces a stack trace of each thread in that process. It's useful for finding out what wedged processes are up to, getting profiles of applications, and just satisfying one's curiosity. WWW: https://www.kib.kiev.ua/git/gitweb.cgi?p=pstacku.git;a=tree
24 lines
539 B
Makefile
24 lines
539 B
Makefile
# Created by: Juergen Lock <nox@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pstacku
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://kib.kiev.ua/kib/${PORTNAME}/ \
|
|
http://kib.kiev.ua/kib/${PORTNAME}/
|
|
|
|
MAINTAINER= nox@FreeBSD.org
|
|
COMMENT= Retrieve process stack traces
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
LIB_DEPENDS= libunwind.so:${PORTSDIR}/devel/libunwind
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-libunwind=${LOCALBASE}
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
CONFLICTS= pstack-[0-9]*
|
|
|
|
PLIST_FILES= bin/pstack man/man1/pstack.1.gz
|
|
|
|
.include <bsd.port.mk>
|