diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-09-13 10:10:09 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-09-13 10:10:09 +0800 |
commit | 6c0f96e6befdb015e257553f41c2ffb7658b3535 (patch) | |
tree | 4202055d5ff17a9b458994a9a834d8549d9fa306 /sysutils/pcpustat | |
parent | 295763f365000e9fdd860a300bb463fd284a9052 (diff) | |
download | freebsd-ports-gnome-6c0f96e6befdb015e257553f41c2ffb7658b3535.tar.gz freebsd-ports-gnome-6c0f96e6befdb015e257553f41c2ffb7658b3535.tar.zst freebsd-ports-gnome-6c0f96e6befdb015e257553f41c2ffb7658b3535.zip |
pcpustat provides per-cpu usage statistics in a format that can be piped.
WWW: http://chipstips.com/?tag=c_pcpustat
PR: ports/149040
Submitted by: sterling
Diffstat (limited to 'sysutils/pcpustat')
-rw-r--r-- | sysutils/pcpustat/Makefile | 30 | ||||
-rw-r--r-- | sysutils/pcpustat/distinfo | 3 | ||||
-rw-r--r-- | sysutils/pcpustat/files/license.txt | 25 | ||||
-rw-r--r-- | sysutils/pcpustat/pkg-descr | 3 |
4 files changed, 61 insertions, 0 deletions
diff --git a/sysutils/pcpustat/Makefile b/sysutils/pcpustat/Makefile new file mode 100644 index 000000000000..da079a198b65 --- /dev/null +++ b/sysutils/pcpustat/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: pcpustat +# Date created: 13 July 2010 +# Whom: sterling +# +# $FreeBSD$ +# + +PORTNAME= pcpustat +PORTVERSION= 1.1 +CATEGORIES= sysutils +MASTER_SITES= http://chipstips.com/download/ + +MAINTAINER= sterling@camdensoftware.com +COMMENT= Per-CPU usage statistics + +MAN1= pcpustat.1 + +USE_BZIP2= yes +PLIST_FILES= bin/pcpustat + +LICENSE= OWL +LICENSE_NAME= Open Works License +LICENSE_PERMS= none +LICENSE_FILE= ${FILESDIR}/license.txt + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/man1/${PORTNAME}.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/sysutils/pcpustat/distinfo b/sysutils/pcpustat/distinfo new file mode 100644 index 000000000000..e0049abd4720 --- /dev/null +++ b/sysutils/pcpustat/distinfo @@ -0,0 +1,3 @@ +MD5 (pcpustat-1.1.tar.bz2) = 2e5300fb722250e0ee549432da916273 +SHA256 (pcpustat-1.1.tar.bz2) = c60beff5cce7ea49b26de6ead1515345d4ad31e3fd43d5e80667e0ec5b789535 +SIZE (pcpustat-1.1.tar.bz2) = 4040 diff --git a/sysutils/pcpustat/files/license.txt b/sysutils/pcpustat/files/license.txt new file mode 100644 index 000000000000..289bfbb5e90e --- /dev/null +++ b/sysutils/pcpustat/files/license.txt @@ -0,0 +1,25 @@ +# Open Works License + +This is version 0.7 of the Open Works License. + +## Terms + +Permission is hereby granted by the copyright holder(s), author(s), +and contributor(s) of this work, to any person who obtains a copy of +this work, in any form, to reproduce, modify, distribute, publish, +sell, use, or otherwise deal in the licensed material without +restriction, provided the following conditions are met: + +1. Redistributions, modified or unmodified, in whole or in part, must + retain the above license notice, this list of conditions, and the + following disclaimer. + +2. Redistributions, modified or unmodified, in whole or in part, must + retain any applicable notices of attribution and copyright. + +No warranty or guarantee is implied, or should be inferred, by this +license or the act of distribution under the terms of this license. +This license does not grant permission to use the trade names, +trademarks, service marks, product names, or other identifications +used by the licensor except as required for reasonable and customary +use in reproducing, and describing the origin or use of, the work. diff --git a/sysutils/pcpustat/pkg-descr b/sysutils/pcpustat/pkg-descr new file mode 100644 index 000000000000..ef2e7cdb6e4c --- /dev/null +++ b/sysutils/pcpustat/pkg-descr @@ -0,0 +1,3 @@ +pcpustat provides per-cpu usage statistics in a format that can be piped. + +WWW: http://chipstips.com/?tag=c_pcpustat |