mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Update to version 6.1 [1]
- Correct Makefile header - NOPORTDOCS -> ! ${PORT_OPTIONS:MDOCS} PR: ports/177088 [1] Submitted by: Jeremy Chadwick <jdc@koitsu.org> Approved by: Alex Samorukov <samm@os2.kiev.ua> (maintainer)
This commit is contained in:
parent
fa56e1424d
commit
d0b7c7e577
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=314695
4 changed files with 8 additions and 20 deletions
|
@ -1,8 +1,8 @@
|
||||||
# Create by: Eduard Martinescu
|
# Created by: Eduard Martinescu
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTNAME= smartmontools
|
PORTNAME= smartmontools
|
||||||
PORTVERSION= 6.0
|
PORTVERSION= 6.1
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
@ -27,7 +27,9 @@ MAN8= smartd.8 smartctl.8
|
||||||
|
|
||||||
PORTDOCS= *
|
PORTDOCS= *
|
||||||
|
|
||||||
.if defined(NOPORTDOCS)
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
|
.if ! ${PORT_OPTIONS:MDOCS}
|
||||||
CONFIGURE_ARGS+= --without-docdir --without-exampledir
|
CONFIGURE_ARGS+= --without-docdir --without-exampledir
|
||||||
.else
|
.else
|
||||||
CONFIGURE_ARGS+= --with-docdir=${DOCSDIR}
|
CONFIGURE_ARGS+= --with-docdir=${DOCSDIR}
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (smartmontools-6.0.tar.gz) = 9fe4ff2b7bcd00fde19db82bba168f5462ed6e857d3ef439495e304e3231d3a6
|
SHA256 (smartmontools-6.1.tar.gz) = a9003b8bccc82682f658ce76d70edb1842411e51dc56d4cd6b56618da1d9ce07
|
||||||
SIZE (smartmontools-6.0.tar.gz) = 771540
|
SIZE (smartmontools-6.1.tar.gz) = 787091
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
--- os_freebsd.cpp 2012-06-19 13:37:05.000000000 -0700
|
|
||||||
+++ os_freebsd.cpp 2012-07-02 01:51:10.998181000 -0700
|
|
||||||
@@ -1795,8 +1795,10 @@
|
|
||||||
* We are searching for latest name
|
|
||||||
*/
|
|
||||||
periph_result = &ccb.cdm.matches[i].result.periph_result;
|
|
||||||
- devname = strprintf("%s%s%d", _PATH_DEV, periph_result->periph_name, periph_result->unit_number);
|
|
||||||
- changed = 0;
|
|
||||||
+ if (strcmp(periph_result->periph_name, "pass")) {
|
|
||||||
+ devname = strprintf("%s%s%d", _PATH_DEV, periph_result->periph_name, periph_result->unit_number);
|
|
||||||
+ changed = 0;
|
|
||||||
+ }
|
|
||||||
};
|
|
||||||
if ((changed == 1 || show_all) && !devname.empty()) {
|
|
||||||
names.push_back(devname);
|
|
|
@ -1,6 +1,7 @@
|
||||||
@stopdaemon smartd
|
@stopdaemon smartd
|
||||||
etc/periodic/daily/smart
|
etc/periodic/daily/smart
|
||||||
etc/smartd.conf.sample
|
etc/smartd.conf.sample
|
||||||
|
etc/smartd_warning.sh
|
||||||
sbin/smartctl
|
sbin/smartctl
|
||||||
sbin/smartd
|
sbin/smartd
|
||||||
sbin/update-smart-drivedb
|
sbin/update-smart-drivedb
|
||||||
|
|
Loading…
Add table
Reference in a new issue