diff options
author | miwi <miwi@FreeBSD.org> | 2007-10-24 19:23:15 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-10-24 19:23:15 +0800 |
commit | 0ad6ac2d8abcfc50b1bd828343d86cb8c28dbee2 (patch) | |
tree | e491ac0c355988eee5e12f6c829e045ce855c64a /sysutils | |
parent | e74142de16a2683636725bc5f1fc551b4610dea9 (diff) | |
download | freebsd-ports-graphics-0ad6ac2d8abcfc50b1bd828343d86cb8c28dbee2.tar.gz freebsd-ports-graphics-0ad6ac2d8abcfc50b1bd828343d86cb8c28dbee2.tar.zst freebsd-ports-graphics-0ad6ac2d8abcfc50b1bd828343d86cb8c28dbee2.zip |
k8temp is a utility to read the on-die temperature sensors provided by
AMD K8 processors, including most Athlon 64's and Opterons.
WWW: http://hur.st/k8temp/
PR: ports/117405
Submitted by: Thomas Hurst <tom at hur.st>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/k8temp/Makefile | 26 | ||||
-rw-r--r-- | sysutils/k8temp/distinfo | 3 | ||||
-rw-r--r-- | sysutils/k8temp/pkg-descr | 4 |
4 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 9ccc8c5b75a..f9f26dc11c3 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -322,6 +322,7 @@ SUBDIR += jps SUBDIR += jtop SUBDIR += k3b + SUBDIR += k8temp SUBDIR += kcpuload SUBDIR += kcube SUBDIR += kdeadmin3 diff --git a/sysutils/k8temp/Makefile b/sysutils/k8temp/Makefile new file mode 100644 index 00000000000..bc646edf699 --- /dev/null +++ b/sysutils/k8temp/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: k8temp +# Date created: 21 October 2007 +# Whom: Thomas Hurst <tom@hur.st> +# +# $FreeBSD$ +# + +PORTNAME= k8temp +PORTVERSION= 0.1.1 +CATEGORIES= sysutils +MASTER_SITES= http://hur.st/k8temp/ + +MAINTAINER= tom@hur.st +COMMENT= Athlon 64 and Opteron on-die temperature reader + +MAN8= k8temp.8 + +PLIST_FILES= sbin/k8temp + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/k8temp ${PREFIX}/sbin +.if !defined(NOPORTDOCS) + ${INSTALL_MAN} ${WRKSRC}/k8temp.8 ${PREFIX}/man/man8 +.endif + +.include <bsd.port.mk> diff --git a/sysutils/k8temp/distinfo b/sysutils/k8temp/distinfo new file mode 100644 index 00000000000..2f7c3c8d0f7 --- /dev/null +++ b/sysutils/k8temp/distinfo @@ -0,0 +1,3 @@ +MD5 (k8temp-0.1.1.tar.gz) = eed1645460d6919f8f70a9d7f4929907 +SHA256 (k8temp-0.1.1.tar.gz) = 8907f5ea821dba4a47ec47ca0b80d3b770333e41e348b59136a618f709f934f9 +SIZE (k8temp-0.1.1.tar.gz) = 3439 diff --git a/sysutils/k8temp/pkg-descr b/sysutils/k8temp/pkg-descr new file mode 100644 index 00000000000..e77ff3fad61 --- /dev/null +++ b/sysutils/k8temp/pkg-descr @@ -0,0 +1,4 @@ +k8temp is a utility to read the on-die temperature sensors provided by +AMD K8 processors, including most Athlon 64's and Opterons. + +WWW: http://hur.st/k8temp/ |