diff options
author | tonio <tonio@pkgsrc.org> | 2010-11-05 22:20:57 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2010-11-05 22:20:57 +0000 |
commit | 14dbe24121157b5aff124b45896b7ae9828d2722 (patch) | |
tree | f90c9eca98f0f01b6ba2b1a520cbb3f1b5e616e4 /chat/bitlbee | |
parent | 6d83e03248d9b2a33fe9e69a0666f31dabceb29c (diff) | |
download | pkgsrc-14dbe24121157b5aff124b45896b7ae9828d2722.tar.gz |
Update chat/bitlbee to 3.0
Version 3.0 (released 2010-10-22) hilights:
* Lots of stuff, see the development version below.
* MSN protocol module was rewritten. This fixes some problems many people were
having with the old code lately, and adds support for things like status
messages and offline messages.
* The bitlbee-otr branch is now merged into mainline, which means you can
compile BitlBee with OTR encryption support, if you want, without any need
for patches/alternative branches.
* Many more fixes, small changes, etc. Just read the full non-bzr changelog for
all details.
Diffstat (limited to 'chat/bitlbee')
-rw-r--r-- | chat/bitlbee/Makefile | 4 | ||||
-rw-r--r-- | chat/bitlbee/distinfo | 9 | ||||
-rw-r--r-- | chat/bitlbee/patches/patch-aa | 17 |
3 files changed, 24 insertions, 6 deletions
diff --git a/chat/bitlbee/Makefile b/chat/bitlbee/Makefile index 5272b046329..b08868d2b39 100644 --- a/chat/bitlbee/Makefile +++ b/chat/bitlbee/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.47 2010/05/30 14:52:18 tonio Exp $ +# $NetBSD: Makefile,v 1.48 2010/11/05 22:20:57 tonio Exp $ # -DISTNAME= bitlbee-1.2.7 +DISTNAME= bitlbee-3.0 CATEGORIES= chat MASTER_SITES= http://get.bitlbee.org/src/ diff --git a/chat/bitlbee/distinfo b/chat/bitlbee/distinfo index 4e8a05e7a7a..998f1ec2ed3 100644 --- a/chat/bitlbee/distinfo +++ b/chat/bitlbee/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.24 2010/05/30 14:52:18 tonio Exp $ +$NetBSD: distinfo,v 1.25 2010/11/05 22:20:57 tonio Exp $ -SHA1 (bitlbee-1.2.7.tar.gz) = d1ed04a5ff18de67d96ba51d8a11bbd8e6d78ef3 -RMD160 (bitlbee-1.2.7.tar.gz) = 5eec7fff68ade914d3e1da5b0e149ac963446827 -Size (bitlbee-1.2.7.tar.gz) = 510458 bytes +SHA1 (bitlbee-3.0.tar.gz) = c791d46b974187a1d4cf341418c3d1729f9b9658 +RMD160 (bitlbee-3.0.tar.gz) = 7d3e9fbbf2835c014bbaf64d926aa00b3a66624d +Size (bitlbee-3.0.tar.gz) = 662460 bytes +SHA1 (patch-aa) = d8caf2c370271db8a19b1939866bfad450f0e37a diff --git a/chat/bitlbee/patches/patch-aa b/chat/bitlbee/patches/patch-aa new file mode 100644 index 00000000000..0b7a1d75094 --- /dev/null +++ b/chat/bitlbee/patches/patch-aa @@ -0,0 +1,17 @@ +$NetBSD: patch-aa,v 1.10 2010/11/05 22:20:57 tonio Exp $ + +AI_ADDRCONFIG doesn't exist on some systems, such as netbsd 5.0.2 +Pathc from revision 714 of bitlbee + +--- lib/proxy.c.orig 2010-10-22 00:51:31.000000000 +0000 ++++ lib/proxy.c +@@ -52,6 +52,9 @@ char proxypass[128] = ""; + #ifndef AI_NUMERICSERV + #define AI_NUMERICSERV 0 + #endif ++#ifndef AI_ADDRCONFIG ++#define AI_ADDRCONFIG 0 ++#endif + + struct PHB { + b_event_handler func, proxy_func; |