diff options
author | christos <christos@pkgsrc.org> | 2006-03-05 09:04:50 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 2006-03-05 09:04:50 +0000 |
commit | ae1d077593f359f74c95d2adcfebba42deaa57bc (patch) | |
tree | d63d69c1d2f49abbc3897bf253aa6898643ee622 /sysutils | |
parent | 1ef84509975a2de35da16ad2baf7ccb4649538a5 (diff) | |
download | pkgsrc-ae1d077593f359f74c95d2adcfebba42deaa57bc.tar.gz |
move strace to sysutils and merge package changes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/strace/DESCR | 8 | ||||
-rw-r--r-- | sysutils/strace/Makefile | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sysutils/strace/DESCR b/sysutils/strace/DESCR index df90fa70bad..98d8c2fdd54 100644 --- a/sysutils/strace/DESCR +++ b/sysutils/strace/DESCR @@ -1 +1,7 @@ -strace is a system call tracing program similar to ktruss that uses PT_SYSCALL +Strace is a diagnostic and troubleshooting tool for printing out a trace +of all the system calls made by another process. It intercepts and +records the signals received by a process and the system calls which +are called by a process. The name of each system call, its arguments +and its return value are reported. + +This version of strace is maintained by Wichert Akkerman. diff --git a/sysutils/strace/Makefile b/sysutils/strace/Makefile index a30a09bbbd0..00adb660e62 100644 --- a/sysutils/strace/Makefile +++ b/sysutils/strace/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.1 2006/03/05 08:17:49 christos Exp $ +# $NetBSD: Makefile,v 1.2 2006/03/05 09:04:50 christos Exp $ # DISTNAME= strace-4.5.14 CATEGORIES= sysutils -MASTER_SITES= http://voxel.dl.sourceforge.net/sourceforge/strace/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=strace/} EXTRACT_SUFX= .tar.bz2 MAINTAINER= christos@NetBSD.org @@ -14,6 +14,4 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/${SRCBALL_NAME} HAS_CONFIGURE= yes CONFIGURE_ARGS+= --prefix=${PREFIX:Q} -.include "../../mk/bsd.prefs.mk" - .include "../../mk/bsd.pkg.mk" |