diff --git a/sysutils/smartmontools/Portfile b/sysutils/smartmontools/Portfile
index 15795f70ab..5c7a5d7fec 100644
a
|
b
|
master_sites sourceforge:project/smartmontools/smartmontools/${version}/ |
25 | 25 | checksums rmd160 8504a7a04e99d26acb3662ae5e0e8e6d38a52b5d \ |
26 | 26 | sha256 51f43d0fb064fccaf823bbe68cf0d317d0895ff895aa353b3339a3b316a53054 |
27 | 27 | |
28 | | configure.args --with-drivedb \ |
| 28 | configure.args --with-drivedbdir=yes \ |
29 | 29 | --without-savestates \ |
30 | 30 | --without-attributelog \ |
31 | 31 | --enable-sample \ |
32 | | --with-libcap-ng=no |
| 32 | --with-libcap-ng=no \ |
| 33 | --with-scriptpath=${prefix}/bin:/usr/bin:/bin |
| 34 | |
| 35 | platform darwin { |
| 36 | if {${configure.cxx_stdlib} eq "libstdc++"} { |
| 37 | configure.args-append \ |
| 38 | --with-cxx11-option=no |
| 39 | } |
| 40 | } |
33 | 41 | |
34 | 42 | destroot.keepdirs ${destroot}${prefix}/var/run \ |
35 | 43 | ${destroot}${prefix}/var/lib/smartmontools |
… |
… |
variant attributelog description {Use default smartd attribute log files} { |
47 | 55 | startupitem.create yes |
48 | 56 | startupitem.name smartd |
49 | 57 | startupitem.executable ${prefix}/sbin/smartd -n |
| 58 | |
| 59 | # 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; |