Update chat/bitlbee to 0.91.

Changes:

- Full support for ICQ server-side contact lists!
  NOTE: BitlBee now ignores your client-side contact list. If you want to
        import your ICQ contact list, use the import_buddies command.
- Added the import_buddies command for upgrading purposes.
- Added support for OpenSSL.
- Fixed one major problem with the daemon mode by getting rid of the global
  IRC structure.
- Documentation fixes. help.txt is now generated from XML. Also updated the
  installation manual.
- Made the quickstart up-to-date. (By Elizabeth Krumbach)
- Some bitlbeed additions. (By Marcus Dennis)
- info-command support for Jabber, MSN, Yahoo! and a more verbose info-reply
  for ICQ. (By Frank Thieme)
- Support for Jabber over SSL.
- nick_get() appends a _ on duplicates instead of chopping off the last
  character.
- Got rid of an unused piece of code that caused crashes.
  (oscar.c:gaim_parse_clientauto)
- When splitting long messages into 450-char chunks, BitlBee now tries not
  to cut off in the middle of a line.
- Added a warning when the user specifies an unknown OSCAR server.
- Removed GLib 2.x dependency, BitlBee will work with GLib 1.x again.
- Improved strip_html(), now less likely to strip non-HTML things.
- An invalid account-command will now display an error message.
- Fixed a bug that caused crashes when /CTCP'ing a groupchat channel.
- Hopefully better Unicode/non-ASCII support for ICQ.
- Fixed MSN connection crash on non-ASCII characters in screenname.
- Added some missing charset conversion calls. (serv_got_crap,
  serv_buddy_rename)
- "account off" without extra arguments now logs off all connections.
- Fixed a crash-bug on disconnecting Yahoo! connections before they're fully
  connected.
- Fixed a bug in helpfile handling which sometimes caused crashes in daemon
  mode.
- block and allow commands work with just a nick as an argument again.
- Working around a crash on some probably invalid Yahoo! packets.
- Fixed a possible double free() on shutdown in irc_free().
- Talking to ICQ people on AIM and vice versa and talking to people with
  @mac.com accounts now possible.
- Low ASCII chars are now stripped from away-messages so the Jabber module
  won't barf on BitchX and lame-script away messages anymore.
This commit is contained in:
xtraeme 2004-10-25 09:37:44 +00:00
parent 1709d2d877
commit 9907207d66
4 changed files with 13 additions and 13 deletions

