Date: Sun, 16 Sep 2012 14:16:21 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r304350 - in head/irc/bitchx: . files Message-ID: <201209161416.q8GEGLn5003886@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Sun Sep 16 14:16:20 2012 New Revision: 304350 URL: http://svn.freebsd.org/changeset/ports/304350 Log: BitchX, an ass-kicking IRC client, is out of limbo and back on the track! - Update to version 1.2; project was moved to GitHub - Convert to new OPTIONS framework; simplify features handling logic - Enable IPv6 and SSL by default to catch up with new era - Ditto for plugins that do not require external dependencies - Drop hard-coded ABI shlib version numbers in LIB_DEPENDS - Remove obsolete patches [1, 2] and cleanup Makefile while I am here - Utilize DOCSDIR for smarter handling of documentation (and thus greatly offload pkg-plist) - Give maintainership back to Chris Petrik per his request: he is part of the developer team and has time to look after the port again) PR: ports/163555 (audit trail) [1] ports/170409 (remove patch-funny.c) [2] Submitted by: Chris Petrik (last follow-up) [1] Gary Stanley [2] Deleted: head/irc/bitchx/files/patch-ap head/irc/bitchx/files/patch-configure head/irc/bitchx/files/patch-funny.c head/irc/bitchx/files/patch-source_gcc_fix head/irc/bitchx/files/patch-source_server_c Modified: head/irc/bitchx/Makefile head/irc/bitchx/distinfo head/irc/bitchx/files/patch-amd64_fix head/irc/bitchx/files/patch-aq head/irc/bitchx/pkg-plist Modified: head/irc/bitchx/Makefile ============================================================================== --- head/irc/bitchx/Makefile Sun Sep 16 14:12:53 2012 (r304349) +++ head/irc/bitchx/Makefile Sun Sep 16 14:16:20 2012 (r304350) @@ -6,36 +6,43 @@ # PORTNAME= BitchX -PORTVERSION= 1.1.0.1 -PORTREVISION= 4 +PORTVERSION= 1.2 CATEGORIES+= irc -MASTER_SITES= SF/bitchx/ircii-pana/ircii-pana-1.1 -DISTNAME= ircii-pana-1.1-final +DISTNAME= BitchX-BitchX${PORTVERSION}-${GH_COMMIT} -MAINTAINER?= danfe@FreeBSD.org +MAINTAINER?= c.petrik.sosa@gmail.com COMMENT?= Feature-rich scriptable IRC client -WRKSRC= ${WRKDIR}/BitchX -USE_PERL5= yes +USE_GITHUB= yes +GH_ACCOUNT= BitchX +GH_PROJECT= BitchX1.2 +GH_TAGNAME= master +GH_COMMIT= a22b86f + +USE_AUTOTOOLS= autoconf GNU_CONFIGURE= yes -WANT_GNOME= yes -USE_GMAKE= yes -CONFIGURE_ARGS+=--exec-prefix="${PREFIX}/share" \ +CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --exec-prefix="${PREFIX}/share" \ --bindir="${PREFIX}/bin" \ --datadir="${PREFIX}/share" \ --libdir="${PREFIX}/share" -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include +USE_GMAKE= yes +USE_PERL5= yes +WANT_GNOME= yes +DOCSDIR= ${PREFIX}/share/bx/help +PORTDOCS= * MAN1= BitchX.1 -OPTIONS= ESOUND "Enable EsounD support" off \ - GNOME "Build with legacy GTK/GNOME frontend" off \ - IPV6 "Enable IPv6 support" off \ - LATIN "Recommended for an ISO-8859-1 display" off \ - PLUGINS "Build handful of BitchX plugins" off \ - SSL "Enable SSL support" off \ - XMMS "Build XMMS plugin" off +OPTIONS_DEFINE= ESOUND GNOME IPV6 LATIN PLUGINS SSL XMMS + +GNOME_DESC= Legacy GTK/GNOME frontend +LATIN_DESC= Recommended for ISO-8859-1 display +PLUGINS_DESC= Build handful of BitchX plugins +XMMS_DESC= Build XMMS plugin + +OPTIONS_DEFAULT= IPV6 PLUGINS SSL .include <bsd.port.pre.mk> @@ -43,79 +50,77 @@ OPTIONS= ESOUND "Enable EsounD support" CFLAGS+= -fPIC .endif -.if defined(WITH_SSL) -CONFIGURE_ARGS+=--with-ssl +.if ${PORT_OPTIONS:MIPV6} +CONFIGURE_ARGS+= --enable-ipv6 .endif -.if defined(WITH_GNOME) +.if ${PORT_OPTIONS:MSSL} +CONFIGURE_ARGS+= --with-ssl +.endif + +.if ${PORT_OPTIONS:MGNOME} || ${PORT_OPTIONS:MESOUND} USE_GNOME= gnomelibs -CONFIGURE_ARGS+=--with-gtk -CFLAGS+= -I${LOCALBASE}/include/gnome-1.0/ +CONFIGURE_ARGS+= --with-gtk +. if ${PORT_OPTIONS:MESOUND} +USE_GNOME+= esound +CONFIGURE_ARGS+= --enable-sound +. endif +CFLAGS+= -I${LOCALBASE}/include/gnome-1.0 PLIST_SUB+= NOGNOME="@comment " GNOME="" .else -CONFIGURE_ARGS+=--without-gtk +CONFIGURE_ARGS+= --without-gtk PLIST_SUB+= GNOME="@comment " NOGNOME="" .endif -.if (defined(WITH_ESOUND) && defined(WITH_GNOME)) -USE_GNOME+= esound -CONFIGURE_ARGS+=--enable-sound -.endif - -.if defined(WITH_XMMS) -LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms -.endif - -.if defined(WITH_IPV6) -CONFIGURE_ARGS+=--enable-ipv6 -.endif - -.if defined(WITH_PLUGINS) -PLUGINS=\ -abot,acro,arcfour,autocycle,blowfish,encrypt,fserv,hint,pkga,possum,qbx,qmail,scan,wavplay -CONFIGURE_ARGS+= --with-plugins=${PLUGINS} +.if ${PORT_OPTIONS:MPLUGINS} +PLUGINS= abot acro aim arcfour autocycle blowfish cavlink cdrom \ + encrypt europa fserv hint nap nicklist pkga possum qbx \ + qmail wavplay PLIST_SUB+= PLUGINS="" .else -CONFIGURE_ARGS+=--without-plugins PLIST_SUB+= PLUGINS="@comment " .endif -.if defined(WITH_XMMS) -PLUGINS= xmms +.if ${PORT_OPTIONS:MXMMS} +LIB_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms +PLUGINS+= xmms PLIST_SUB+= XMMS="" .else PLIST_SUB+= XMMS="@comment " .endif -.if (defined(WITH_XMMS) && defined(WITH_PLUGINS)) -PLUGINS=\ -abot,acro,arcfour,autocycle,blowfish,encrypt,fserv,hint,pkga,possum,qbx,qmail,scan,wavplay,xmms -.endif -.if (defined(WITH_PLUGINS) || defined(WITH_XMMS)) -CONFIGURE_ARGS+= --with-plugins=${PLUGINS} +.if !empty(PLUGINS) +CONFIGURE_ARGS+= --with-plugins="${PLUGINS:C/\$$/,/g}" +.else +CONFIGURE_ARGS+= --without-plugins .endif pre-patch: -.if defined(WITH_LATIN) - ${REINPLACE_CMD} -e 's|#undef LATIN1|#define LATIN1|g' \ +.if ${PORT_OPTIONS:MLATIN} + ${REINPLACE_CMD} -e 's|#undef LATIN1|#define LATIN1|' \ ${WRKSRC}/include/config.h .endif ${REINPLACE_CMD} -e 's|bzip2|true|g' ${WRKSRC}/Makefile.in post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/bx/help - ${TAR} --directory ${WRKSRC}/bitchx-docs -cf - . | \ - ${TAR} --directory ${PREFIX}/share/bx/help -xf - +.if ${PORT_OPTIONS:MGNOME} + ${STRIP_CMD} ${PREFIX}/bin/gtkBitchX .else - @${RMDIR} ${PREFIX}/share/bx/help + ${STRIP_CMD} ${PREFIX}/bin/BitchX + ${STRIP_CMD} ${PREFIX}/bin/scr-bx .endif -.if defined(WITH_GNOME) - ${STRIP_CMD} ${PREFIX}/bin/gtkBitchX-1.1-final +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC}/bitchx-docs && ${COPYTREE_SHARE} . ${DOCSDIR} +.endif + +# Ensure that `@dirrm share/bx' will be appended last (after PORTDOCS stuff) +add-plist-post: + @${ECHO_CMD} "@dirrm share/bx" >> ${TMPPLIST} +.if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && ${PREFIX} != "/usr") + @${ECHO_CMD} "@unexec rmdir %D 2> /dev/null || true" >> ${TMPPLIST} .else - ${STRIP_CMD} ${PREFIX}/bin/BitchX-1.1-final - ${STRIP_CMD} ${PREFIX}/bin/scr-bx + @${DO_NADA} .endif - @${TOUCH} ${PREFIX}/share/bx/plugins/.placeholder .include <bsd.port.post.mk> Modified: head/irc/bitchx/distinfo ============================================================================== --- head/irc/bitchx/distinfo Sun Sep 16 14:12:53 2012 (r304349) +++ head/irc/bitchx/distinfo Sun Sep 16 14:16:20 2012 (r304350) @@ -1,2 +1,2 @@ -SHA256 (ircii-pana-1.1-final.tar.gz) = 7464cd75a10f2d117a10cf0184e5d4b9ece44de03a226402c17bdd3f2c7eca57 -SIZE (ircii-pana-1.1-final.tar.gz) = 2532476 +SHA256 (BitchX-BitchX1.2-a22b86f.tar.gz) = 78868bf79960fdb3cb716f38a90a084aaf9dfd76498e0c7df252ef1e43ca9a08 +SIZE (BitchX-BitchX1.2-a22b86f.tar.gz) = 2555622 Modified: head/irc/bitchx/files/patch-amd64_fix ============================================================================== --- head/irc/bitchx/files/patch-amd64_fix Sun Sep 16 14:12:53 2012 (r304349) +++ head/irc/bitchx/files/patch-amd64_fix Sun Sep 16 14:16:20 2012 (r304350) @@ -14,18 +14,6 @@ diff -ur BitchX.orig/include/module.h Bi #ifdef WANT_DLL #ifdef HPUX -diff -ur BitchX.orig/include/modval.h BitchX/include/modval.h ---- BitchX.orig/include/modval.h Fri Apr 11 03:09:07 2003 -+++ include/modval.h Sun Jan 8 17:18:15 2006 -@@ -318,7 +318,7 @@ - #define show_window(x) ((void) (global[SHOW_WINDOW]((Window *)x))) - #define get_status_by_refnum(x, y) ((char *) (global[GET_STATUS_BY_REFNUM]((unsigned int)x, (unsigned int)y))) - #define get_visible_by_refnum(x) ((int) (global[GET_VISIBLE_BY_REFNUM]((char *)x))) --#define get_window_by_desc(x) ((Window *) (global[GET_WINDOW_BY_DESC]((unsigned int)x))) -+#define get_window_by_desc(x) ((Window *) (global[GET_WINDOW_BY_DESC]((unsigned long)x))) - #define get_window_by_refnum(x) ((Window *) (global[GET_WINDOW_BY_REFNUM]((unsigned int)x))) - #define get_window_by_name(x) ((Window *) (global[GET_WINDOW_BY_NAME]((char *)x))) - #define next_window(x, y) ((void) (global[FUNC_NEXT_WINDOW]((char)x, (char *)y))) diff -ur BitchX.orig/source/screen.c BitchX/source/screen.c --- BitchX.orig/source/screen.c Thu Jul 31 09:01:08 2003 +++ source/screen.c Sun Jan 8 17:18:18 2006 Modified: head/irc/bitchx/files/patch-aq ============================================================================== --- head/irc/bitchx/files/patch-aq Sun Sep 16 14:12:53 2012 (r304349) +++ head/irc/bitchx/files/patch-aq Sun Sep 16 14:16:20 2012 (r304350) @@ -9,15 +9,6 @@ /* if you use cidentd the filename is called .authlie instead of .noident. * as well some modifications to the format of the file were made. So we -@@ -449,7 +449,7 @@ - #define DEFAULT_FTP_GRAB OFF - #define DEFAULT_HTTP_GRAB OFF - #define DEFAULT_HELP_WINDOW OFF --#define DEFAULT_NICK_COMPLETION ON -+#define DEFAULT_NICK_COMPLETION OFF - #define DEFAULT_NICK_COMPLETION_LEN 2 - #define DEFAULT_NICK_COMPLETION_TYPE 0 /* 0 1 2 */ - #define DEFAULT_NOTIFY ON @@ -480,9 +480,9 @@ #define DEFAULT_AINV 0 #define DEFAULT_ANNOY_KICK OFF Modified: head/irc/bitchx/pkg-plist ============================================================================== --- head/irc/bitchx/pkg-plist Sun Sep 16 14:12:53 2012 (r304349) +++ head/irc/bitchx/pkg-plist Sun Sep 16 14:16:20 2012 (r304350) @@ -1,922 +1,13 @@ @unexec if [ -f %D/share/bx/script/bxglobal.old ]; then rm -f %D/share/bx/script/bxglobal.old; fi %%NOGNOME%%bin/BitchX -%%NOGNOME%%bin/BitchX-1.1-final +%%NOGNOME%%bin/BitchX-1.2c01-svn %%GNOME%%bin/gtkBitchX -%%GNOME%%bin/gtkBitchX-1.1-final +%%GNOME%%bin/gtkBitchX-1.2c01-svn %%NOGNOME%%bin/scr-bx share/bx/BitchX.help share/bx/BitchX.ircnames share/bx/BitchX.quit share/bx/BitchX.kick -%%PORTDOCS%%share/bx/help/1_General/1_General -%%PORTDOCS%%share/bx/help/1_General/4op -%%PORTDOCS%%share/bx/help/1_General/about -%%PORTDOCS%%share/bx/help/1_General/addforward -%%PORTDOCS%%share/bx/help/1_General/addidle -%%PORTDOCS%%share/bx/help/1_General/addlamenick -%%PORTDOCS%%share/bx/help/1_General/addnoflood -%%PORTDOCS%%share/bx/help/1_General/addshit -%%PORTDOCS%%share/bx/help/1_General/adduser -%%PORTDOCS%%share/bx/help/1_General/addword -%%PORTDOCS%%share/bx/help/1_General/ajoin -%%PORTDOCS%%share/bx/help/1_General/ajoinlist -%%PORTDOCS%%share/bx/help/1_General/away -%%PORTDOCS%%share/bx/help/1_General/awaylog -%%PORTDOCS%%share/bx/help/1_General/awaymsg -%%PORTDOCS%%share/bx/help/1_General/b -%%PORTDOCS%%share/bx/help/1_General/back -%%PORTDOCS%%share/bx/help/1_General/ban -%%PORTDOCS%%share/bx/help/1_General/banstat -%%PORTDOCS%%share/bx/help/1_General/bantype -%%PORTDOCS%%share/bx/help/1_General/banwords -%%PORTDOCS%%share/bx/help/1_General/bk -%%PORTDOCS%%share/bx/help/1_General/bki -%%PORTDOCS%%share/bx/help/1_General/bye -%%PORTDOCS%%share/bx/help/1_General/channel -%%PORTDOCS%%share/bx/help/1_General/chat -%%PORTDOCS%%share/bx/help/1_General/ctcp/action -%%PORTDOCS%%share/bx/help/1_General/ctcp/bdcc -%%PORTDOCS%%share/bx/help/1_General/ctcp/cdcc -%%PORTDOCS%%share/bx/help/1_General/ctcp/clientinfo -%%PORTDOCS%%share/bx/help/1_General/ctcp/ctcp -%%PORTDOCS%%share/bx/help/1_General/ctcp/echo -%%PORTDOCS%%share/bx/help/1_General/ctcp/finger -%%PORTDOCS%%share/bx/help/1_General/ctcp/ident -%%PORTDOCS%%share/bx/help/1_General/ctcp/invite -%%PORTDOCS%%share/bx/help/1_General/ctcp/op -%%PORTDOCS%%share/bx/help/1_General/ctcp/ops -%%PORTDOCS%%share/bx/help/1_General/ctcp/ping -%%PORTDOCS%%share/bx/help/1_General/ctcp/time -%%PORTDOCS%%share/bx/help/1_General/ctcp/unban -%%PORTDOCS%%share/bx/help/1_General/ctcp/uptime -%%PORTDOCS%%share/bx/help/1_General/ctcp/userinfo -%%PORTDOCS%%share/bx/help/1_General/ctcp/utc -%%PORTDOCS%%share/bx/help/1_General/ctcp/version -%%PORTDOCS%%share/bx/help/1_General/ctcp/whoami -%%PORTDOCS%%share/bx/help/1_General/ctcp/xdcc -%%PORTDOCS%%share/bx/help/1_General/dcc/activecount -%%PORTDOCS%%share/bx/help/1_General/dcc/autoget -%%PORTDOCS%%share/bx/help/1_General/dcc/autooverwrite -%%PORTDOCS%%share/bx/help/1_General/dcc/autorename -%%PORTDOCS%%share/bx/help/1_General/dcc/autoresume -%%PORTDOCS%%share/bx/help/1_General/dcc/bot -%%PORTDOCS%%share/bx/help/1_General/dcc/chat -%%PORTDOCS%%share/bx/help/1_General/dcc/close -%%PORTDOCS%%share/bx/help/1_General/dcc/closeall -%%PORTDOCS%%share/bx/help/1_General/dcc/dcc -%%PORTDOCS%%share/bx/help/1_General/dcc/exempt -%%PORTDOCS%%share/bx/help/1_General/dcc/ftp -%%PORTDOCS%%share/bx/help/1_General/dcc/get -%%PORTDOCS%%share/bx/help/1_General/dcc/list -%%PORTDOCS%%share/bx/help/1_General/dcc/quietmode -%%PORTDOCS%%share/bx/help/1_General/dcc/raw -%%PORTDOCS%%share/bx/help/1_General/dcc/reget -%%PORTDOCS%%share/bx/help/1_General/dcc/rename -%%PORTDOCS%%share/bx/help/1_General/dcc/resend -%%PORTDOCS%%share/bx/help/1_General/dcc/resume -%%PORTDOCS%%share/bx/help/1_General/dcc/send -%%PORTDOCS%%share/bx/help/1_General/dcc/showpaths -%%PORTDOCS%%share/bx/help/1_General/dcc/stats -%%PORTDOCS%%share/bx/help/1_General/dcc/tget -%%PORTDOCS%%share/bx/help/1_General/dcc/treget -%%PORTDOCS%%share/bx/help/1_General/dcc/tresend -%%PORTDOCS%%share/bx/help/1_General/dcc/tsend -%%PORTDOCS%%share/bx/help/1_General/describe -%%PORTDOCS%%share/bx/help/1_General/disconnect -%%PORTDOCS%%share/bx/help/1_General/gone -%%PORTDOCS%%share/bx/help/1_General/help -%%PORTDOCS%%share/bx/help/1_General/ignore -%%PORTDOCS%%share/bx/help/1_General/invite -%%PORTDOCS%%share/bx/help/1_General/j -%%PORTDOCS%%share/bx/help/1_General/join -%%PORTDOCS%%share/bx/help/1_General/k -%%PORTDOCS%%share/bx/help/1_General/kb -%%PORTDOCS%%share/bx/help/1_General/kbi -%%PORTDOCS%%share/bx/help/1_General/kick -%%PORTDOCS%%share/bx/help/1_General/kickidle -%%PORTDOCS%%share/bx/help/1_General/l -%%PORTDOCS%%share/bx/help/1_General/lamenicklist -%%PORTDOCS%%share/bx/help/1_General/lastlog -%%PORTDOCS%%share/bx/help/1_General/leave -%%PORTDOCS%%share/bx/help/1_General/m -%%PORTDOCS%%share/bx/help/1_General/me -%%PORTDOCS%%share/bx/help/1_General/mode -%%PORTDOCS%%share/bx/help/1_General/msg -%%PORTDOCS%%share/bx/help/1_General/nick -%%PORTDOCS%%share/bx/help/1_General/nochat -%%PORTDOCS%%share/bx/help/1_General/noforward -%%PORTDOCS%%share/bx/help/1_General/notice -%%PORTDOCS%%share/bx/help/1_General/notify -%%PORTDOCS%%share/bx/help/1_General/nslookup -%%PORTDOCS%%share/bx/help/1_General/offers -%%PORTDOCS%%share/bx/help/1_General/p -%%PORTDOCS%%share/bx/help/1_General/part -%%PORTDOCS%%share/bx/help/1_General/partall -%%PORTDOCS%%share/bx/help/1_General/ping -%%PORTDOCS%%share/bx/help/1_General/query -%%PORTDOCS%%share/bx/help/1_General/quit -%%PORTDOCS%%share/bx/help/1_General/reconnect -%%PORTDOCS%%share/bx/help/1_General/say -%%PORTDOCS%%share/bx/help/1_General/server -%%PORTDOCS%%share/bx/help/1_General/shitlist -%%PORTDOCS%%share/bx/help/1_General/showwordkick -%%PORTDOCS%%share/bx/help/1_General/silence -%%PORTDOCS%%share/bx/help/1_General/spam -%%PORTDOCS%%share/bx/help/1_General/t -%%PORTDOCS%%share/bx/help/1_General/topic -%%PORTDOCS%%share/bx/help/1_General/unajoin -%%PORTDOCS%%share/bx/help/1_General/unforward -%%PORTDOCS%%share/bx/help/1_General/unidle -%%PORTDOCS%%share/bx/help/1_General/unlamenick -%%PORTDOCS%%share/bx/help/1_General/unshit -%%PORTDOCS%%share/bx/help/1_General/unuser -%%PORTDOCS%%share/bx/help/1_General/unwordkick -%%PORTDOCS%%share/bx/help/1_General/uping -%%PORTDOCS%%share/bx/help/1_General/url -%%PORTDOCS%%share/bx/help/1_General/ver -%%PORTDOCS%%share/bx/help/1_General/wordlist -%%PORTDOCS%%share/bx/help/2_Queries/2_Queries -%%PORTDOCS%%share/bx/help/2_Queries/admin -%%PORTDOCS%%share/bx/help/2_Queries/flush -%%PORTDOCS%%share/bx/help/2_Queries/info -%%PORTDOCS%%share/bx/help/2_Queries/ison -%%PORTDOCS%%share/bx/help/2_Queries/links -%%PORTDOCS%%share/bx/help/2_Queries/list -%%PORTDOCS%%share/bx/help/2_Queries/lusers -%%PORTDOCS%%share/bx/help/2_Queries/map -%%PORTDOCS%%share/bx/help/2_Queries/motd -%%PORTDOCS%%share/bx/help/2_Queries/n -%%PORTDOCS%%share/bx/help/2_Queries/names -%%PORTDOCS%%share/bx/help/2_Queries/sc -%%PORTDOCS%%share/bx/help/2_Queries/scan -%%PORTDOCS%%share/bx/help/2_Queries/scanf -%%PORTDOCS%%share/bx/help/2_Queries/scani -%%PORTDOCS%%share/bx/help/2_Queries/scann -%%PORTDOCS%%share/bx/help/2_Queries/scano -%%PORTDOCS%%share/bx/help/2_Queries/scans -%%PORTDOCS%%share/bx/help/2_Queries/scanv -%%PORTDOCS%%share/bx/help/2_Queries/stats -%%PORTDOCS%%share/bx/help/2_Queries/time -%%PORTDOCS%%share/bx/help/2_Queries/trace -%%PORTDOCS%%share/bx/help/2_Queries/userhost -%%PORTDOCS%%share/bx/help/2_Queries/userip -%%PORTDOCS%%share/bx/help/2_Queries/users -%%PORTDOCS%%share/bx/help/2_Queries/version -%%PORTDOCS%%share/bx/help/2_Queries/who -%%PORTDOCS%%share/bx/help/2_Queries/whois -%%PORTDOCS%%share/bx/help/2_Queries/whowas -%%PORTDOCS%%share/bx/help/2_Queries/wi -%%PORTDOCS%%share/bx/help/2_Queries/wii -%%PORTDOCS%%share/bx/help/2_Queries/wilc -%%PORTDOCS%%share/bx/help/2_Queries/wilcr -%%PORTDOCS%%share/bx/help/2_Queries/wilm -%%PORTDOCS%%share/bx/help/2_Queries/wiln -%%PORTDOCS%%share/bx/help/2_Queries/ww -%%PORTDOCS%%share/bx/help/3_Operators/3_Operators -%%PORTDOCS%%share/bx/help/3_Operators/connect -%%PORTDOCS%%share/bx/help/3_Operators/deoper -%%PORTDOCS%%share/bx/help/3_Operators/die -%%PORTDOCS%%share/bx/help/3_Operators/dline -%%PORTDOCS%%share/bx/help/3_Operators/hash -%%PORTDOCS%%share/bx/help/3_Operators/helpop -%%PORTDOCS%%share/bx/help/3_Operators/helpserv -%%PORTDOCS%%share/bx/help/3_Operators/kill -%%PORTDOCS%%share/bx/help/3_Operators/kline -%%PORTDOCS%%share/bx/help/3_Operators/locop -%%PORTDOCS%%share/bx/help/3_Operators/oper -%%PORTDOCS%%share/bx/help/3_Operators/rehash -%%PORTDOCS%%share/bx/help/3_Operators/restart -%%PORTDOCS%%share/bx/help/3_Operators/rping -%%PORTDOCS%%share/bx/help/3_Operators/sping -%%PORTDOCS%%share/bx/help/3_Operators/squit -%%PORTDOCS%%share/bx/help/3_Operators/swallop -%%PORTDOCS%%share/bx/help/3_Operators/tkline -%%PORTDOCS%%share/bx/help/3_Operators/unkline -%%PORTDOCS%%share/bx/help/3_Operators/uping -%%PORTDOCS%%share/bx/help/3_Operators/wallops -%%PORTDOCS%%share/bx/help/4_Misc/4_Misc -%%PORTDOCS%%share/bx/help/4_Misc/abort -%%PORTDOCS%%share/bx/help/4_Misc/beep -%%PORTDOCS%%share/bx/help/4_Misc/bind/backspace -%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_history -%%PORTDOCS%%share/bx/help/4_Misc/bind/backward_word -%%PORTDOCS%%share/bx/help/4_Misc/bind/beginning_of_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/bind -%%PORTDOCS%%share/bx/help/4_Misc/bind/blink -%%PORTDOCS%%share/bx/help/4_Misc/bind/bold -%%PORTDOCS%%share/bx/help/4_Misc/bind/clear_screen -%%PORTDOCS%%share/bx/help/4_Misc/bind/command_completion -%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_next_word -%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_previous_word -%%PORTDOCS%%share/bx/help/4_Misc/bind/delete_to_previous_space -%%PORTDOCS%%share/bx/help/4_Misc/bind/end_of_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/enter_digraph -%%PORTDOCS%%share/bx/help/4_Misc/bind/enter_menu -%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_to_beg_of_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/erase_to_end_of_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_history -%%PORTDOCS%%share/bx/help/4_Misc/bind/forward_word -%%PORTDOCS%%share/bx/help/4_Misc/bind/highlight_off -%%PORTDOCS%%share/bx/help/4_Misc/bind/meta1_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/meta4_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/next_window -%%PORTDOCS%%share/bx/help/4_Misc/bind/nothing -%%PORTDOCS%%share/bx/help/4_Misc/bind/parse_command -%%PORTDOCS%%share/bx/help/4_Misc/bind/paste_to_input -%%PORTDOCS%%share/bx/help/4_Misc/bind/previous_window -%%PORTDOCS%%share/bx/help/4_Misc/bind/quit_irc -%%PORTDOCS%%share/bx/help/4_Misc/bind/quote_character -%%PORTDOCS%%share/bx/help/4_Misc/bind/refresh_inputline -%%PORTDOCS%%share/bx/help/4_Misc/bind/refresh_screen -%%PORTDOCS%%share/bx/help/4_Misc/bind/reverse -%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_backward -%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_end -%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_forward -%%PORTDOCS%%share/bx/help/4_Misc/bind/scroll_start -%%PORTDOCS%%share/bx/help/4_Misc/bind/self_insert -%%PORTDOCS%%share/bx/help/4_Misc/bind/send_line -%%PORTDOCS%%share/bx/help/4_Misc/bind/shove_to_history -%%PORTDOCS%%share/bx/help/4_Misc/bind/stop_irc -%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_last_window -%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_next_window -%%PORTDOCS%%share/bx/help/4_Misc/bind/swap_previous_window -%%PORTDOCS%%share/bx/help/4_Misc/bind/switch_channels -%%PORTDOCS%%share/bx/help/4_Misc/bind/toggle_insert_mode -%%PORTDOCS%%share/bx/help/4_Misc/bind/toggle_stop_screen -%%PORTDOCS%%share/bx/help/4_Misc/bind/transpose_characters -%%PORTDOCS%%share/bx/help/4_Misc/bind/type_text -%%PORTDOCS%%share/bx/help/4_Misc/bind/unclear_screen -%%PORTDOCS%%share/bx/help/4_Misc/bind/underline -%%PORTDOCS%%share/bx/help/4_Misc/bind/unstop_all_windows -%%PORTDOCS%%share/bx/help/4_Misc/bind/yank_from_cutbuffer -%%PORTDOCS%%share/bx/help/4_Misc/cd -%%PORTDOCS%%share/bx/help/4_Misc/clear -%%PORTDOCS%%share/bx/help/4_Misc/digraph -%%PORTDOCS%%share/bx/help/4_Misc/encrypt -%%PORTDOCS%%share/bx/help/4_Misc/history -%%PORTDOCS%%share/bx/help/4_Misc/hostname -%%PORTDOCS%%share/bx/help/4_Misc/ircuser -%%PORTDOCS%%share/bx/help/4_Misc/mesg -%%PORTDOCS%%share/bx/help/4_Misc/mlist -%%PORTDOCS%%share/bx/help/4_Misc/mload -%%PORTDOCS%%share/bx/help/4_Misc/note -%%PORTDOCS%%share/bx/help/4_Misc/rbind -%%PORTDOCS%%share/bx/help/4_Misc/realname -%%PORTDOCS%%share/bx/help/4_Misc/set/always_split_biggest -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_new_nick -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_reconnect_delay -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_rejoin -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_rejoin_delay -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_unmark_away -%%PORTDOCS%%share/bx/help/4_Misc/set/auto_whowas -%%PORTDOCS%%share/bx/help/4_Misc/set/banner -%%PORTDOCS%%share/bx/help/4_Misc/set/banner_expand -%%PORTDOCS%%share/bx/help/4_Misc/set/beep -%%PORTDOCS%%share/bx/help/4_Misc/set/beep_max -%%PORTDOCS%%share/bx/help/4_Misc/set/beep_on_msg -%%PORTDOCS%%share/bx/help/4_Misc/set/beep_when_away -%%PORTDOCS%%share/bx/help/4_Misc/set/blink_video -%%PORTDOCS%%share/bx/help/4_Misc/set/bold_video -%%PORTDOCS%%share/bx/help/4_Misc/set/channel_name_width -%%PORTDOCS%%share/bx/help/4_Misc/set/client_information -%%PORTDOCS%%share/bx/help/4_Misc/set/clock -%%PORTDOCS%%share/bx/help/4_Misc/set/clock_24hour -%%PORTDOCS%%share/bx/help/4_Misc/set/clock_alarm -%%PORTDOCS%%share/bx/help/4_Misc/set/clock_format -%%PORTDOCS%%share/bx/help/4_Misc/set/cmdchars -%%PORTDOCS%%share/bx/help/4_Misc/set/color -%%PORTDOCS%%share/bx/help/4_Misc/set/command_mode -%%PORTDOCS%%share/bx/help/4_Misc/set/comment_hack -%%PORTDOCS%%share/bx/help/4_Misc/set/connect_timeout -%%PORTDOCS%%share/bx/help/4_Misc/set/continued_line -%%PORTDOCS%%share/bx/help/4_Misc/set/cpu_saver_after -%%PORTDOCS%%share/bx/help/4_Misc/set/cpu_saver_every -%%PORTDOCS%%share/bx/help/4_Misc/set/current_window_level -%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_auto_timeout -%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_long_pathnames -%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_sliding_window -%%PORTDOCS%%share/bx/help/4_Misc/set/dcc_store_path -%%PORTDOCS%%share/bx/help/4_Misc/set/debug -%%PORTDOCS%%share/bx/help/4_Misc/set/dispatch_unknown_command -%%PORTDOCS%%share/bx/help/4_Misc/set/display -%%PORTDOCS%%share/bx/help/4_Misc/set/display_ansi -%%PORTDOCS%%share/bx/help/4_Misc/set/do_notify_immediately -%%PORTDOCS%%share/bx/help/4_Misc/set/eight_bit_characters -%%PORTDOCS%%share/bx/help/4_Misc/set/encrypt_program -%%PORTDOCS%%share/bx/help/4_Misc/set/floating_point_math -%%PORTDOCS%%share/bx/help/4_Misc/set/flood_after -%%PORTDOCS%%share/bx/help/4_Misc/set/flood_rate -%%PORTDOCS%%share/bx/help/4_Misc/set/flood_users -%%PORTDOCS%%share/bx/help/4_Misc/set/flood_warning -%%PORTDOCS%%share/bx/help/4_Misc/set/full_status_line -%%PORTDOCS%%share/bx/help/4_Misc/set/help_pager -%%PORTDOCS%%share/bx/help/4_Misc/set/help_path -%%PORTDOCS%%share/bx/help/4_Misc/set/help_prompt -%%PORTDOCS%%share/bx/help/4_Misc/set/help_window -%%PORTDOCS%%share/bx/help/4_Misc/set/hide_private_channels -%%PORTDOCS%%share/bx/help/4_Misc/set/high_bit_escape -%%PORTDOCS%%share/bx/help/4_Misc/set/highlight_char -%%PORTDOCS%%share/bx/help/4_Misc/set/history -%%PORTDOCS%%share/bx/help/4_Misc/set/history_file -%%PORTDOCS%%share/bx/help/4_Misc/set/hold_mode -%%PORTDOCS%%share/bx/help/4_Misc/set/indent -%%PORTDOCS%%share/bx/help/4_Misc/set/input_aliases -%%PORTDOCS%%share/bx/help/4_Misc/set/input_prompt -%%PORTDOCS%%share/bx/help/4_Misc/set/insert_mode -%%PORTDOCS%%share/bx/help/4_Misc/set/inverse_video -%%PORTDOCS%%share/bx/help/4_Misc/set/lastlog -%%PORTDOCS%%share/bx/help/4_Misc/set/lastlog_level -%%PORTDOCS%%share/bx/help/4_Misc/set/load_path -%%PORTDOCS%%share/bx/help/4_Misc/set/log -%%PORTDOCS%%share/bx/help/4_Misc/set/logfile -%%PORTDOCS%%share/bx/help/4_Misc/set/mail -%%PORTDOCS%%share/bx/help/4_Misc/set/max_recursions -%%PORTDOCS%%share/bx/help/4_Misc/set/menu -%%PORTDOCS%%share/bx/help/4_Misc/set/mirc_broken_dcc_resume -%%PORTDOCS%%share/bx/help/4_Misc/set/mode_stripper -%%PORTDOCS%%share/bx/help/4_Misc/set/nd_space_max -%%PORTDOCS%%share/bx/help/4_Misc/set/no_control_log -%%PORTDOCS%%share/bx/help/4_Misc/set/no_ctcp_flood -%%PORTDOCS%%share/bx/help/4_Misc/set/no_fail_disconnect -%%PORTDOCS%%share/bx/help/4_Misc/set/notify_handler -%%PORTDOCS%%share/bx/help/4_Misc/set/notify_interval -%%PORTDOCS%%share/bx/help/4_Misc/set/notify_level -%%PORTDOCS%%share/bx/help/4_Misc/set/notify_on_termination -%%PORTDOCS%%share/bx/help/4_Misc/set/notify_userhost_automatic -%%PORTDOCS%%share/bx/help/4_Misc/set/novice -%%PORTDOCS%%share/bx/help/4_Misc/set/num_of_whowas -%%PORTDOCS%%share/bx/help/4_Misc/set/pad_char -%%PORTDOCS%%share/bx/help/4_Misc/set/quit_message -%%PORTDOCS%%share/bx/help/4_Misc/set/realname -%%PORTDOCS%%share/bx/help/4_Misc/set/reverse_status_line -%%PORTDOCS%%share/bx/help/4_Misc/set/reverse_video -%%PORTDOCS%%share/bx/help/4_Misc/set/screen_options -%%PORTDOCS%%share/bx/help/4_Misc/set/scroll -%%PORTDOCS%%share/bx/help/4_Misc/set/scroll_lines -%%PORTDOCS%%share/bx/help/4_Misc/set/scrollback -%%PORTDOCS%%share/bx/help/4_Misc/set/scrollback_ratio -%%PORTDOCS%%share/bx/help/4_Misc/set/security -%%PORTDOCS%%share/bx/help/4_Misc/set/send_ignore_msg -%%PORTDOCS%%share/bx/help/4_Misc/set/set -%%PORTDOCS%%share/bx/help/4_Misc/set/shell -%%PORTDOCS%%share/bx/help/4_Misc/set/shell_flags -%%PORTDOCS%%share/bx/help/4_Misc/set/shell_limit -%%PORTDOCS%%share/bx/help/4_Misc/set/show_away_once -%%PORTDOCS%%share/bx/help/4_Misc/set/show_channel_names -%%PORTDOCS%%share/bx/help/4_Misc/set/show_end_of_msgs -%%PORTDOCS%%share/bx/help/4_Misc/set/show_numerics -%%PORTDOCS%%share/bx/help/4_Misc/set/show_status_all -%%PORTDOCS%%share/bx/help/4_Misc/set/show_who_hopcount -%%PORTDOCS%%share/bx/help/4_Misc/set/status_away -%%PORTDOCS%%share/bx/help/4_Misc/set/status_channel -%%PORTDOCS%%share/bx/help/4_Misc/set/status_chanop -%%PORTDOCS%%share/bx/help/4_Misc/set/status_clock -%%PORTDOCS%%share/bx/help/4_Misc/set/status_does_expandos -%%PORTDOCS%%share/bx/help/4_Misc/set/status_format -%%PORTDOCS%%share/bx/help/4_Misc/set/status_hold -%%PORTDOCS%%share/bx/help/4_Misc/set/status_hold_lines -%%PORTDOCS%%share/bx/help/4_Misc/set/status_insert -%%PORTDOCS%%share/bx/help/4_Misc/set/status_mail -%%PORTDOCS%%share/bx/help/4_Misc/set/status_mode -%%PORTDOCS%%share/bx/help/4_Misc/set/status_nick -%%PORTDOCS%%share/bx/help/4_Misc/set/status_no_repeat -%%PORTDOCS%%share/bx/help/4_Misc/set/status_notify -%%PORTDOCS%%share/bx/help/4_Misc/set/status_oper -%%PORTDOCS%%share/bx/help/4_Misc/set/status_overwrite -%%PORTDOCS%%share/bx/help/4_Misc/set/status_query -%%PORTDOCS%%share/bx/help/4_Misc/set/status_scrollback -%%PORTDOCS%%share/bx/help/4_Misc/set/status_server -%%PORTDOCS%%share/bx/help/4_Misc/set/status_truncate_rhs -%%PORTDOCS%%share/bx/help/4_Misc/set/status_umode -%%PORTDOCS%%share/bx/help/4_Misc/set/status_user -%%PORTDOCS%%share/bx/help/4_Misc/set/status_voice -%%PORTDOCS%%share/bx/help/4_Misc/set/status_window -%%PORTDOCS%%share/bx/help/4_Misc/set/suppress_from_remote_server -%%PORTDOCS%%share/bx/help/4_Misc/set/suppress_server_motd -%%PORTDOCS%%share/bx/help/4_Misc/set/tab -%%PORTDOCS%%share/bx/help/4_Misc/set/tab_max -%%PORTDOCS%%share/bx/help/4_Misc/set/underline_video -%%PORTDOCS%%share/bx/help/4_Misc/set/user_information -%%PORTDOCS%%share/bx/help/4_Misc/set/verbose_ctcp -%%PORTDOCS%%share/bx/help/4_Misc/set/warn_of_ignores -%%PORTDOCS%%share/bx/help/4_Misc/set/xterm -%%PORTDOCS%%share/bx/help/4_Misc/set/xterm_options -%%PORTDOCS%%share/bx/help/4_Misc/summon -%%PORTDOCS%%share/bx/help/4_Misc/unclear -%%PORTDOCS%%share/bx/help/4_Misc/which -%%PORTDOCS%%share/bx/help/4_Misc/window/add -%%PORTDOCS%%share/bx/help/4_Misc/window/back -%%PORTDOCS%%share/bx/help/4_Misc/window/balance -%%PORTDOCS%%share/bx/help/4_Misc/window/beep_always -%%PORTDOCS%%share/bx/help/4_Misc/window/bind -%%PORTDOCS%%share/bx/help/4_Misc/window/channel -%%PORTDOCS%%share/bx/help/4_Misc/window/create -%%PORTDOCS%%share/bx/help/4_Misc/window/delete -%%PORTDOCS%%share/bx/help/4_Misc/window/discon -%%PORTDOCS%%share/bx/help/4_Misc/window/double -%%PORTDOCS%%share/bx/help/4_Misc/window/echo -%%PORTDOCS%%share/bx/help/4_Misc/window/fixed -%%PORTDOCS%%share/bx/help/4_Misc/window/font -%%PORTDOCS%%share/bx/help/4_Misc/window/goto -%%PORTDOCS%%share/bx/help/4_Misc/window/grow -%%PORTDOCS%%share/bx/help/4_Misc/window/hide -%%PORTDOCS%%share/bx/help/4_Misc/window/hide_others -%%PORTDOCS%%share/bx/help/4_Misc/window/hold_mode -%%PORTDOCS%%share/bx/help/4_Misc/window/kill -%%PORTDOCS%%share/bx/help/4_Misc/window/kill_others -%%PORTDOCS%%share/bx/help/4_Misc/window/killswap -%%PORTDOCS%%share/bx/help/4_Misc/window/last -%%PORTDOCS%%share/bx/help/4_Misc/window/lastlog -%%PORTDOCS%%share/bx/help/4_Misc/window/lastlog_level -%%PORTDOCS%%share/bx/help/4_Misc/window/level -%%PORTDOCS%%share/bx/help/4_Misc/window/list -%%PORTDOCS%%share/bx/help/4_Misc/window/log -%%PORTDOCS%%share/bx/help/4_Misc/window/logfile -%%PORTDOCS%%share/bx/help/4_Misc/window/menu -%%PORTDOCS%%share/bx/help/4_Misc/window/move -%%PORTDOCS%%share/bx/help/4_Misc/window/name -%%PORTDOCS%%share/bx/help/4_Misc/window/new -%%PORTDOCS%%share/bx/help/4_Misc/window/next -%%PORTDOCS%%share/bx/help/4_Misc/window/noserv -%%PORTDOCS%%share/bx/help/4_Misc/window/notify -%%PORTDOCS%%share/bx/help/4_Misc/window/notify_level -%%PORTDOCS%%share/bx/help/4_Misc/window/number -%%PORTDOCS%%share/bx/help/4_Misc/window/pop -%%PORTDOCS%%share/bx/help/4_Misc/window/previous -%%PORTDOCS%%share/bx/help/4_Misc/window/prompt -%%PORTDOCS%%share/bx/help/4_Misc/window/push -%%PORTDOCS%%share/bx/help/4_Misc/window/query -%%PORTDOCS%%share/bx/help/4_Misc/window/refnum -%%PORTDOCS%%share/bx/help/4_Misc/window/remove -%%PORTDOCS%%share/bx/help/4_Misc/window/scratch -%%PORTDOCS%%share/bx/help/4_Misc/window/scroll -%%PORTDOCS%%share/bx/help/4_Misc/window/server -%%PORTDOCS%%share/bx/help/4_Misc/window/setwindowpos -%%PORTDOCS%%share/bx/help/4_Misc/window/show -%%PORTDOCS%%share/bx/help/4_Misc/window/shrink -%%PORTDOCS%%share/bx/help/4_Misc/window/size -%%PORTDOCS%%share/bx/help/4_Misc/window/skip -%%PORTDOCS%%share/bx/help/4_Misc/window/stack -%%PORTDOCS%%share/bx/help/4_Misc/window/status_special -%%PORTDOCS%%share/bx/help/4_Misc/window/swap -%%PORTDOCS%%share/bx/help/4_Misc/window/unbind -%%PORTDOCS%%share/bx/help/4_Misc/window/window -%%PORTDOCS%%share/bx/help/5_Programming/5_Programming -%%PORTDOCS%%share/bx/help/5_Programming/alias -%%PORTDOCS%%share/bx/help/5_Programming/assign -%%PORTDOCS%%share/bx/help/5_Programming/bless -%%PORTDOCS%%share/bx/help/5_Programming/break -%%PORTDOCS%%share/bx/help/5_Programming/call -%%PORTDOCS%%share/bx/help/5_Programming/comment -%%PORTDOCS%%share/bx/help/5_Programming/continue -%%PORTDOCS%%share/bx/help/5_Programming/do -%%PORTDOCS%%share/bx/help/5_Programming/dump -%%PORTDOCS%%share/bx/help/5_Programming/echo -%%PORTDOCS%%share/bx/help/5_Programming/eval -%%PORTDOCS%%share/bx/help/5_Programming/exec -%%PORTDOCS%%share/bx/help/5_Programming/fe -%%PORTDOCS%%share/bx/help/5_Programming/fec -%%PORTDOCS%%share/bx/help/5_Programming/filedialog -%%PORTDOCS%%share/bx/help/5_Programming/fontdialog -%%PORTDOCS%%share/bx/help/5_Programming/for -%%PORTDOCS%%share/bx/help/5_Programming/foreach -%%PORTDOCS%%share/bx/help/5_Programming/hook -%%PORTDOCS%%share/bx/help/5_Programming/if -%%PORTDOCS%%share/bx/help/5_Programming/input -%%PORTDOCS%%share/bx/help/5_Programming/load -%%PORTDOCS%%share/bx/help/5_Programming/loaddll -%%PORTDOCS%%share/bx/help/5_Programming/loadtcl -%%PORTDOCS%%share/bx/help/5_Programming/local -%%PORTDOCS%%share/bx/help/5_Programming/menu -%%PORTDOCS%%share/bx/help/5_Programming/menuitem -%%PORTDOCS%%share/bx/help/5_Programming/on/action -%%PORTDOCS%%share/bx/help/5_Programming/on/channel_nick -%%PORTDOCS%%share/bx/help/5_Programming/on/channel_signoff -%%PORTDOCS%%share/bx/help/5_Programming/on/connect -%%PORTDOCS%%share/bx/help/5_Programming/on/ctcp -%%PORTDOCS%%share/bx/help/5_Programming/on/ctcp_reply -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_chat -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_connect -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_list -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_lost -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_offer -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_raw -%%PORTDOCS%%share/bx/help/5_Programming/on/dcc_request -%%PORTDOCS%%share/bx/help/5_Programming/on/disconnect -%%PORTDOCS%%share/bx/help/5_Programming/on/encrypted_notice -%%PORTDOCS%%share/bx/help/5_Programming/on/encrypted_privmsg -%%PORTDOCS%%share/bx/help/5_Programming/on/exec -%%PORTDOCS%%share/bx/help/5_Programming/on/exec_errors -%%PORTDOCS%%share/bx/help/5_Programming/on/exec_exit -%%PORTDOCS%%share/bx/help/5_Programming/on/exec_prompt -%%PORTDOCS%%share/bx/help/5_Programming/on/exit -%%PORTDOCS%%share/bx/help/5_Programming/on/flood -%%PORTDOCS%%share/bx/help/5_Programming/on/help -%%PORTDOCS%%share/bx/help/5_Programming/on/hook -%%PORTDOCS%%share/bx/help/5_Programming/on/idle -%%PORTDOCS%%share/bx/help/5_Programming/on/input -%%PORTDOCS%%share/bx/help/5_Programming/on/invite -%%PORTDOCS%%share/bx/help/5_Programming/on/join -%%PORTDOCS%%share/bx/help/5_Programming/on/kick -%%PORTDOCS%%share/bx/help/5_Programming/on/kill -%%PORTDOCS%%share/bx/help/5_Programming/on/leave -%%PORTDOCS%%share/bx/help/5_Programming/on/list -%%PORTDOCS%%share/bx/help/5_Programming/on/mail -%%PORTDOCS%%share/bx/help/5_Programming/on/mode -%%PORTDOCS%%share/bx/help/5_Programming/on/mode_stripped -%%PORTDOCS%%share/bx/help/5_Programming/on/msg -%%PORTDOCS%%share/bx/help/5_Programming/on/msg_group -%%PORTDOCS%%share/bx/help/5_Programming/on/names -%%PORTDOCS%%share/bx/help/5_Programming/on/nickname -%%PORTDOCS%%share/bx/help/5_Programming/on/note -%%PORTDOCS%%share/bx/help/5_Programming/on/notice -%%PORTDOCS%%share/bx/help/5_Programming/on/notify_signoff -%%PORTDOCS%%share/bx/help/5_Programming/on/notify_signon -%%PORTDOCS%%share/bx/help/5_Programming/on/odd_server_stuff -%%PORTDOCS%%share/bx/help/5_Programming/on/on -%%PORTDOCS%%share/bx/help/5_Programming/on/oper_notice -%%PORTDOCS%%share/bx/help/5_Programming/on/pong -%%PORTDOCS%%share/bx/help/5_Programming/on/public -%%PORTDOCS%%share/bx/help/5_Programming/on/public_msg -%%PORTDOCS%%share/bx/help/5_Programming/on/public_notice -%%PORTDOCS%%share/bx/help/5_Programming/on/public_other -%%PORTDOCS%%share/bx/help/5_Programming/on/raw_irc -%%PORTDOCS%%share/bx/help/5_Programming/on/redirect -%%PORTDOCS%%share/bx/help/5_Programming/on/send_action -%%PORTDOCS%%share/bx/help/5_Programming/on/send_ctcp -%%PORTDOCS%%share/bx/help/5_Programming/on/send_dcc_chat -%%PORTDOCS%%share/bx/help/5_Programming/on/send_msg -%%PORTDOCS%%share/bx/help/5_Programming/on/send_notice -%%PORTDOCS%%share/bx/help/5_Programming/on/send_public -%%PORTDOCS%%share/bx/help/5_Programming/on/send_to_server -%%PORTDOCS%%share/bx/help/5_Programming/on/server_lost -%%PORTDOCS%%share/bx/help/5_Programming/on/server_notice -%%PORTDOCS%%share/bx/help/5_Programming/on/set -%%PORTDOCS%%share/bx/help/5_Programming/on/signoff -%%PORTDOCS%%share/bx/help/5_Programming/on/silence -%%PORTDOCS%%share/bx/help/5_Programming/on/status_update -%%PORTDOCS%%share/bx/help/5_Programming/on/timer -%%PORTDOCS%%share/bx/help/5_Programming/on/topic -%%PORTDOCS%%share/bx/help/5_Programming/on/unload -%%PORTDOCS%%share/bx/help/5_Programming/on/wall -%%PORTDOCS%%share/bx/help/5_Programming/on/wallop -%%PORTDOCS%%share/bx/help/5_Programming/on/who -%%PORTDOCS%%share/bx/help/5_Programming/on/widelist -%%PORTDOCS%%share/bx/help/5_Programming/on/window -%%PORTDOCS%%share/bx/help/5_Programming/on/window_create -%%PORTDOCS%%share/bx/help/5_Programming/on/window_kill -%%PORTDOCS%%share/bx/help/5_Programming/on/yell -%%PORTDOCS%%share/bx/help/5_Programming/package -%%PORTDOCS%%share/bx/help/5_Programming/parsekey -%%PORTDOCS%%share/bx/help/5_Programming/pmpaste -%%PORTDOCS%%share/bx/help/5_Programming/pop -%%PORTDOCS%%share/bx/help/5_Programming/popupmenu -%%PORTDOCS%%share/bx/help/5_Programming/popupmsg -%%PORTDOCS%%share/bx/help/5_Programming/pretend -%%PORTDOCS%%share/bx/help/5_Programming/properties -%%PORTDOCS%%share/bx/help/5_Programming/push -%%PORTDOCS%%share/bx/help/5_Programming/queue -%%PORTDOCS%%share/bx/help/5_Programming/quote -%%PORTDOCS%%share/bx/help/5_Programming/redirect -%%PORTDOCS%%share/bx/help/5_Programming/repeat -%%PORTDOCS%%share/bx/help/5_Programming/return -%%PORTDOCS%%share/bx/help/5_Programming/save -%%PORTDOCS%%share/bx/help/5_Programming/saveirc -%%PORTDOCS%%share/bx/help/5_Programming/send -%%PORTDOCS%%share/bx/help/5_Programming/sendline -%%PORTDOCS%%share/bx/help/5_Programming/setenv -%%PORTDOCS%%share/bx/help/5_Programming/shook -%%PORTDOCS%%share/bx/help/5_Programming/sleep -%%PORTDOCS%%share/bx/help/5_Programming/stack -%%PORTDOCS%%share/bx/help/5_Programming/stub -%%PORTDOCS%%share/bx/help/5_Programming/submenu -%%PORTDOCS%%share/bx/help/5_Programming/switch -%%PORTDOCS%%share/bx/help/5_Programming/timer -%%PORTDOCS%%share/bx/help/5_Programming/type -%%PORTDOCS%%share/bx/help/5_Programming/unload -%%PORTDOCS%%share/bx/help/5_Programming/unshift -%%PORTDOCS%%share/bx/help/5_Programming/usleep -%%PORTDOCS%%share/bx/help/5_Programming/wait -%%PORTDOCS%%share/bx/help/5_Programming/while -%%PORTDOCS%%share/bx/help/5_Programming/xecho -%%PORTDOCS%%share/bx/help/5_Programming/xeval -%%PORTDOCS%%share/bx/help/5_Programming/xtype -%%PORTDOCS%%share/bx/help/6_Functions/6_Functions -%%PORTDOCS%%share/bx/help/6_Functions/absstrlen -%%PORTDOCS%%share/bx/help/6_Functions/addtabkey -%%PORTDOCS%%share/bx/help/6_Functions/after -%%PORTDOCS%%share/bx/help/6_Functions/afterw -%%PORTDOCS%%share/bx/help/6_Functions/ajoinitem -%%PORTDOCS%%share/bx/help/6_Functions/aliasctl -%%PORTDOCS%%share/bx/help/6_Functions/annoy -%%PORTDOCS%%share/bx/help/6_Functions/ascii -%%PORTDOCS%%share/bx/help/6_Functions/before -%%PORTDOCS%%share/bx/help/6_Functions/bitchx -%%PORTDOCS%%share/bx/help/6_Functions/center -%%PORTDOCS%%share/bx/help/6_Functions/cexist -%%PORTDOCS%%share/bx/help/6_Functions/chanmode -%%PORTDOCS%%share/bx/help/6_Functions/channel -%%PORTDOCS%%share/bx/help/6_Functions/chmod -%%PORTDOCS%%share/bx/help/6_Functions/chngw -%%PORTDOCS%%share/bx/help/6_Functions/chop -%%PORTDOCS%%share/bx/help/6_Functions/chops -%%PORTDOCS%%share/bx/help/6_Functions/chr -%%PORTDOCS%%share/bx/help/6_Functions/close -%%PORTDOCS%%share/bx/help/6_Functions/common -%%PORTDOCS%%share/bx/help/6_Functions/connect -%%PORTDOCS%%share/bx/help/6_Functions/convert -%%PORTDOCS%%share/bx/help/6_Functions/copattern -%%PORTDOCS%%share/bx/help/6_Functions/count -%%PORTDOCS%%share/bx/help/6_Functions/cparse -%%PORTDOCS%%share/bx/help/6_Functions/crypt -%%PORTDOCS%%share/bx/help/6_Functions/curpos -%%PORTDOCS%%share/bx/help/6_Functions/currchans -%%PORTDOCS%%share/bx/help/6_Functions/decode -%%PORTDOCS%%share/bx/help/6_Functions/delarray -%%PORTDOCS%%share/bx/help/6_Functions/delitem -%%PORTDOCS%%share/bx/help/6_Functions/deuhc -%%PORTDOCS%%share/bx/help/6_Functions/encode -%%PORTDOCS%%share/bx/help/6_Functions/eof -%%PORTDOCS%%share/bx/help/6_Functions/epic -%%PORTDOCS%%share/bx/help/6_Functions/fexist -%%PORTDOCS%%share/bx/help/6_Functions/filter -%%PORTDOCS%%share/bx/help/6_Functions/finditem -%%PORTDOCS%%share/bx/help/6_Functions/findw -%%PORTDOCS%%share/bx/help/6_Functions/fnexist -%%PORTDOCS%%share/bx/help/6_Functions/fromw -%%PORTDOCS%%share/bx/help/6_Functions/fsize -%%PORTDOCS%%share/bx/help/6_Functions/ftime -%%PORTDOCS%%share/bx/help/6_Functions/geom -%%PORTDOCS%%share/bx/help/6_Functions/getarrays -%%PORTDOCS%%share/bx/help/6_Functions/getenv -%%PORTDOCS%%share/bx/help/6_Functions/getgid -%%PORTDOCS%%share/bx/help/6_Functions/getitem -%%PORTDOCS%%share/bx/help/6_Functions/getlogin -%%PORTDOCS%%share/bx/help/6_Functions/getmatches -%%PORTDOCS%%share/bx/help/6_Functions/getopt -%%PORTDOCS%%share/bx/help/6_Functions/getpgrp -%%PORTDOCS%%share/bx/help/6_Functions/getsets -%%PORTDOCS%%share/bx/help/6_Functions/gettmatch -%%PORTDOCS%%share/bx/help/6_Functions/getuid -%%PORTDOCS%%share/bx/help/6_Functions/glob -%%PORTDOCS%%share/bx/help/6_Functions/gui -%%PORTDOCS%%share/bx/help/6_Functions/idle -%%PORTDOCS%%share/bx/help/6_Functions/ifindfirst -%%PORTDOCS%%share/bx/help/6_Functions/ifinditem -%%PORTDOCS%%share/bx/help/6_Functions/igetmatches -%%PORTDOCS%%share/bx/help/6_Functions/igmask -%%PORTDOCS%%share/bx/help/6_Functions/igtype -%%PORTDOCS%%share/bx/help/6_Functions/index -%%PORTDOCS%%share/bx/help/6_Functions/indextoitem -%%PORTDOCS%%share/bx/help/6_Functions/info -%%PORTDOCS%%share/bx/help/6_Functions/insertw -%%PORTDOCS%%share/bx/help/6_Functions/iptoname -%%PORTDOCS%%share/bx/help/6_Functions/irclib -%%PORTDOCS%%share/bx/help/6_Functions/isalpha -%%PORTDOCS%%share/bx/help/6_Functions/ischannel -%%PORTDOCS%%share/bx/help/6_Functions/ischanop -%%PORTDOCS%%share/bx/help/6_Functions/ischanvoice -%%PORTDOCS%%share/bx/help/6_Functions/isconnected -%%PORTDOCS%%share/bx/help/6_Functions/iscurchan -%%PORTDOCS%%share/bx/help/6_Functions/isdigit -%%PORTDOCS%%share/bx/help/6_Functions/isnumber -%%PORTDOCS%%share/bx/help/6_Functions/itemtoindex -%%PORTDOCS%%share/bx/help/6_Functions/jot -%%PORTDOCS%%share/bx/help/6_Functions/key -%%PORTDOCS%%share/bx/help/6_Functions/lastclickline -%%PORTDOCS%%share/bx/help/6_Functions/lastclickx -%%PORTDOCS%%share/bx/help/6_Functions/lastclicky -%%PORTDOCS%%share/bx/help/6_Functions/lastserver -%%PORTDOCS%%share/bx/help/6_Functions/left -%%PORTDOCS%%share/bx/help/6_Functions/leftpc -%%PORTDOCS%%share/bx/help/6_Functions/leftw -%%PORTDOCS%%share/bx/help/6_Functions/listarray -%%PORTDOCS%%share/bx/help/6_Functions/listen -%%PORTDOCS%%share/bx/help/6_Functions/mask -%%PORTDOCS%%share/bx/help/6_Functions/match -%%PORTDOCS%%share/bx/help/6_Functions/matchitem -%%PORTDOCS%%share/bx/help/6_Functions/menucontrol -%%PORTDOCS%%share/bx/help/6_Functions/mid -%%PORTDOCS%%share/bx/help/6_Functions/midw -%%PORTDOCS%%share/bx/help/6_Functions/mkdir -%%PORTDOCS%%share/bx/help/6_Functions/msar -%%PORTDOCS%%share/bx/help/6_Functions/mychannels -%%PORTDOCS%%share/bx/help/6_Functions/myservers -%%PORTDOCS%%share/bx/help/6_Functions/nametoip -%%PORTDOCS%%share/bx/help/6_Functions/nohighlight -%%PORTDOCS%%share/bx/help/6_Functions/notify -%%PORTDOCS%%share/bx/help/6_Functions/numarrays -%%PORTDOCS%%share/bx/help/6_Functions/numitems -%%PORTDOCS%%share/bx/help/6_Functions/numonchannel -%%PORTDOCS%%share/bx/help/6_Functions/numwords -%%PORTDOCS%%share/bx/help/6_Functions/onchannel -%%PORTDOCS%%share/bx/help/6_Functions/open -%%PORTDOCS%%share/bx/help/6_Functions/pad -%%PORTDOCS%%share/bx/help/6_Functions/pattern -%%PORTDOCS%%share/bx/help/6_Functions/pid -%%PORTDOCS%%share/bx/help/6_Functions/pipe -%%PORTDOCS%%share/bx/help/6_Functions/pop -%%PORTDOCS%%share/bx/help/6_Functions/ppid -%%PORTDOCS%%share/bx/help/6_Functions/printlen -%%PORTDOCS%%share/bx/help/6_Functions/querywin -%%PORTDOCS%%share/bx/help/6_Functions/rand -%%PORTDOCS%%share/bx/help/6_Functions/randread -%%PORTDOCS%%share/bx/help/6_Functions/read -%%PORTDOCS%%share/bx/help/6_Functions/regex -%%PORTDOCS%%share/bx/help/6_Functions/remw -%%PORTDOCS%%share/bx/help/6_Functions/remws -%%PORTDOCS%%share/bx/help/6_Functions/rename -%%PORTDOCS%%share/bx/help/6_Functions/repeat -%%PORTDOCS%%share/bx/help/6_Functions/rest -%%PORTDOCS%%share/bx/help/6_Functions/restw -%%PORTDOCS%%share/bx/help/6_Functions/reverse -%%PORTDOCS%%share/bx/help/6_Functions/revw -%%PORTDOCS%%share/bx/help/6_Functions/rigmask -%%PORTDOCS%%share/bx/help/6_Functions/rigtype -%%PORTDOCS%%share/bx/help/6_Functions/rmdir -%%PORTDOCS%%share/bx/help/6_Functions/sar -%%PORTDOCS%%share/bx/help/6_Functions/servergroup -%%PORTDOCS%%share/bx/help/6_Functions/servername -%%PORTDOCS%%share/bx/help/6_Functions/servernick -%%PORTDOCS%%share/bx/help/6_Functions/serverport -%%PORTDOCS%%share/bx/help/6_Functions/servnum -%%PORTDOCS%%share/bx/help/6_Functions/servports -%%PORTDOCS%%share/bx/help/6_Functions/setitem -%%PORTDOCS%%share/bx/help/6_Functions/shift -%%PORTDOCS%%share/bx/help/6_Functions/sort -%%PORTDOCS%%share/bx/help/6_Functions/splice -%%PORTDOCS%%share/bx/help/6_Functions/split -%%PORTDOCS%%share/bx/help/6_Functions/srand -%%PORTDOCS%%share/bx/help/6_Functions/status -%%PORTDOCS%%share/bx/help/6_Functions/stime -%%PORTDOCS%%share/bx/help/6_Functions/strchr -%%PORTDOCS%%share/bx/help/6_Functions/strftime -%%PORTDOCS%%share/bx/help/6_Functions/strip -%%PORTDOCS%%share/bx/help/6_Functions/stripansi -%%PORTDOCS%%share/bx/help/6_Functions/stripansicodes -%%PORTDOCS%%share/bx/help/6_Functions/stripc -%%PORTDOCS%%share/bx/help/6_Functions/strlen -%%PORTDOCS%%share/bx/help/6_Functions/strrchr *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209161416.q8GEGLn5003886>