aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsbz <sbz@FreeBSD.org>2013-07-03 18:58:57 +0800
committersbz <sbz@FreeBSD.org>2013-07-03 18:58:57 +0800
commit5d0bcfee3fe4d60f401704c89a288725b94c4b8d (patch)
treee0283a0439d78d536c9af0afd417d0c320d8c340
parent48bd3c2a0bff9a9371817f0501d534ed40bfd1df (diff)
downloadfreebsd-ports-gnome-5d0bcfee3fe4d60f401704c89a288725b94c4b8d.tar.gz
freebsd-ports-gnome-5d0bcfee3fe4d60f401704c89a288725b94c4b8d.tar.zst
freebsd-ports-gnome-5d0bcfee3fe4d60f401704c89a288725b94c4b8d.zip
- Add LICENSE
- Update COMMENT - Update pkg-descr - Remove unnecessary mkdir - Take maintainership
-rw-r--r--devel/strace/Makefile10
-rw-r--r--devel/strace/pkg-descr13
2 files changed, 12 insertions, 11 deletions
diff --git a/devel/strace/Makefile b/devel/strace/Makefile
index d9b55faeb8f0..cae6fccb9a3e 100644
--- a/devel/strace/Makefile
+++ b/devel/strace/Makefile
@@ -7,8 +7,10 @@ PORTREVISION= 1
CATEGORIES= devel sysutils
MASTER_SITES= SF
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A portable process tracer
+MAINTAINER= sbz@FreeBSD.org
+COMMENT= System call tracer
+
+LICENSE= BSD
USES= shebangfix
USE_BZIP2= yes
@@ -29,11 +31,11 @@ PORTDOCS= AUTHORS COPYRIGHT CREDITS ChangeLog NEWS PORTING \
.endif
do-install:
- @${MKDIR} ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/strace ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/strace-graph ${PREFIX}/bin
- @${MKDIR} ${MANPREFIX}/man/man1
+
${INSTALL_MAN} ${WRKSRC}/strace.1 ${MANPREFIX}/man/man1
+
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
diff --git a/devel/strace/pkg-descr b/devel/strace/pkg-descr
index 4ec20d2d2e36..3f1d01bc83c1 100644
--- a/devel/strace/pkg-descr
+++ b/devel/strace/pkg-descr
@@ -1,11 +1,10 @@
-Strace is a process tracer, i.e. a debugging tool that prints out
-a trace of all the system calls made and signals received by a
-process itself or a process and its descendants.
+strace is a system call tracer, i.e. a debugging tool which prints out a trace
+of all the system calls made by a another process/program.
-Strace is similar to the native BSD ``truss'' utility, but it's
-output style is more convenient in most cases.
+strace is similar to the native BSD ``truss'' utility, but it's output style is
+more convenient in most cases.
-For strace to work, procfs has to be mounted. FreeBSD does not
-mount it by default. For more information, man procfs.
+For strace to work, procfs has to be mounted. FreeBSD does not mount it by
+default. For more information, man procfs.
WWW: http://sourceforge.net/projects/strace/