diff options
author | jgh <jgh@FreeBSD.org> | 2013-03-06 11:04:47 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2013-03-06 11:04:47 +0800 |
commit | 5353a5b988250aa78a27b3e2972b82132d11e285 (patch) | |
tree | bdc5c0a0befeac8b874bdfb37bfa8291ef9bd776 | |
parent | aef83a7742102421b7ec21a5481275ab8af3912a (diff) | |
download | freebsd-ports-graphics-5353a5b988250aa78a27b3e2972b82132d11e285.tar.gz freebsd-ports-graphics-5353a5b988250aa78a27b3e2972b82132d11e285.tar.zst freebsd-ports-graphics-5353a5b988250aa78a27b3e2972b82132d11e285.zip |
- 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
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/ptools/Makefile | 19 | ||||
-rw-r--r-- | sysutils/ptools/distinfo | 2 | ||||
-rw-r--r-- | sysutils/ptools/pkg-descr | 9 |
4 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index de5b1c61928..aa121444934 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -715,6 +715,7 @@ SUBDIR += psmisc SUBDIR += pstack SUBDIR += pstree + SUBDIR += ptools SUBDIR += puppet SUBDIR += puppet26 SUBDIR += puppet27 diff --git a/sysutils/ptools/Makefile b/sysutils/ptools/Makefile new file mode 100644 index 00000000000..090d9b9e1c6 --- /dev/null +++ b/sysutils/ptools/Makefile @@ -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> diff --git a/sysutils/ptools/distinfo b/sysutils/ptools/distinfo new file mode 100644 index 00000000000..a0e968430a8 --- /dev/null +++ b/sysutils/ptools/distinfo @@ -0,0 +1,2 @@ +SHA256 (ptools-0.1.tar.gz) = 2a04a7129acca0023231a0cb9aa915aa326e9fa8c580878e83ac4d83cf5701d4 +SIZE (ptools-0.1.tar.gz) = 3178 diff --git a/sysutils/ptools/pkg-descr b/sysutils/ptools/pkg-descr new file mode 100644 index 00000000000..1f9b0993cc2 --- /dev/null +++ b/sysutils/ptools/pkg-descr @@ -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/ |