From owner-svn-ports-all@FreeBSD.ORG Wed Jul 3 10:58:58 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F1611FC2; Wed, 3 Jul 2013 10:58:57 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CA0651D6C; Wed, 3 Jul 2013 10:58:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r63AwvFe033117; Wed, 3 Jul 2013 10:58:57 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r63Awv5S033115; Wed, 3 Jul 2013 10:58:57 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201307031058.r63Awv5S033115@svn.freebsd.org> From: Sofian Brabez Date: Wed, 3 Jul 2013 10:58:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322218 - head/devel/strace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Jul 2013 10:58:58 -0000 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/