Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (832ed65b9ed7641fd323171ea5043be52ad22f16)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (832ed65b9ed7641fd323171ea5043be52ad22f16)
  • Date: Sat, 9 Apr 2011 07:33:09 -0500

GIT changes to master grimoire by Justin Boffemmyer <flux AT sourcemage.org>:

http/w3m/CONFIGURE | 33 +++++++++++++++++++++++++--------
http/w3m/DETAILS | 4 ++--
http/w3m/HISTORY | 5 +++++
3 files changed, 32 insertions(+), 10 deletions(-)

New commits:
commit 832ed65b9ed7641fd323171ea5043be52ad22f16
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

http/w3m: update to 0.5.3

There was a new release in Jan. 2011. This updates the spell to this
release, and also cleans up some of the CONFIGURE options for dependency
relations.

diff --git a/http/w3m/CONFIGURE b/http/w3m/CONFIGURE
index 546d82a..c263ada 100755
--- a/http/w3m/CONFIGURE
+++ b/http/w3m/CONFIGURE
@@ -1,3 +1,5 @@
+. $GRIMOIRE/config_query_multi.function
+
config_query_list W3M_TERM_LIB \
"Which terminal library do you want?" \
ncurses \
@@ -8,7 +10,7 @@ config_query_list W3M_IMAGE_LIB \
imlib \
gtk2 \
gdk-pixbuf &&
-. $GRIMOIRE/config_query_multi.function
+
config_query_multi W3M_INLINE_IMAGE \
"Enable inline image handlers" \
AUTO \
@@ -27,11 +29,16 @@ config_query_option W3M_OPTS \
y \
"--enable-m17n" \
"--disable-m17n" &&
-config_query_option W3M_OPTS \
+
+if $(echo "$W3M_OPTS" | grep -q -- "--enable-m17n")
+then
+ config_query_option W3M_OPTS \
"Enable unicode?" \
y \
"--enable-unicode" \
- "--disable-unicode" &&
+ "--disable-unicode"
+fi &&
+
config_query_option W3M_OPTS \
"Enable NLS?" \
y \
@@ -42,16 +49,21 @@ config_query_option W3M_OPTS \
y \
"--enable-color" \
"--disable-color" &&
-config_query_option W3M_OPTS \
+
+if $(echo "$W3M_OPTS" | grep -q -- "--enable-color")
+then
+ config_query_option W3M_OPTS \
"Enable ansi-color?" \
y \
"--enable-ansi-color" \
"--disable-ansi-color" &&
-config_query_option W3M_OPTS \
+ config_query_option W3M_OPTS \
"Enable background color?" \
y \
"--enable-bgcolor" \
- "--disable-bgcolor" &&
+ "--disable-bgcolor"
+fi &&
+
config_query_option W3M_OPTS \
"Enable popup menu?" \
y \
@@ -102,11 +114,16 @@ config_query_option W3M_OPTS \
y \
"--enable-external-uri-loader" \
"--disable-external-uri-loader" &&
-config_query_option W3M_OPTS \
+
+if $(echo "$W3M_OPTS" | grep -q -- "--enable-external-uri-loader")
+then
+ config_query_option W3M_OPTS \
"Enable w3mmailer?" \
y \
"--enable-w3mmailer" \
- "--disable-w3mmailer" &&
+ "--disable-w3mmailer"
+fi &&
+
config_query_option W3M_OPTS \
"Enable IPv6?" \
y \
diff --git a/http/w3m/DETAILS b/http/w3m/DETAILS
index 32142d0..41b5eaf 100755
--- a/http/w3m/DETAILS
+++ b/http/w3m/DETAILS
@@ -1,9 +1,9 @@
SPELL=w3m
- VERSION=0.5.2
+ VERSION=0.5.3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/w3m/$SOURCE
-
SOURCE_HASH=sha512:1dece09546287bf1ee2cd07bc9a952bc632f97422b69ddb962daad9575851ca2198745a88b452a3a9e2384825a3f30d483d5ba2bbafa70bc6be785191ccce8a5
+
SOURCE_HASH=sha512:43508c76d07b4d8f19c19f975c0b870aeb94abf0744b6128ee01c759d4e409a8b57bc866baeaf990f309ff73e9a7b02ca455d272b1dd0a93fafb8c72b1fe6d14
LICENSE[0]=MIT
WEB_SITE=http://w3m.sourceforge.net/
ENTERED=20011217
diff --git a/http/w3m/HISTORY b/http/w3m/HISTORY
index 266c5bf..507e3c3 100644
--- a/http/w3m/HISTORY
+++ b/http/w3m/HISTORY
@@ -1,3 +1,8 @@
+2011-04-09 Justin Boffemmyer <flux AT sourcemage.org>
+ * DETAILS: updated for 0.5.3
+ * CONFIGURE: don't ask about options if options they depend one were
+ disabled.
+
2009-09-13 Quentin Rameau <quinq AT sourcemage.org>
* profile.d/pager.sh: added
* INSTALL: added, install pager.sh



  • [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (832ed65b9ed7641fd323171ea5043be52ad22f16), Justin Boffemmyer, 04/09/2011

Archive powered by MHonArc 2.6.24.

Top of Page