diff options
author | koitsu <koitsu@FreeBSD.org> | 2008-10-05 22:50:12 +0800 |
---|---|---|
committer | koitsu <koitsu@FreeBSD.org> | 2008-10-05 22:50:12 +0800 |
commit | 92ee0d285c3b5f000288087a90e83901b3d88581 (patch) | |
tree | e315e924785d8398c0e1c4b0bc6a4fb5fd8e097e /sysutils/bsdhwmon | |
parent | 4c823e84304b6cd445bd10e29f90ab7f3ca0d360 (diff) | |
download | freebsd-ports-gnome-92ee0d285c3b5f000288087a90e83901b3d88581.tar.gz freebsd-ports-gnome-92ee0d285c3b5f000288087a90e83901b3d88581.tar.zst freebsd-ports-gnome-92ee0d285c3b5f000288087a90e83901b3d88581.zip |
bsdhwmon(8) is a program for FreeBSD for monitoring hardware sensors (fans,
temperatures, voltages, chassis intrusion, and more) on commerical-grade server
hardware. bsdhwmon(8) is developed with a very different mentality compared to
other softwares:
- Written with stability and production datacenter environments in mind
- Intended for use with server products (Intel, Supermicro, Tyan, and possibly
others)
- Solely uses smb(4), significantly decreasing risks and CPU usage
- Based heavily on documentation provided from the server and H/W monitoring IC
manufacturers
- Full tested on both i386 and amd64 systems, using RELENG_6 and RELENG_7
- Written entirely in C
- Completely standalone; relies on no third-party libraries or tools (autoconf,
etc.)
- Very simple and clean code (heavily commented, well-documented, emits no
warnings)
- Open-source, released under the FreeBSD 2-clause BSD license
Diffstat (limited to 'sysutils/bsdhwmon')
-rw-r--r-- | sysutils/bsdhwmon/Makefile | 29 | ||||
-rw-r--r-- | sysutils/bsdhwmon/distinfo | 3 | ||||
-rw-r--r-- | sysutils/bsdhwmon/pkg-descr | 20 |
3 files changed, 52 insertions, 0 deletions
diff --git a/sysutils/bsdhwmon/Makefile b/sysutils/bsdhwmon/Makefile new file mode 100644 index 000000000000..a96a7d2244c9 --- /dev/null +++ b/sysutils/bsdhwmon/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: bsdhwmon +# Date created: 5 October 2008 +# Whom: Jeremy Chadwick <koitsu@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= bsdhwmon +PORTVERSION= 20081005 +CATEGORIES= sysutils +MASTER_SITES= http://bsdhwmon.parodius.com/dist/ + +MAINTAINER= koitsu@FreeBSD.org +COMMENT= Hardware sensor monitoring utility for FreeBSD + +PLIST_FILES= sbin/bsdhwmon +MAN8= bsdhwmon.8 + +.if defined(WITH_DEBUG) +MAKE_ARGS+= DEBUG=1 +.endif + +.include <bsd.port.pre.mk> + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bsdhwmon ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/bsdhwmon.8 ${MAN8PREFIX}/man/man8 + +.include <bsd.port.post.mk> diff --git a/sysutils/bsdhwmon/distinfo b/sysutils/bsdhwmon/distinfo new file mode 100644 index 000000000000..91dc1e7fea6d --- /dev/null +++ b/sysutils/bsdhwmon/distinfo @@ -0,0 +1,3 @@ +MD5 (bsdhwmon-20081005.tar.gz) = eb446988b1cd4c5351f8e9c1e3d331a5 +SHA256 (bsdhwmon-20081005.tar.gz) = 68cd3f9c75e84c1550781a2763936bd1c2fe462604009790da4a781607c9c05b +SIZE (bsdhwmon-20081005.tar.gz) = 15868 diff --git a/sysutils/bsdhwmon/pkg-descr b/sysutils/bsdhwmon/pkg-descr new file mode 100644 index 000000000000..70136a1542ef --- /dev/null +++ b/sysutils/bsdhwmon/pkg-descr @@ -0,0 +1,20 @@ +bsdhwmon(8) is a program for FreeBSD for monitoring hardware sensors (fans, +temperatures, voltages, chassis intrusion, and more) on commerical-grade server +hardware. bsdhwmon(8) is developed with a very different mentality compared to +other softwares: + +- Written with stability and production datacenter environments in mind +- Intended for use with server products (Intel, Supermicro, Tyan, and possibly + others) +- Solely uses smb(4), significantly decreasing risks and CPU usage +- Based heavily on documentation provided from the server and H/W monitoring IC + manufacturers +- Full tested on both i386 and amd64 systems, using RELENG_6 and RELENG_7 +- Written entirely in C +- Completely standalone; relies on no third-party libraries or tools (autoconf, + etc.) +- Very simple and clean code (heavily commented, well-documented, emits no + warnings) +- Open-source, released under the FreeBSD 2-clause BSD license + +WWW: http://bsdhwmon.parodius.com/ |