73f7c91b5d
(Part 1)
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# New ports collection makefile for: smartmontools
|
|
# Date created: 12 October 2003
|
|
# Whom: Eduard Martinescu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= smartmontools
|
|
PORTVERSION= 5.26
|
|
PORTREVISION= 1
|
|
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
|
|
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?
|
|
|
|
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_DATA} ${WRKSRC}/smartd.initd \
|
|
${PREFIX}/etc/rc.d/smartd.sh.sample
|
|
@${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
|
|
pre-everything::
|
|
@${ECHO_MSG} "WARNING: ATAng is required to support monitoring of ATA devices,"
|
|
@${ECHO_MSG} "ATAng is available in 5.1-CURRENT (__FreeBSD_version > 501105)."
|
|
.endif
|
|
|
|
post-install:
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|