View | Details | Raw Unified | Return to bug 209398
Collapse All | Expand All

(-)sysutils/Makefile (+1 lines)
Lines 103-108 Link Here
103
    SUBDIR += bsdmoted
103
    SUBDIR += bsdmoted
104
    SUBDIR += bsdploy
104
    SUBDIR += bsdploy
105
    SUBDIR += bsdstats
105
    SUBDIR += bsdstats
106
    SUBDIR += bstack
106
    SUBDIR += btsixad
107
    SUBDIR += btsixad
107
    SUBDIR += bulk_extractor
108
    SUBDIR += bulk_extractor
108
    SUBDIR += burp
109
    SUBDIR += burp
(-)sysutils/bstack/Makefile (+31 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	bstack
4
PORTVERSION=	0.1
5
CATEGORIES=	sysutils
6
7
MAINTAINER=	luca.pizzamiglio@gmail.com
8
COMMENT=	Debug tool that shows the stack trace of a running process
9
10
LICENSE=	BSD3CLAUSE
11
12
RUN_DEPENDS=	gdb:devel/gdb
13
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	pizzamig
16
NO_BUILD=	yes
17
18
PLIST_FILES=	bin/bstack \
19
		%%DATADIR%%/gdb_bstack
20
21
post-patch:
22
	@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|;' ${WRKSRC}/bstack
23
24
do-install:
25
	${INSTALL_SCRIPT} ${WRKSRC}/bstack \
26
		${STAGEDIR}${PREFIX}/bin/bstack
27
	${MKDIR} ${STAGEDIR}${DATADIR}
28
	${INSTALL_DATA} ${WRKSRC}/gdb_bstack \
29
		${STAGEDIR}${DATADIR}/gdb_bstack
30
31
.include <bsd.port.mk>
(-)sysutils/bstack/distinfo (+2 lines)
Added Link Here
1
SHA256 (pizzamig-bstack-0.1_GH0.tar.gz) = 358ab23ba0ce99260a3239797bdc5fc10cf14bce00ec7b3ff1ab2f1fbe8ffccd
2
SIZE (pizzamig-bstack-0.1_GH0.tar.gz) = 1868
(-)sysutils/bstack/pkg-descr (+12 lines)
Added Link Here
1
bstack - gstack for FreeBSD
2
3
This is a port of gstack, a script build around gdb on RedHat and other
4
Linux distros, to FreeBSD.
5
6
bstack take a PID as only parameter and print out the back trace of that
7
running process. If the process is multithread, the backtrace of all
8
threads is printed.
9
10
It works with the last version of GDB
11
12
WWW: https://github.com/pizzamig/bstack

Return to bug 209398