summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authortonio <tonio@pkgsrc.org>2007-06-10 22:20:09 +0000
committertonio <tonio@pkgsrc.org>2007-06-10 22:20:09 +0000
commit9716abd9040d7aed692e3397cbac715ad7e22b9f (patch)
tree87f3bef5281b52f0a2758de588eac6fb857dd323 /chat
parent50cc21757813b164919a2041e4d6ef7f929b8be9 (diff)
downloadpkgsrc-9716abd9040d7aed692e3397cbac715ad7e22b9f.tar.gz
Update chat/weechat to 0.2.5
Add gnutls option, to enable ssl support, fix PR 36461 Thanks Adam Hoka for providing a patch Version 0.2.5 (2007-06-07): * fixed QUOTE command: now allowed when socket is ok (even if IRC connection to server is not ok) (bug #20113) * added missing IRC commands (327, 378, 379) (bug #20091) * fixed hotlist when exiting search mode: current buffer is removed from hotlist * added "%M" for completion with nicks of current server (nicks on open channels) (task #6931) * improved key bindings: now possible to bind a key on many commands, separated by semicolon (task #5444) * improved IRC long message split: use word boundary (task #6685) * removed ":" for unknown IRC commands before arguments (bug #19929) * fixed "%C" completion: now completes with all channels of all servers * fixed bug with "/buffer query_name", added server and channel completion for /buffer command (bug #19928) * added cmake for weechat compile (patch #5943) * fixed IRC mode parsing when receiving modes with arguments (bug #19902) * fixed crash with IRC JOIN malformed message (bug #19891) * fixed bug with nick prefixes on some IRC servers (bug #19854) * improved setup file save: now writes temporary file, then rename it (task #6847) * fixed bug with $nick/$channel/$server variables in commands * forget current nick when user manually disconnects from server * fixed nick display in input window * fixed bug with erroneous nickname when connecting to server (bug #19812) * fixed display bugs in IRC error messages * added protocol priority for gnutls (patch #5915) * added channel admin mode '!' for some IRC servers * fixed bug with iso2022jp locale (bug #18719) * fixed string format bug when displaying string thru plugin script API * added /reconnect command (task #5448) * added "-all" option for /connect and /disconnect commands (task #6232) * improved nick completion: completion with last speakers first and self nick at the end; added option look_nick_completion_smart, enabled by default (task #5896) * fixed nick completion in command arguments (bug #19590) * fixed possible crash with nick completion when a nick leaves channel (bug #19589) * added color for input text not found in buffer history * fixed USER message when connecting to IRC server (patch #5835)
Diffstat (limited to 'chat')
-rw-r--r--chat/weechat/Makefile4
-rw-r--r--chat/weechat/distinfo8
-rw-r--r--chat/weechat/options.mk8
3 files changed, 12 insertions, 8 deletions
diff --git a/chat/weechat/Makefile b/chat/weechat/Makefile
index df3857aa207..4fa931d4caf 100644
--- a/chat/weechat/Makefile
+++ b/chat/weechat/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2007/04/23 11:36:49 tonio Exp $
+# $NetBSD: Makefile,v 1.15 2007/06/10 22:20:09 tonio Exp $
#
-DISTNAME= weechat-0.2.4
+DISTNAME= weechat-0.2.5
CATEGORIES= chat
MASTER_SITES= http://weechat.flashtux.org/download/
EXTRACT_SUFX= .tar.bz2
diff --git a/chat/weechat/distinfo b/chat/weechat/distinfo
index 2c6c72f9717..31f0cab054b 100644
--- a/chat/weechat/distinfo
+++ b/chat/weechat/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.10 2007/04/23 11:36:49 tonio Exp $
+$NetBSD: distinfo,v 1.11 2007/06/10 22:20:10 tonio Exp $
-SHA1 (weechat-0.2.4.tar.bz2) = 2bd5ee7e720a037142ee3c225686e23bedf0290e
-RMD160 (weechat-0.2.4.tar.bz2) = 5e155dd00c74a2dfa8325e4d5cbdb651174f90d1
-Size (weechat-0.2.4.tar.bz2) = 1087284 bytes
+SHA1 (weechat-0.2.5.tar.bz2) = f5e589355d78f3561e09a2525644ac85c2350192
+RMD160 (weechat-0.2.5.tar.bz2) = 60a65a4e9c6a5e2d3bf1b6a252f7cd1f9e2257b4
+Size (weechat-0.2.5.tar.bz2) = 1094690 bytes
SHA1 (patch-aa) = 5bfba8832834898030fb1612adee83c8a7d1e708
diff --git a/chat/weechat/options.mk b/chat/weechat/options.mk
index 182f4a7fdcd..3f6c79ac981 100644
--- a/chat/weechat/options.mk
+++ b/chat/weechat/options.mk
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.2 2007/01/15 20:25:01 tonio Exp $
+# $NetBSD: options.mk,v 1.3 2007/06/10 22:20:10 tonio Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.weechat
-PKG_SUPPORTED_OPTIONS= charset python lua
+PKG_SUPPORTED_OPTIONS= charset gnutls python lua
PKG_SUGGESTED_OPTIONS= charset
.include "../../mk/bsd.options.mk"
@@ -14,6 +14,10 @@ CONFIGURE_ARGS+= --disable-charset
PLIST_SUBST+= WITHCHARSET="@comment "
.endif
+.if !empty(PKG_OPTIONS:Mgnutls)
+.include "../../security/gnutls/buildlink3.mk"
+.endif
+
.if !empty(PKG_OPTIONS:Mpython)
.include "../../lang/python/extension.mk"
CONFIGURE_ARGS+= --enable-python