forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
42 lines
887 B
Makefile
42 lines
887 B
Makefile
# Created by: Eduard Martinescu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smartmontools
|
|
PORTVERSION= 7.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= S.M.A.R.T. disk monitoring tools
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= alias compiler:c++11-lib gmake shebangfix
|
|
|
|
CONFLICTS= smartmontools-devel-[0-9]*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
SHEBANG_FILES= examplescripts/Example5
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-dependency-tracking \
|
|
--enable-sample \
|
|
--with-nvme-devicescan=yes \
|
|
--with-initscriptdir=${PREFIX}/etc/rc.d
|
|
|
|
SUB_FILES= pkg-message smart
|
|
USE_RC_SUBR= smartd
|
|
|
|
PORTDOCS= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's| install-initdDATA| |' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
${INSTALL_SCRIPT} ${WRKDIR}/smart \
|
|
${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
|
|
.include <bsd.port.mk>
|