mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
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
28 lines
567 B
Makefile
28 lines
567 B
Makefile
# Created by: Peter Edwards <pmedwards@eircom.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pstack
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Retrieve process/core file stack traces
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= z0nt
|
|
GH_PROJECT= ${PORTNAME}
|
|
GH_COMMIT= 874a052
|
|
GH_TAGNAME= 874a052
|
|
USES= uidfix
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
CONFLICTS= pstacku-[0-9]*
|
|
MAKE_ARGS+= BINDIR=${PREFIX}/bin
|
|
MAKE_ARGS+= MANDIR=${PREFIX}/man/man
|
|
MAKE_ARGS+= LIBDIR=${PREFIX}/lib
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
.include <bsd.port.mk>
|