mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Import of a perl5 module to trace function calls as they happen.
This commit is contained in:
parent
7d41e0f651
commit
24c5b03087
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7088
5 changed files with 48 additions and 0 deletions
25
devel/p5-TraceFuncs/Makefile
Normal file
25
devel/p5-TraceFuncs/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: p5-TraceFuncs
|
||||
# Version required: 0.1
|
||||
# Date created: June 26th 1997
|
||||
# Whom: James FitzGibbon <jfitz@FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= traceFunc-0.1
|
||||
PKGNAME= p5-TraceFuncs-0.1
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Devel
|
||||
|
||||
MAINTAINER= jfitz@FreeBSD.ORG
|
||||
|
||||
USE_PERL5= YES
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5
|
||||
MAN3= Devel::TraceFuncs.3
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PREFIX}/bin/perl Makefile.PL
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/p5-TraceFuncs/distinfo
Normal file
1
devel/p5-TraceFuncs/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (traceFunc-0.1.tar.gz) = 4388a9bead7160a93d23c690a7b0e229
|
1
devel/p5-TraceFuncs/pkg-comment
Normal file
1
devel/p5-TraceFuncs/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
a perl5 module to trace function calls as they happen.
|
18
devel/p5-TraceFuncs/pkg-descr
Normal file
18
devel/p5-TraceFuncs/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
|||
Devel::TraceFuncs provides utilities to trace the
|
||||
execution of a program. It can print traces that look
|
||||
something like:
|
||||
|
||||
+-> global: '0'
|
||||
| +-> main::fo(4, 5) (in ./t.pm:32): 'now then'
|
||||
| | +-> main::fp(4, 5) (in ./t.pm:19)
|
||||
| | | +-> main::fq() (in ./t.pm:13)
|
||||
| | | | que pee doll (in ./t.pm:8)
|
||||
| | | +-< main::fq() (in ./t.pm:13)
|
||||
| | | cee dee (in ./t.pm:14)
|
||||
| | +-< main::fp(4, 5) (in ./t.pm:19)
|
||||
| | ha
|
||||
| | hs (in ./t.pm:20)
|
||||
| +-< main::fo(4, 5) (in ./t.pm:32): 'now then'
|
||||
| done (in ./t.pm:34)
|
||||
+-< global: '0'
|
||||
|
3
devel/p5-TraceFuncs/pkg-plist
Normal file
3
devel/p5-TraceFuncs/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
lib/perl5/man/man3/Devel::TraceFuncs.3.gz
|
||||
lib/perl5/site_perl/Devel/TraceFuncs.pm
|
||||
lib/perl5/site_perl/i386-freebsd/auto/Devel/.packlist
|
Loading…
Add table
Reference in a new issue