Date: Wed, 6 Mar 2013 03:04:47 +0000 (UTC) From: Jason Helfman <jgh@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313497 - in head/sysutils: . ptools Message-ID: <201303060304.r2634lr1039711@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jgh Date: Wed Mar 6 03:04:47 2013 New Revision: 313497 URL: http://svnweb.freebsd.org/changeset/ports/313497 Log: - add new port: sysutils/ptools Ptools is a toolset based on Solaris ptools functionality. At this time, four tools are provided: * pargs - Display process arguments * pldd - Display dynamic linker dependencies * pwdx - Display process working directory * ptree - Display process hierarchy as tree (with jail option -j) WWW: http://shewolf.com.pl/ptools/ PR: 176634 Submitted by: tmwalaszek@gmail.com Added: head/sysutils/ptools/ head/sysutils/ptools/Makefile (contents, props changed) head/sysutils/ptools/distinfo (contents, props changed) head/sysutils/ptools/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Mar 6 03:04:32 2013 (r313496) +++ head/sysutils/Makefile Wed Mar 6 03:04:47 2013 (r313497) @@ -715,6 +715,7 @@ SUBDIR += psmisc SUBDIR += pstack SUBDIR += pstree + SUBDIR += ptools SUBDIR += puppet SUBDIR += puppet26 SUBDIR += puppet27 Added: head/sysutils/ptools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ptools/Makefile Wed Mar 6 03:04:47 2013 (r313497) @@ -0,0 +1,19 @@ +# Created by: Tomasz Walaszek <tmwalaszek@gmail.com> +# $FreeBSD$ + +PORTNAME= ptools +PORTVERSION= 0.1 +CATEGORIES= sysutils +MASTER_SITES= http://shewolf.com.pl/ptools/ + +MAINTAINER= tmwalaszek@gmail.com +COMMENT= Toolset based on Solaris ptools functionality + +LICENSE= BSD + +PLIST_FILES= bin/pargs \ + bin/pwdx \ + bin/pldd \ + bin/ptree + +.include <bsd.port.mk> Added: head/sysutils/ptools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ptools/distinfo Wed Mar 6 03:04:47 2013 (r313497) @@ -0,0 +1,2 @@ +SHA256 (ptools-0.1.tar.gz) = 2a04a7129acca0023231a0cb9aa915aa326e9fa8c580878e83ac4d83cf5701d4 +SIZE (ptools-0.1.tar.gz) = 3178 Added: head/sysutils/ptools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ptools/pkg-descr Wed Mar 6 03:04:47 2013 (r313497) @@ -0,0 +1,9 @@ +Ptools is a toolset based on Solaris ptools functionality. + +At this time, four tools are provided: +* pargs - Display process arguments +* pldd - Display dynamic linker dependencies +* pwdx - Display process working directory +* ptree - Display process hierarchy as tree (with jail option -j) + +WWW: http://shewolf.com.pl/ptools/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303060304.r2634lr1039711>