mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
8301dfc889
Noticed by: Alex Wilkinson Approved by: maintainer silence Message-id: <B5C802E0-F1C9-11D8-A951-00039312D914@fillmore-labs.com>
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
# New ports collection makefile for: smartmontools
|
|
# Date created: 12 October 2003
|
|
# Whom: Eduard Martinescu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= smartmontools
|
|
PORTVERSION= 5.32
|
|
PORTREVISION= 0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= martines@rochester.rr.com
|
|
COMMENT= S.M.A.R.T. disk monitoring tools
|
|
|
|
USE_GMAKE= yes
|
|
USE_RC_SUBR= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-initscriptdir=${PREFIX}/etc/rc.d \
|
|
--with-docdir=${DOCSDIR} --enable-sample
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
PROGRAMS= smartctl smartd
|
|
MAN5= smartd.conf.5
|
|
MAN8= smartd.8 smartctl.8
|
|
DOCS= AUTHORS CHANGELOG INSTALL NEWS README TODO WARNINGS
|
|
EXAMPLES= smartd.conf examplescripts/README examplescripts/Example?
|
|
RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}
|
|
|
|
post-build:
|
|
${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
|
|
${FILESDIR}/smartd.sh > ${WRKDIR}/smartd.sh
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PROGRAMS} ${PREFIX}/sbin
|
|
cd ${WRKSRC} && ${INSTALL_MAN} ${MAN5} ${MANPREFIX}/man/man5
|
|
cd ${WRKSRC} && ${INSTALL_MAN} ${MAN8} ${MANPREFIX}/man/man8
|
|
${INSTALL_DATA} ${WRKSRC}/smartd.conf.sample ${PREFIX}/etc
|
|
${INSTALL_SCRIPT} ${WRKDIR}/smartd.sh ${PREFIX}/etc/rc.d/smartd.sh
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 501105
|
|
IGNORE= "ATAng is required to support monitoring of ATA devices"
|
|
.endif
|
|
|
|
post-install:
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|