4e30f95e65
- Fix email address in header - Pass maintainer to submitter "This fixes a major bug which was tickled with a kernel update of src/sys/dev/smbus/smb.c on 2009/05/15, after which bsdhwmon would spit out incorrect data to the user due to not using the correct SMBus slave address. Users of 20090703 on older (pre-May) kernels should not see any regression/breakage either." PR: ports/136278 Submitted by: Jeremy Chadwick <jdc@parodius.com>
29 lines
623 B
Makefile
29 lines
623 B
Makefile
# New ports collection makefile for: bsdhwmon
|
|
# Date created: 5 October 2008
|
|
# Whom: Jeremy Chadwick <jdc@parodius.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bsdhwmon
|
|
PORTVERSION= 20090703
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://bsdhwmon.parodius.com/dist/
|
|
|
|
MAINTAINER= jdc@parodius.com
|
|
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>
|