ltrace is a dynamic library tracer. ltrace is a debugging tool, similar to

strace, but it traces library calls instead of system calls.
This commit is contained in:
David E. O'Brien 2001-10-15 20:07:30 +00:00
parent bb4f3256f8
commit a0bdaffbf3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48813
6 changed files with 39 additions and 0 deletions

View File

@ -85,6 +85,7 @@
SUBDIR += logtool
SUBDIR += lsmlib
SUBDIR += lsof
SUBDIR += ltrace
SUBDIR += maint
SUBDIR += manck
SUBDIR += medusa

30
sysutils/ltrace/Makefile Normal file
View File

@ -0,0 +1,30 @@
# ex:ts=8
# Ports collection makefile for: ltrace
# Date created: Mon Oct 15, 2001
# Whom: David O'Brien (obrien@NUXI.com)
#
# $FreeBSD$
#
PORTNAME= ltrace
PORTVERSION= 0.3.6
CATEGORIES= sysutils
MASTER_SITES= http://utopia.knoware.nl/users/driehuis/
DISTNAME= ${PORTNAME}-${PORTVERSION}-fbsd
MAINTAINER= obrien@FreeBSD.org
GNU_CONFIGURE= yes
USE_GMAKE= yes
MAN1= ltrace.1
post-patch:
${PERL} -pi.bak \
-e 's|"/etc/ltrace.conf"|"${PREFIX}/etc/ltrace.conf"|g' \
${WRKSRC}/ltrace.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ltrace ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/etc/ltrace.conf ${PREFIX}/etc
.include <bsd.port.mk>

1
sysutils/ltrace/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (ltrace-0.3.6-fbsd.tar.gz) = 305157fa70baaa10e917f5537ce47d1f

View File

@ -0,0 +1 @@
Dynamic Library Tracer -- similar to strace, but it traces library calls

View File

@ -0,0 +1,4 @@
ltrace is a dynamic library tracer. ltrace is a debugging tool, similar to
strace, but it traces library calls instead of system calls.
WWW: http://utopia.knoware.nl/users/driehuis/

View File

@ -0,0 +1,2 @@
@comment $FreeBSD$
bin/ltrace