svn commit: r322218 - head/devel/strace

Sofian Brabez sbz at FreeBSD.org
Wed Jul 3 10:58:58 UTC 2013


Author: sbz
Date: Wed Jul  3 10:58:57 2013
New Revision: 322218
URL: http://svnweb.freebsd.org/changeset/ports/322218

Log:
  - Add LICENSE
  - Update COMMENT
  - Update pkg-descr
  - Remove unnecessary mkdir
  - Take maintainership

Modified:
  head/devel/strace/Makefile   (contents, props changed)
  head/devel/strace/pkg-descr   (contents, props changed)

Modified: head/devel/strace/Makefile
==============================================================================
--- head/devel/strace/Makefile	Wed Jul  3 10:22:40 2013	(r322217)
+++ head/devel/strace/Makefile	Wed Jul  3 10:58:57 2013	(r322218)
@@ -7,8 +7,10 @@ PORTREVISION=	1
 CATEGORIES=	devel sysutils
 MASTER_SITES=	SF
 
-MAINTAINER=	ports at FreeBSD.org
-COMMENT=	A portable process tracer
+MAINTAINER=	sbz at FreeBSD.org
+COMMENT=	System call tracer
+
+LICENSE=	BSD
 
 USES=		shebangfix
 USE_BZIP2=	yes
@@ -29,11 +31,11 @@ PORTDOCS=	AUTHORS COPYRIGHT CREDITS Chan
 .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}

Modified: head/devel/strace/pkg-descr
==============================================================================
--- head/devel/strace/pkg-descr	Wed Jul  3 10:22:40 2013	(r322217)
+++ head/devel/strace/pkg-descr	Wed Jul  3 10:58:57 2013	(r322218)
@@ -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/


More information about the svn-ports-all mailing list