diff options
author | miwi <miwi@FreeBSD.org> | 2010-05-02 20:10:21 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-05-02 20:10:21 +0800 |
commit | eb225267af0a5445cf300c250f86fe8665b891ea (patch) | |
tree | b5ed7f927f0443808663834fd99fae9d4c75457d /sysutils | |
parent | 44fd543a3b0966decb1b0b9f83567ccee40ac67b (diff) | |
download | freebsd-ports-gnome-eb225267af0a5445cf300c250f86fe8665b891ea.tar.gz freebsd-ports-gnome-eb225267af0a5445cf300c250f86fe8665b891ea.tar.zst freebsd-ports-gnome-eb225267af0a5445cf300c250f86fe8665b891ea.zip |
The sys-cpu library provides an interface for gathering
information about your system's CPU. This includes not
only technical data such as processor type, but also
CPU statistics, such as load average information.
It is part of a library of a set libraries for various
system administration tasks, such as gathering
information about users, processes, your CPU, the
filesystem, and so on.
WWW: http://rubyforge.org/projects/sysutils
WWW: http://sysutils.rubyforge.org/
PR: ports/146057
Submitted by: Eric Freeman <freebsdports at chillibear.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/rubygem-sys-cpu/Makefile | 20 | ||||
-rw-r--r-- | sysutils/rubygem-sys-cpu/distinfo | 3 | ||||
-rw-r--r-- | sysutils/rubygem-sys-cpu/pkg-descr | 12 |
4 files changed, 36 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 5e8e5deb9163..e740f90bdf53 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -718,6 +718,7 @@ SUBDIR += rubygem-capistrano SUBDIR += rubygem-god SUBDIR += rubygem-ohai + SUBDIR += rubygem-sys-cpu SUBDIR += runit SUBDIR += runwhen SUBDIR += safe-rm diff --git a/sysutils/rubygem-sys-cpu/Makefile b/sysutils/rubygem-sys-cpu/Makefile new file mode 100644 index 000000000000..98148e4ffae5 --- /dev/null +++ b/sysutils/rubygem-sys-cpu/Makefile @@ -0,0 +1,20 @@ +# Ports collection makefile for: rubygem-sys-cpu +# Date created: 25 April 2010 +# Whom: Eric Freeman <freebsdports@chillibear.com> +# +# $FreeBSD$ +# + +PORTNAME= sys-cpu +PORTVERSION= 0.6.1 +CATEGORIES= sysutils rubygems +MASTER_SITES= RF/sysutils + +MAINTAINER= freebsdports@chillibear.com +COMMENT= Provides an interface for getting information about the CPU + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/sysutils/rubygem-sys-cpu/distinfo b/sysutils/rubygem-sys-cpu/distinfo new file mode 100644 index 000000000000..015f800530a4 --- /dev/null +++ b/sysutils/rubygem-sys-cpu/distinfo @@ -0,0 +1,3 @@ +MD5 (rubygem/sys-cpu-0.6.1.gem) = dc2a86c1f116a72a91e5ddb34ccbaa3e +SHA256 (rubygem/sys-cpu-0.6.1.gem) = 5650dcba3060b1e14bc3e45737c4b6a5f93e42ffbb9ea9014688df620096babb +SIZE (rubygem/sys-cpu-0.6.1.gem) = 13824 diff --git a/sysutils/rubygem-sys-cpu/pkg-descr b/sysutils/rubygem-sys-cpu/pkg-descr new file mode 100644 index 000000000000..407676e24c29 --- /dev/null +++ b/sysutils/rubygem-sys-cpu/pkg-descr @@ -0,0 +1,12 @@ +The sys-cpu library provides an interface for gathering +information about your system's CPU. This includes not +only technical data such as processor type, but also +CPU statistics, such as load average information. + +It is part of a library of a set libraries for various +system administration tasks, such as gathering +information about users, processes, your CPU, the +filesystem, and so on. + +WWW: http://rubyforge.org/projects/sysutils +WWW: http://sysutils.rubyforge.org/ |