mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
41 lines
948 B
Makefile
41 lines
948 B
Makefile
# Created by: jim@thehousleys.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= healthd
|
|
PORTVERSION= 0.7.9
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils ipv6
|
|
MASTER_SITES= http://healthd.thehousleys.net/ \
|
|
LOCAL/ohauer
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Daemon to monitor vital motherboard parameters
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
OPTIONS_DEFINE= IPV6 FULL_CONFIG DOCS
|
|
|
|
FULL_CONFIG_DESC= Remotely reading the full config
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
FULL_CONFIG_CONFIGURE_ENABLE= full-config
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--exec-prefix=${PREFIX}
|
|
INSTALL_TARGET= install-all
|
|
SUB_FILES= pkg-message
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's| @exec_prefix@| $$(DESTDIR)@exec_prefix@|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/PROTOCOL ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|