View file

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.14 2004/10/03 00:13:13 tv Exp $ # $NetBSD: Makefile,v 1.15 2004/10/25 09:37:44 xtraeme Exp $
# #
DISTNAME= bitlbee-0.90a DISTNAME= bitlbee-0.91
PKGREVISION= 1
CATEGORIES= chat CATEGORIES= chat
MASTER_SITES= http://get.bitlbee.org/src/ MASTER_SITES= http://get.bitlbee.org/src/
@ -21,6 +20,7 @@ CONFIGURE_ARGS+= --etcdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --datadir=${DATADIR} CONFIGURE_ARGS+= --datadir=${DATADIR}
CONFIGURE_ARGS+= --config=${STATEDIR} CONFIGURE_ARGS+= --config=${STATEDIR}
CONFIGURE_ARGS+= --flood=1 CONFIGURE_ARGS+= --flood=1
CONFIGURE_ARGS+= --ssl=openssl
PKG_SYSCONFSUBDIR= bitlbee PKG_SYSCONFSUBDIR= bitlbee
CONF_FILES= ${DATADIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt CONF_FILES= ${DATADIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt
@ -29,17 +29,17 @@ CONF_FILES+= ${EGDIR}/bitlbee.conf ${PKG_SYSCONFDIR}/bitlbee.conf
EGDIR= ${PREFIX}/share/examples/bitlbee EGDIR= ${PREFIX}/share/examples/bitlbee
DATADIR= ${PREFIX}/share/bitlbee DATADIR= ${PREFIX}/share/bitlbee
DOCDIR= ${PREFIX}/share/doc/bitlbee DOCDIR= ${PREFIX}/share/doc/bitlbee
STATEDIR= /var/db/bitlbee STATEDIR= ${VARBASE}/db/bitlbee
OWN_DIRS_PERMS= ${STATEDIR} bitlbee nobody 700 OWN_DIRS_PERMS= ${STATEDIR} bitlbee nobody 700
PKG_USERS= bitlbee:nobody::Bitlbee\\ user:/var/db/bitlbee PKG_USERS= bitlbee:nobody::Bitlbee\\ user:${VARBASE}/db/bitlbee
do-install: do-install:
${INSTALL_DATA_DIR} ${DATADIR} ${DOCDIR} ${EGDIR} ${INSTALL_DATA_DIR} ${DATADIR} ${DOCDIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/bitlbee.conf ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/bitlbee.conf ${EGDIR}
${INSTALL_PROGRAM} ${WRKSRC}/bitlbee ${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/bitlbee ${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/help.txt ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/doc/help.txt ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/motd.txt ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/motd.txt ${DATADIR}
${INSTALL_MAN} ${WRKSRC}/doc/bitlbee.8 ${PREFIX}/man/man8 ${INSTALL_MAN} ${WRKSRC}/doc/bitlbee.8 ${PREFIX}/man/man8
.for f in AUTHORS FAQ README TODO .for f in AUTHORS FAQ README TODO
@ -49,5 +49,5 @@ do-install:
.include "../../converters/libiconv/buildlink3.mk" .include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk"
.include "../../security/gnutls/buildlink3.mk" .include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk" .include "../../mk/bsd.pkg.mk"

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.6 2004/07/07 09:31:08 xtraeme Exp $ $NetBSD: distinfo,v 1.7 2004/10/25 09:37:44 xtraeme Exp $
SHA1 (bitlbee-0.90a.tar.gz) = 8e9e75905544ffd2238b266a1a49074308cb5d66 SHA1 (bitlbee-0.91.tar.gz) = f2f202ff86380e193044625ee3a258943d3b3aed
Size (bitlbee-0.90a.tar.gz) = 433338 bytes Size (bitlbee-0.91.tar.gz) = 462675 bytes

View file

@ -1,4 +1,4 @@
$NetBSD: CHANGES,v 1.7556 2004/10/25 09:05:27 xtraeme Exp $ $NetBSD: CHANGES,v 1.7557 2004/10/25 09:37:44 xtraeme Exp $
Changes to the packages collection and infrastructure in 2004: Changes to the packages collection and infrastructure in 2004:
@ -4853,3 +4853,4 @@ Changes to the packages collection and infrastructure in 2004:
Removed streamtuner-live365 [xtraeme 2004-10-25] Removed streamtuner-live365 [xtraeme 2004-10-25]
Removed streamtuner-local [xtraeme 2004-10-25] Removed streamtuner-local [xtraeme 2004-10-25]
Updated streamtuner to 0.99 [xtraeme 2004-10-25] Updated streamtuner to 0.99 [xtraeme 2004-10-25]
Updated bitlbee to 0.91 [xtraeme 2004-10-25]

View file

@ -1,4 +1,4 @@
$NetBSD: TODO,v 1.2253 2004/10/25 09:05:27 xtraeme Exp $ $NetBSD: TODO,v 1.2254 2004/10/25 09:37:44 xtraeme Exp $
Suggested new packages Suggested new packages
====================== ======================
@ -192,7 +192,6 @@ Suggested package updates
o balsa-1.4.4 o balsa-1.4.4
o bioperl-1.4 o bioperl-1.4
o bitchx-1.1 o bitchx-1.1
o bitlbee-0.91
o blender-2.34 o blender-2.34
o boson-0.10 o boson-0.10
o capc-calc-2.11.10.1 o capc-calc-2.11.10.1