New commits:
commit 96f78816561ee89818261c388fecc0e92e6d65f4
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
mail/neomutt: switched to autosetup + some cleanups
optional_depends "gnupg" \
"" \
"--disable-pgp" \
"to support PGP signing and encrypting messages" &&
-optional_depends "ispell" \
- "" \
- "" \
- "for spell checking" &&
-
-# Do NOT add --with-ssl here, that only works if POP/IMAP are used. This is
+# Do NOT add --ssl here, that only works if POP/IMAP are used. This is
# mostly just here to prompt for SSL if they don't have it and want
# S/MIME.
optional_depends "SSL" \
"" \
- "" \
+ "--disable-smime" \
"to support S/MIME signing and encrypting messages" &&
optional_depends "gpgme" \
- "--enable-gpgme" \
+ "--gpgme" \
"" \
"alternate backend for PGP and S/MIME" &&
optional_depends "libidn" \
- "--with-idn" \
"" \
+ "--disable-idn" \
"to use GNU libidn for domain names" &&
-if list_find "${NEOMUTT_OPTS}" "--enable-pop" || list_find "${NEOMUTT_OPTS}"
"--enable-imap"; then
- # If they have POP/IMAP then prompt again for SSL to get --with-ssl.
- optional_depends "SSL" \
- "--with-ssl" \
- "" \
- "to enable SSL support for POP/IMAP" &&
+# If they have POP/IMAP then prompt again for SSL to get --ssl.
+optional_depends "SSL" \
+ "--ssl" \
+ "" \
+ "to enable SSL support for POP/IMAP" &&
- optional_depends "gnutls" \
- "--with-gnutls" \
- "" \
- "to enable SSL support for POP/IMAP via gnutls" &&
+optional_depends "gnutls" \
+ "--gnutls" \
+ "" \
+ "to enable SSL support for POP/IMAP via gnutls" &&