Date: Wed, 3 Jul 2013 10:58:57 +0000 (UTC) From: Sofian Brabez <sbz@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322218 - head/devel/strace Message-ID: <201307031058.r63Awv5S033115@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307031058.r63Awv5S033115>