New commits:
commit 349c949b96a12778a70d2c0f1558051f8ce0ea21
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>
chat-irc/bitlbee: update to 3.0.5
Updated to the latest 3.0.5. I also cleaned up CONFIGURE, added/changed
dependency options as needed, and adjusted DEPENDS accordingly.
CONFIGURE and DEPENDS should now match fairly well how the spell can
actually be configured.
For MSN, libsoup is no longer required, so it was removed as a
dependency. Bitlbee will handle the MSN protocol just fine with its own
code (and won't use libsoup even if you have it anyway).
diff --git a/chat-irc/bitlbee/CONFIGURE b/chat-irc/bitlbee/CONFIGURE
index 8a8aee5..b9ebedb 100755
--- a/chat-irc/bitlbee/CONFIGURE
+++ b/chat-irc/bitlbee/CONFIGURE
@@ -1,23 +1,41 @@
-# asking user what for im protocols he needs
+config_query_option BITLBEE_OPTS "Enable plugin support? " y \
+ "--plugins=1" "--plugins=0" &&
-# msn protocol requires the libsoup library
-# the specific option is set in the DEPENDS file
+config_query_option BITLBEE_OPTS "Enable Jabber (XMPP) protocol? " n \
+ "--jabber=1" "--jabber=0" &&
-# jabber
-config_query_option BITLBEE_OPTS "Enable Jabber protocol? " n \
- "--jabber=1" "--jabber=0"
+config_query_option BITLBEE_OPTS "Enable Oscar protocol (for ICQ or AIM)? "
y \
+ "--oscar=1" "--oscar=0" &&
- # oscar (icq, aim)
+config_query_option BITLBEE_OPTS "Enable Yahoo protocol? " y \
+ "--yahoo=1" "--yahoo=0" &&
-config_query_option BITLBEE_OPTS "Enable Oscar protocol (for ICQ or AIM)? " \
- y "--oscar=1" "--oscar=0"
+config_query_option BITLBEE_OPTS "Enable Twitter protocol? " y \
+ "--twitter=1" "--twitter=0" &&