diff --git a/sysutils/smartmontools/Portfile b/sysutils/smartmontools/Portfile
index 048bebc..d48cdc7 100644
a
|
b
|
|
4 | 4 | PortSystem 1.0 |
5 | 5 | |
6 | 6 | name smartmontools |
7 | | version 6.3 |
8 | | revision 1 |
| 7 | version 6.4 |
9 | 8 | categories sysutils |
10 | 9 | license GPL-2+ |
11 | 10 | platforms darwin |
12 | 11 | |
13 | | maintainers nomaintainer |
| 12 | maintainers gmail.com:rjvbertin openmaintainer |
14 | 13 | |
15 | 14 | description SMART hard drive monitoring |
16 | 15 | |
… |
… |
long_description \ |
24 | 23 | homepage http://smartmontools.sourceforge.net/ |
25 | 24 | master_sites sourceforge |
26 | 25 | |
27 | | checksums rmd160 b51fa0dfd15820d33fb00506853b34bbebadd096 \ |
28 | | sha256 a777065d1a5965d71b3672e054b09b7696200ec73aaf45ab636f34016538fe19 |
| 26 | checksums rmd160 a90387c07488cfd3b1f87a34dcf9297983e174c5 \ |
| 27 | sha256 eab75600c1eda9c34b13097db71138ab376f3dad8a6a4667fb4d1d081feb7a85 |
29 | 28 | |
30 | 29 | configure.args --mandir=${prefix}/share/man \ |
31 | | --enable-drivedb \ |
32 | | --disable-savestates \ |
33 | | --disable-attributelog \ |
| 30 | --with-drivedb \ |
| 31 | --without-savestates \ |
| 32 | --without-attributelog \ |
34 | 33 | --enable-sample \ |
35 | 34 | --with-libcap-ng=no |
36 | 35 | |
… |
… |
destroot.keepdirs ${destroot}${prefix}/var/run \ |
40 | 39 | default_variants +savestates +attributelog |
41 | 40 | |
42 | 41 | variant savestates description {Use default smartd state files} { |
43 | | configure.args-delete --disable-savestates |
44 | | configure.args-append --enable-savestates |
| 42 | configure.args-replace --without-savestates --with-savestates |
45 | 43 | } |
46 | 44 | |
47 | 45 | variant attributelog description {Use default smartd attribute log files} { |
48 | | configure.args-delete --disable-attributelog |
49 | | configure.args-append --enable-attributelog |
| 46 | configure.args-replace --without-attributelog --with-attributelog |
50 | 47 | } |
51 | 48 | |
52 | 49 | startupitem.create yes |
53 | 50 | startupitem.name smartd |
54 | 51 | startupitem.executable ${prefix}/sbin/smartd -n |
| 52 | |
| 53 | # kate: backspace-indents true; indent-pasted-text true; indent-width 4; keep-extra-spaces true; remove-trailing-spaces modified; replace-tabs true; replace-tabs-save true; syntax Tcl/Tk; tab-indents true; tab-width 4; |