diff options
author | xtraeme <xtraeme> | 2003-12-05 23:05:58 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2003-12-05 23:05:58 +0000 |
commit | 9f7c75ca97a837a572f611f5ff0cd9e4da7fd0b3 (patch) | |
tree | d592eacdebb62b626b1b033e79a8b18cc3a7f9b6 /chat/bitlbee/Makefile | |
parent | dce13904e97234ffbf3ce41c36673da90bc7e309 (diff) | |
download | pkgsrc-9f7c75ca97a837a572f611f5ff0cd9e4da7fd0b3.tar.gz |
Updated to 0.82
Changes since 0.80:
o Fixed a buffer overflow plus another problem in the nick
handling code.
o Fixed MSN support.
o Added the qlist command.
o Fixed the Makefile: It doesn't just overwrite files in etcdir
anymore.
o Fixed a small problem in the auto-reconnect cleanup code.
o Added a configuration file.
o Added some access restrictions for people who don't want their
BitlBee server to be open to anyone.
o Added basic support for charsets, which makes BitlBee more useful
to people who don't speak ASCII.
o Added support for automatic reconnection to an IM-server.
o Yahoo! now works again.
And more...
Diffstat (limited to 'chat/bitlbee/Makefile')
-rw-r--r-- | chat/bitlbee/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/chat/bitlbee/Makefile b/chat/bitlbee/Makefile index eeb254c021c..15f97f2bf9e 100644 --- a/chat/bitlbee/Makefile +++ b/chat/bitlbee/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2003/09/04 15:47:08 xtraeme Exp $ +# $NetBSD: Makefile,v 1.5 2003/12/05 23:05:58 xtraeme Exp $ # -DISTNAME= bitlbee-0.80 +DISTNAME= bitlbee-0.82 CATEGORIES= chat MASTER_SITES= http://get.bitlbee.org/src/ @@ -22,7 +22,9 @@ CONFIGURE_ARGS+= --config=${STATEDIR} PKG_SYSCONFSUBDIR= bitlbee CONF_FILES= ${DATADIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt +CONF_FILES+= ${EGDIR}/bitlbee.conf ${PKG_SYSCONFDIR}/bitlbee.conf +EGDIR= ${PREFIX}/share/examples/bitlbee DATADIR= ${PREFIX}/share/bitlbee DOCDIR= ${PREFIX}/share/doc/bitlbee STATEDIR= /var/db/bitlbee @@ -32,7 +34,8 @@ OWN_DIRS_PERMS= ${STATEDIR} bitlbee nobody 700 PKG_USERS= bitlbee:nobody::Bitlbee\\ user:/var/db/bitlbee do-install: - ${INSTALL_DATA_DIR} ${DATADIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${DATADIR} ${DOCDIR} ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/bitlbee.conf ${EGDIR} ${INSTALL_PROGRAM} ${WRKSRC}/bitlbee ${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/help.txt ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/motd.txt ${DATADIR} @@ -42,5 +45,7 @@ do-install: .endfor .undef f -.include "../../devel/glib/buildlink2.mk" +.include "../../converters/libiconv/buildlink2.mk" +.include "../../devel/glib2/buildlink2.mk" +.include "../../net/libsoup/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |