forked from Lainports/freebsd-ports
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
24 lines
529 B
Makefile
24 lines
529 B
Makefile
# Created by: Juergen Lock <nox@FreeBSD.org>
|
|
|
|
PORTNAME= pstacku
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://kib.kiev.ua/kib/${PORTNAME}/ \
|
|
http://kib.kiev.ua/kib/${PORTNAME}/
|
|
|
|
MAINTAINER= pizzamig@FreeBSD.org
|
|
COMMENT= Retrieve process stack traces
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
LIB_DEPENDS= libunwind.so:devel/libunwind
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-libunwind=${LOCALBASE}
|
|
LLD_UNSAFE= yes
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
CONFLICTS= pstack
|
|
|
|
PLIST_FILES= bin/pstack man/man1/pstack.1.gz
|
|
|
|
.include <bsd.port.mk>
|