summaryrefslogtreecommitdiff
path: root/sysutils/jps
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-03-30 01:10:54 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-03-30 01:10:54 +0000
commitc6254c1a30833939b8f663996dd83674155cfb7c (patch)
tree7bd919110013208d5e534aeead3c69b984cc35c3 /sysutils/jps
parentAdd jtop, a perl wrapper to "top(1)" that gets its output and maps pids to ja... (diff)
Add jps, a perl wrapper to "ps(1)" that gets its output and maps pids to jails.
The wrapper takes all "ps(1)" options and passed then to the "ps(1)" if some specified. When no options specified the wrapper uses default options. No additional software or tools like "jailer(8)" needed. WWW: http://ext.by/jps/ PR: ports/64813 Submitted by: Pavel Novikov <pavel@ext.by>
Notes
Notes: svn path=/head/; revision=105661
Diffstat (limited to 'sysutils/jps')
-rw-r--r--sysutils/jps/Makefile23
-rw-r--r--sysutils/jps/distinfo2
-rw-r--r--sysutils/jps/pkg-descr8
3 files changed, 33 insertions, 0 deletions
diff --git a/sysutils/jps/Makefile b/sysutils/jps/Makefile
new file mode 100644
index 000000000000..84fd06790d78
--- /dev/null
+++ b/sysutils/jps/Makefile
@@ -0,0 +1,23 @@
+# New ports collection makefile for: jps
+# Date created: 27 March 2004
+# Whom: Pavel Novikov
+#
+# $FreeBSD$
+#
+
+PORTNAME= jps
+PORTVERSION= 1.0
+CATEGORIES= sysutils
+MASTER_SITES= http://ext.by/jps/
+
+MAINTAINER= pavel@ext.by
+COMMENT= Wrapper to ps(1) that maps pids to jails
+
+BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey
+RUN_DEPENDS= ${BUILD_DEPENDS}
+
+MAN1= jps.1
+MANCOMPRESSED= yes
+PLIST_FILES= bin/jps
+
+.include <bsd.port.mk>
diff --git a/sysutils/jps/distinfo b/sysutils/jps/distinfo
new file mode 100644
index 000000000000..47c0677d60ee
--- /dev/null
+++ b/sysutils/jps/distinfo
@@ -0,0 +1,2 @@
+MD5 (jps-1.0.tar.gz) = 4e0f1842e6ac9e1849dcf8dbc0cd5d16
+SIZE (jps-1.0.tar.gz) = 2425
diff --git a/sysutils/jps/pkg-descr b/sysutils/jps/pkg-descr
new file mode 100644
index 000000000000..d2ee7b69ec85
--- /dev/null
+++ b/sysutils/jps/pkg-descr
@@ -0,0 +1,8 @@
+This a perl wrapper to "ps(1)" that gets its output and maps pids to jails.
+
+The wrapper takes all "ps(1)" options and passed then to the "ps(1)" if some
+specified. When no options specified the wrapper uses default options.
+
+No additional software or tools like "jailer(8)" needed.
+
+WWW: http://ext.by/jps/