Update chat/bitlbee to 3.0.1

Patch provided by gls@

Changes:
Version 3.0.1 (released 2010-11-24) hilights:
- MSN login fixes, Jabber (3.0 had a bug that made Jabber contacts never go
  offline), some other minor IM module fixes (including the new default ICQ
  login server).
- Fixed build issues on some non-Linux systems.
- Minor bugfixes/improvements.
This commit is contained in:
tonio 2010-12-20 10:49:06 +00:00
parent b6e693d49a
commit ee6950e295
3 changed files with 7 additions and 25 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.48 2010/11/05 22:20:57 tonio Exp $
# $NetBSD: Makefile,v 1.49 2010/12/20 10:49:06 tonio Exp $
#
DISTNAME= bitlbee-3.0
DISTNAME= bitlbee-3.0.1
CATEGORIES= chat
MASTER_SITES= http://get.bitlbee.org/src/
@ -70,7 +70,7 @@ CONFIGURE_ARGS+= --ipv6=0
.endif
RCD_SCRIPTS= bitlbee
RCD_SCRIPT_SRC.estd= ${FILESDIR}/bitlbee.sh
RCD_SCRIPT_SRC.bitlbee= ${FILESDIR}/bitlbee.sh
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"

View file

@ -1,6 +1,5 @@
$NetBSD: distinfo,v 1.25 2010/11/05 22:20:57 tonio Exp $
$NetBSD: distinfo,v 1.26 2010/12/20 10:49:06 tonio Exp $
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
SHA1 (bitlbee-3.0.1.tar.gz) = f3a0651d723b71b08f0dad3b5cb2843608d5c265
RMD160 (bitlbee-3.0.1.tar.gz) = cc62179e807ef175db0c2351d9363f118e28f394
Size (bitlbee-3.0.1.tar.gz) = 668353 bytes

View file

@ -1,17 +0,0 @@
$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;