diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-09-17 19:09:23 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-09-17 19:09:23 +0000 |
commit | e286fd3b8e65fac29de37298fc08b05e31fc2b8f (patch) | |
tree | 4ad9ef529311be5727a588c267d466a7f02c4d93 /sysutils/gkrellm2 | |
parent | 1561199a91ed9f539076aee6a7b6294fcc743ecf (diff) |
Notes
Diffstat (limited to 'sysutils/gkrellm2')
-rw-r--r-- | sysutils/gkrellm2/Makefile | 14 | ||||
-rw-r--r-- | sysutils/gkrellm2/pkg-message | 10 |
2 files changed, 14 insertions, 10 deletions
diff --git a/sysutils/gkrellm2/Makefile b/sysutils/gkrellm2/Makefile index 6915db2cd86e..863f909a0fa8 100644 --- a/sysutils/gkrellm2/Makefile +++ b/sysutils/gkrellm2/Makefile @@ -22,10 +22,12 @@ INCLUDES= gkrellm.h gkrellm_public_proto.h MAN1= gkrellm.1 DOCS= COPYRIGHT README Themes.html -# You should aware that GKrellM must be setuid root to obtain -# temperatures. If your motherboard doesn't support LM78/79 feature, -# you may not want this. -# WITHOUT_SENSOR=yes +# If you want to support LM78/79 feature, set this to `yes'. You +# should aware that GKrellM must be setuid root to obtain +# temperatures. Furthermore, this causes problem on some +# motherboards. If your motherboard doesn't support LM78/79 feature, +# you should not enable this. +# WITH_SENSOR=yes .include <bsd.port.pre.mk> @@ -36,7 +38,7 @@ ALL_TARGET= freebsd .endif BINGRP= kmem -.if !defined(WITHOUT_SENSOR) +.if defined(WITH_SENSOR) BINOWN= root BINMODE= 4111 .else @@ -67,7 +69,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/gkrellm .endfor .endif -.if !defined(WITHOUT_SENSOR) +.if !defined(WITH_SENSOR) @${CAT} ${PKGMESSAGE} .endif diff --git a/sysutils/gkrellm2/pkg-message b/sysutils/gkrellm2/pkg-message index 70c1f568cdd0..039d8d9dacf8 100644 --- a/sysutils/gkrellm2/pkg-message +++ b/sysutils/gkrellm2/pkg-message @@ -1,9 +1,11 @@ **************************************************************************** - You should aware that GKrellM must be setuid root to obtain - temperatures. If your motherboard doesn't support LM78/79 feature, - you may not want this. You can disable it by typing - `make install WITHOUT_SENSOR=yes' at the "${PORTSDIR}/sysutils/gkrellm" + If you want to support LM78/79 feature, + `make install WITH_SENSOR=yes' at the "${PORTSDIR}/sysutils/gkrellm" directory to re-make this package. + You should aware that GKrellM must be setuid root to obtain + temperatures. Furthermore, this causes problem on some + motherboards. If your motherboard doesn't support LM78/79 feature, + you should not enable this. **************************************************************************** |