d7eae74f12
Initial patches from Juan RP via PR pkg/20101. Changelog: 2.8.6 ===== - Bnc now lists all docked sessions - Rewrote the send/recv code - Implemented non-blocking sockets - Fixed a problem with bnc not binding to vhost when specified by IP instead of dns 2.8.4 ===== - a quick change added to conf.c by moomoomoo to fix a major bug and tide us over until the 3.0.0 version is ready for public release. 2.8.2 ===== - Coded in channel watching code for docking. - Coded a new line parsing system - Coded a new system for the client lists, maybe it will fix some bugs - implemented docking, still very beta though /detach password /resume FD password - rewrote some of the inner workings, hope this fixed some bugs. - rewrote config file format, now uses real words (listen xxx) read example.conf for details. Old format will still work.
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2003/01/31 01:00:50 salo Exp $
|
|
# FreeBSD Id: ports/irc/bnc/Makefile,v 1.9 2000/05/22 06:38:58 will Exp
|
|
|
|
DISTNAME= bnc2.8.6
|
|
PKGNAME= ${DISTNAME:S/bnc/&-/}
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://www.gotbnc.com/files/ \
|
|
ftp://ftp.ircadmin.net/bnc/
|
|
|
|
MAINTAINER= zuntum@netbsd.org
|
|
HOMEPAGE= http://bnc.dragondata.com/
|
|
COMMENT= Simple IRC relay proxy with support for virtual hosting
|
|
|
|
DEPENDS+= dialog-[0-9]*:../../misc/dialog
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/bncsetup ${WRKSRC}/bncsetup.orig
|
|
${SED} -e "s|./mkpasswd|${PREFIX}/bin/bncmkpasswd|g" \
|
|
-e "s|dialog --|${LOCALBASE}/bin/dialog --|g" \
|
|
${WRKSRC}/bncsetup.orig > ${WRKSRC}/bncsetup
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bnc ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mkpasswd ${PREFIX}/bin/bncmkpasswd
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bncchk ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bncsetup ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/bnc
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bnc
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/bnc
|
|
${INSTALL_DATA} ${WRKSRC}/example.conf \
|
|
${PREFIX}/share/examples/bnc/bnc.conf.sample
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|