diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-25 12:50:45 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-25 12:50:45 +0000 |
commit | b703cd531ba01e2fd0a80f171063144502e4e1c5 (patch) | |
tree | 907ccd8eb29530b0cc4cd0c4b0048f958e6dcf16 /sysutils/bsdhwmon | |
parent | 0cbe65e47c9209d69ce010b5ab926c714387ecb1 (diff) | |
download | ports-b703cd531ba01e2fd0a80f171063144502e4e1c5.tar.gz ports-b703cd531ba01e2fd0a80f171063144502e4e1c5.zip |
Notes
Diffstat (limited to 'sysutils/bsdhwmon')
-rw-r--r-- | sysutils/bsdhwmon/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sysutils/bsdhwmon/Makefile b/sysutils/bsdhwmon/Makefile index c0aab2290a3b..7aa952904019 100644 --- a/sysutils/bsdhwmon/Makefile +++ b/sysutils/bsdhwmon/Makefile @@ -9,21 +9,18 @@ MASTER_SITES= http://bsdhwmon.koitsu.org/dist/ MAINTAINER= jdc@koitsu.org COMMENT= Hardware sensor monitoring utility for FreeBSD -PLIST_FILES= sbin/bsdhwmon -MAN8= bsdhwmon.8 +PLIST_FILES= sbin/bsdhwmon man/man8/bsdhwmon.8.gz OPTIONS_DEFINE= DEBUG -DEBUG_DESC= Enable debug build -NO_STAGE= yes -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MDEBUG} MAKE_ARGS+= DEBUG=1 .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bsdhwmon ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/bsdhwmon.8 ${MAN8PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/bsdhwmon ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/bsdhwmon.8 ${STAGEDIR}${MANPREFIX}/man/man8 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |