diff --git a/neomutt/Portfile b/neomutt/Portfile
a
|
b
|
|
5 | 5 | PortGroup github 1.0 |
6 | 6 | |
7 | 7 | github.setup neomutt neomutt 20160916 neomutt- |
8 | | revision 2 |
| 8 | revision 3 |
9 | 9 | categories mail |
10 | 10 | platforms darwin |
11 | 11 | license GPL-2 |
… |
… |
|
38 | 38 | --disable-hcache \ |
39 | 39 | --disable-imap \ |
40 | 40 | --disable-nntp \ |
| 41 | --disable-notmuch \ |
41 | 42 | --disable-pop \ |
42 | 43 | --disable-sidebar \ |
43 | 44 | --disable-silent-rules \ |
… |
… |
|
61 | 62 | |
62 | 63 | default_variants +idn +imap +pop +ssl |
63 | 64 | |
64 | | set hcache_variants {db4 qdbm tokyocabinet gdbm lmdb} |
| 65 | set hcache_variants {db4 gdbm lmdb qdbm tokyocabinet} |
65 | 66 | if {[variant_isset headercache]} { |
66 | 67 | set found no |
67 | | foreach hcache_impl {db4 qdbm tokyocabinet gdbm lmdb} { |
| 68 | foreach hcache_impl {db4 gdbm lmdb qdbm tokyocabinet} { |
68 | 69 | if {[variant_isset $hcache_impl]} { |
69 | 70 | set found yes |
70 | 71 | } |
… |
… |
|
81 | 82 | # delete horribly outdated ca bundle, I hope people weren't using that! |
82 | 83 | delete ${destroot}${prefix}/share/doc/mutt/samples/ca-bundle.crt |
83 | 84 | } |
| 85 | |
84 | 86 | variant compress description {Compressed folders} { |
85 | 87 | configure.args-replace --disable-compressed --enable-compressed |
86 | 88 | } |
… |
… |
|
120 | 122 | configure.args-replace --without-lmdb --with-lmdb=${prefix} |
121 | 123 | depends_lib-append port:lmdb |
122 | 124 | } |
| 125 | variant notmuch description {Notmuch support} { |
| 126 | configure.args-replace --disable-notmuch --enable-notmuch |
| 127 | depends_lib-append port:notmuch |
| 128 | } |
123 | 129 | variant nntp description {NNTP support} { |
124 | 130 | configure.args-replace --disable-nntp --enable-nntp |
125 | 131 | } |