New commits:
commit 348ab22beaa2d5418712cad77d5d628de523350d
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>
mail/neomutt: no slang support for scm branch
diff --git a/mail/neomutt/CONFIGURE b/mail/neomutt/CONFIGURE
index bdb2285..521e3ab 100755
--- a/mail/neomutt/CONFIGURE
+++ b/mail/neomutt/CONFIGURE
@@ -1,6 +1,10 @@
-config_query_list TERMINAL_LIBRARY \
- "Build against which terminal library?" \
- ncurses slang &&
+if [[ "${NEOMUTT_BRANCH}" == "scm" ]]; then
+ persistent_remove TERMINAL_LIBRARY
+else
+ config_query_list TERMINAL_LIBRARY \
+ "Build against which terminal library?" \
+ ncurses slang
+fi &&
config_query_list HCACHE_BACKEND "Use which header cache backend?" \
none gdbm db lmdb &&
diff --git a/mail/neomutt/DEPENDS b/mail/neomutt/DEPENDS
index 832d180..00b43fb 100755
--- a/mail/neomutt/DEPENDS
+++ b/mail/neomutt/DEPENDS
@@ -1,5 +1,8 @@
if [[ "${NEOMUTT_BRANCH}" == "scm" ]]; then
- depends git
+ depends git &&
+ depends ncurses
+else
+ depends "${TERMINAL_LIBRARY}" "--with-ui=${TERMINAL_LIBRARY}"
fi &&