summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authortonio <tonio>2010-12-20 10:49:06 +0000
committertonio <tonio>2010-12-20 10:49:06 +0000
commitf86c0db83e6463e2867307663a6d10d5f9281bf1 (patch)
treea7cf39c9c3a40ec97c104e4429568981d24b2294 /chat
parentbd1b4cf48011d315338874188452428d13f5a581 (diff)
downloadpkgsrc-f86c0db83e6463e2867307663a6d10d5f9281bf1.tar.gz
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.
Diffstat (limited to 'chat')
-rw-r--r--chat/bitlbee/Makefile6
-rw-r--r--chat/bitlbee/distinfo9
-rw-r--r--chat/bitlbee/patches/patch-aa17
3 files changed, 7 insertions, 25 deletions
diff --git a/chat/bitlbee/Makefile b/chat/bitlbee/Makefile
index b08868d2b39..f3e3ad7c652 100644
--- a/chat/bitlbee/Makefile
+++ b/chat/bitlbee/Makefile
@@ -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"
diff --git a/chat/bitlbee/distinfo b/chat/bitlbee/distinfo
index 998f1ec2ed3..b32509c2da0 100644
--- a/chat/bitlbee/distinfo
+++ b/chat/bitlbee/distinfo
@@ -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
diff --git a/chat/bitlbee/patches/patch-aa b/chat/bitlbee/patches/patch-aa
deleted file mode 100644
index 0b7a1d75094..00000000000
--- a/chat/bitlbee/patches/patch-aa
+++ /dev/null
@@ -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;