diff --git a/neomutt/Portfile b/neomutt/Portfile
a
|
b
|
|
9 | 9 | categories mail |
10 | 10 | platforms darwin |
11 | 11 | license GPL-2 |
12 | | maintainers schenkel.net:leonardo |
| 12 | maintainers schenkel.net:leonardo openmaintainer |
13 | 13 | |
14 | 14 | description The Mutt E-Mail Client (patched version with added features) |
15 | 15 | long_description Mutt is a small but very powerful text-based MIME \ |
… |
… |
|
61 | 61 | --without-tokyocabinet |
62 | 62 | |
63 | 63 | default_variants +idn +imap +pop +ssl |
| 64 | if {${install.user} ne "root"} { |
| 65 | default_variants-append +homespool |
| 66 | } |
64 | 67 | |
65 | 68 | set hcache_variants {db4 gdbm lmdb qdbm tokyocabinet} |
66 | 69 | if {[variant_isset headercache]} { |
… |
… |
|
111 | 114 | variant headercache description {Enable header caching (requires db4, gdbm, qdbm, lmdb or tokyocabinet)} { |
112 | 115 | configure.args-replace --disable-hcache --enable-hcache |
113 | 116 | } |
| 117 | variant homespool description {Spool mail in home directory (allows installing without root privileges)} { |
| 118 | configure.args-append --with-homespool |
| 119 | } |
114 | 120 | variant idn description {Internationalized Domain Name support} { |
115 | 121 | configure.args-replace --without-idn --with-idn=${prefix} |
116 | 122 | depends_lib-append port:libidn port:zlib |