aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/healthd/Makefile
blob: 8199af3aa58c0da8968645eeacc099d6c72166f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# New ports collection makefile for:    healthd
# Date created:     15 November 1999
# Whom:         jim@thehousleys.net
#
# $FreeBSD$
#

PORTNAME=   healthd
PORTVERSION=    0.7.6
PORTREVISION=   0
CATEGORIES= sysutils ipv6
MASTER_SITES=   http://healthd.thehousleys.net/ \
        http://www.pr-comm.ca/healthd/

MAINTAINER= jeh@FreeBSD.org
COMMENT=    A daemon to monitor vital motherboard parameters

ONLY_FOR_ARCHS= i386

HAS_CONFIGURE=  yes
CONFIGURE_ARGS= --exec-prefix=${PREFIX}
#
# To allow reading the doWarn and doFail scripts remotely uncomment
# the following line.  Enabling the following option might provide
# information about the configuration of you system.
#CONFIGURE_ARGS+= --enable-full-config

MAN8=       healthd.8 healthdc.8
INSTALL_TARGET= install-all

HDDOCDIR=   ${PREFIX}/share/doc/healthd

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)
CONFIGURE_ARGS+=    --disable-ipv6
.endif

.if ${OSVERSION} >= 500038
RC_SUBR?=   /etc/rc.subr
.else
USE_RC_SUBR=    yes
.endif

post-install:
    ${INSTALL_SCRIPT} -m 751 ${WRKSRC}/healthd.sh ${PREFIX}/etc/rc.d/healthd.sh
    @if [ ! -f ${PREFIX}/etc/healthd.conf ]; then \
        ${ECHO} "Installing ${PREFIX}/etc/healthd.conf configuration file."; \
        ${ECHO} "It is recommended you edit this file to match your system"; \
        ${ECHO} "before running the program."; \
        ${CP} ${PREFIX}/etc/healthd.conf.sample ${PREFIX}/etc/healthd.conf; \
    fi
.if !defined(NOPORTDOCS)
    @if ! [ -d ${HDDOCDIR} ]; then ${MKDIR} ${HDDOCDIR}; fi
    ${INSTALL_DATA} ${WRKSRC}/README ${HDDOCDIR}
    ${INSTALL_DATA} ${WRKSRC}/PROTOCOL ${HDDOCDIR}
.endif

.include <bsd.port.post.mk>