diff options
author | minskim <minskim@pkgsrc.org> | 2007-01-27 00:21:33 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-01-27 00:21:33 +0000 |
commit | 326d33e0b9bfa76ea44454d261b15fae1ba87587 (patch) | |
tree | 0208164577584c470283e521ae957841b59ccc39 /sysutils/pscpug | |
parent | fd364a98c28c7bcb9128209e2f95c161293aacf0 (diff) | |
download | pkgsrc-326d33e0b9bfa76ea44454d261b15fae1ba87587.tar.gz |
Import pscpug from pkgsrc-wip. Packaged by Bartosz Kuzma.
pscpug is a unix utility designed to graph a given process's CPU usage
over time. Since you can see changes over time, it is often more
useful than top for checking on a specific errant process.
Diffstat (limited to 'sysutils/pscpug')
-rw-r--r-- | sysutils/pscpug/DESCR | 3 | ||||
-rw-r--r-- | sysutils/pscpug/Makefile | 17 | ||||
-rw-r--r-- | sysutils/pscpug/PLIST | 3 | ||||
-rw-r--r-- | sysutils/pscpug/distinfo | 6 | ||||
-rw-r--r-- | sysutils/pscpug/patches/patch-aa | 15 |
5 files changed, 44 insertions, 0 deletions
diff --git a/sysutils/pscpug/DESCR b/sysutils/pscpug/DESCR new file mode 100644 index 00000000000..2b52c339d03 --- /dev/null +++ b/sysutils/pscpug/DESCR @@ -0,0 +1,3 @@ +pscpug is a unix utility designed to graph a given process's CPU usage +over time. Since you can see changes over time, it is often more +useful than top for checking on a specific errant process. diff --git a/sysutils/pscpug/Makefile b/sysutils/pscpug/Makefile new file mode 100644 index 00000000000..344661f4240 --- /dev/null +++ b/sysutils/pscpug/Makefile @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/01/27 00:21:33 minskim Exp $ +# + +DISTNAME= pscpug032 +PKGNAME= pscpug-0.3.2 +CATEGORIES= sysutils +MASTER_SITES= http://www.diablonet.net/~mercadal/projects/pscpug/ +EXTRACT_SUFX= .tgz + +MAINTAINER= bartosz@atom.eu.org +HOMEPAGE= http://www.diablonet.net/~mercadal/projects/pscpug/ +COMMENT= Graph a given process's CPU usage + +GNU_CONFIGURE= yes + +.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/sysutils/pscpug/PLIST b/sysutils/pscpug/PLIST new file mode 100644 index 00000000000..37c251814cc --- /dev/null +++ b/sysutils/pscpug/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2007/01/27 00:21:33 minskim Exp $ +bin/pscpug +man/man1/pscpug.1 diff --git a/sysutils/pscpug/distinfo b/sysutils/pscpug/distinfo new file mode 100644 index 00000000000..34491dc8912 --- /dev/null +++ b/sysutils/pscpug/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2007/01/27 00:21:33 minskim Exp $ + +SHA1 (pscpug032.tgz) = 03da889738d791e3316a91da10b20be83662d977 +RMD160 (pscpug032.tgz) = fc3aa7289e0051f0f25b5695987d77a7f93d4fbb +Size (pscpug032.tgz) = 40378 bytes +SHA1 (patch-aa) = 850f16cdbd285e7700f2b75e3dbcf051bf43f56c diff --git a/sysutils/pscpug/patches/patch-aa b/sysutils/pscpug/patches/patch-aa new file mode 100644 index 00000000000..614a32eb10a --- /dev/null +++ b/sysutils/pscpug/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1.1.1 2007/01/27 00:21:33 minskim Exp $ + +--- Makefile.in.orig 2006-06-08 22:24:47.000000000 -0700 ++++ Makefile.in +@@ -26,8 +26,8 @@ ${EXE} : ${OBJ} + @CC@ @LIBS@ -o $@ ${OBJ} + + install : +- @INSTALL_DATA@ ${EXE} @bindir@ +- @INSTALL@ -m 644 ${MAN} @mandir@/man1/ ++ ${BSD_INSTALL_PROGRAM} ${EXE} @bindir@ ++ ${BSD_INSTALL_MAN} ${MAN} @mandir@/man1/ + + clean : + -rm -f ${OBJ} ${EXE} config.log config.status configure.lineno Makefile .DS_Store |