Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (c76c47440ca8102426104877fea826350750fa19)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (c76c47440ca8102426104877fea826350750fa19)
  • Date: Thu, 8 Apr 2010 03:33:00 -0500

GIT changes to master grimoire by Sukneet Basuta <sukneet AT sourcemage.org>:

mail/mutt/CONFIGURE | 8 ++++++--
mail/mutt/DEPENDS | 15 +++++++++++++--
mail/mutt/HISTORY | 6 ++++++
3 files changed, 25 insertions(+), 4 deletions(-)

New commits:
commit c76c47440ca8102426104877fea826350750fa19
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

mutt: added SMTP configure opt
fixed cyrus-sasl config opt
fixed ncurses config opt
added ispell opt depends

diff --git a/mail/mutt/CONFIGURE b/mail/mutt/CONFIGURE
index 4d003d4..5fdfda3 100755
--- a/mail/mutt/CONFIGURE
+++ b/mail/mutt/CONFIGURE
@@ -58,11 +58,15 @@ for PATCH in ${REAL_PATCHES}; do
if [[ -x "${PATCH_DIRECTORY}/${PATCH}/PATCH_CONFIGURE" ]]; then
. "${PATCH_DIRECTORY}/${PATCH}/PATCH_CONFIGURE"
fi
-done
+done &&

if [[ "${BRANCH}" != "stable" ]]; then
config_query_option MUTT_OPTS "Enable the header cache?" \
"n" \
"--enable-hcache" \
- "--disable-hcache"
+ "--disable-hcache" &&
+ config_query_option MUTT_OPTS "Enable SMTP support?" \
+ "y" \
+ "--enable-smtp" \
+ "--disable-smtp"
fi
diff --git a/mail/mutt/DEPENDS b/mail/mutt/DEPENDS
index d21abb5..cc84ab0 100755
--- a/mail/mutt/DEPENDS
+++ b/mail/mutt/DEPENDS
@@ -13,7 +13,13 @@ fi &&
config_query_list TERMINAL_LIBRARY \
"Build against which terminal library?" \
ncurses slang &&
-TMP_MUTT_OPTS="${TMP_MUTT_OPTS} --with-${TERMINAL_LIBRARY}" &&
+
+if [[ ${TERMINAL_LIBRARY} = "ncurses" ]]; then
+ TMP_MUTT_OPTS="${TMP_MUTT_OPTS} --with-curses"
+else
+ TMP_MUTT_OPTS="${TMP_MUTT_OPTS} --with-${TERMINAL_LIBRARY}"
+fi &&
+
depends "${TERMINAL_LIBRARY}" &&

optional_depends "gnupg" \
@@ -21,6 +27,11 @@ optional_depends "gnupg"
\
"--disable-pgp" \
"to support PGP signing and encrypting messages" &&

+optional_depends "ispell" \
+ "" \
+ "" \
+ "for spell checking" &&
+
if [[ "$BRANCH" != "stable" ]]; then
# Do NOT add --with-ssl here, that only works if POP/IMAP are used. This
is
# mostly just here to prompt for openssl if they don't have it and want
@@ -65,7 +76,7 @@ if list_find "${MUTT_OPTS}" "--enable-pop" || list_find
"${MUTT_OPTS}" "--enable
"to enable SSL support for POP/IMAP via gnutls" &&

optional_depends "cyrus-sasl" \
- "--with-sasl2" \
+ "--with-sasl" \
"" \
"to enable SASL2 authentication for POP/IMAP"
fi
diff --git a/mail/mutt/HISTORY b/mail/mutt/HISTORY
index 1281df4..b122bdf 100644
--- a/mail/mutt/HISTORY
+++ b/mail/mutt/HISTORY
@@ -1,3 +1,9 @@
+2010-04-08 Sukneet Basuta <sukneet AT sourcemage.org>
+ * CONFIGURE: added SMTP configure query
+ * DEPENDS: fixed cyrus-sasl configure opt
+ fixed ncurses configure opt (added an if statment, not sure this is
the best way)
+ added ispell opt depends
+
2010-03-29 Jeremy Blosser <jblosser-smgl AT firinn.org>
* DETAILS, patches/compressed_folders/*: Updated devel to 1.5.20.
* PREPARE, patches/message_count/*: Removed dead message_count patch.




Archive powered by MHonArc 2.6.24.

Top of Page