diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-01-28 09:57:32 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-01-28 09:57:32 +0000 |
commit | e9e08d32f48c8266dae93392cad8c14c868652c7 (patch) | |
tree | b2deedc3c4d4fb10a5c93f1bd3d43038afcdd921 /sysutils | |
parent | f0cda8d9794a2c74c7ab92d3c70d9c10886bbbb8 (diff) | |
download | ports-e9e08d32f48c8266dae93392cad8c14c868652c7.tar.gz ports-e9e08d32f48c8266dae93392cad8c14c868652c7.zip |
New port: sysutils/procenv, utility to show process environment.
PR: ports/175333
Submitted by: James Hunt
Notes
Notes:
svn path=/head/; revision=311104
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/procenv/Makefile | 24 | ||||
-rw-r--r-- | sysutils/procenv/distinfo | 2 | ||||
-rw-r--r-- | sysutils/procenv/pkg-descr | 6 |
4 files changed, 33 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index c6cbcfe0b339..f4038f78be5a 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -700,6 +700,7 @@ SUBDIR += pp SUBDIR += pprotectd SUBDIR += prips + SUBDIR += procenv SUBDIR += procmap SUBDIR += progsreiserfs SUBDIR += psgconf diff --git a/sysutils/procenv/Makefile b/sysutils/procenv/Makefile new file mode 100644 index 000000000000..7b3f9c271500 --- /dev/null +++ b/sysutils/procenv/Makefile @@ -0,0 +1,24 @@ +# Created by: James Hunt <james.hunt@ubuntu.com> +# $FreeBSD$ + +PORTNAME= procenv +PORTVERSION= 0.20 +CATEGORIES= sysutils +MASTER_SITES= http://launchpadlibrarian.net/128556138/ + +MAINTAINER= james.hunt@ubuntu.com +COMMENT= Utility to show process environment + +LICENSE= GPLv3 + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +MAN1= procenv.1 +PLIST_FILES= bin/procenv + +.if ${OSVERSION} < 800505 +BROKEN= does not build on old ${OPSYS} versions +.endif + +.include <bsd.port.mk> diff --git a/sysutils/procenv/distinfo b/sysutils/procenv/distinfo new file mode 100644 index 000000000000..8dfab27aa359 --- /dev/null +++ b/sysutils/procenv/distinfo @@ -0,0 +1,2 @@ +SHA256 (procenv-0.20.tar.gz) = 5405daba9373bc410ad227c0a1be1e960fe52f3ea070d55593cec46d11b7fe6a +SIZE (procenv-0.20.tar.gz) = 210631 diff --git a/sysutils/procenv/pkg-descr b/sysutils/procenv/pkg-descr new file mode 100644 index 000000000000..95803afe3851 --- /dev/null +++ b/sysutils/procenv/pkg-descr @@ -0,0 +1,6 @@ +This package contains command-line tool that displays as much detail about +itself and its environment as possible. It can be used as a test tool, to +understand the type of environment a process runs in, and for comparing +system environments. + +WWW: https://code.launchpad.net/procenv |