aboutsummaryrefslogtreecommitdiff
path: root/irc/bitchx
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2012-09-16 14:16:20 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2012-09-16 14:16:20 +0000
commit16aee7d8de334264ad58f504dcff0e79fc403d31 (patch)
tree31e8df4ff27ae0385ef32404e4c342245fa7aed5 /irc/bitchx
parent175daba6f738589bc71c2330d1d3ea7f34c72a60 (diff)
downloadports-16aee7d8de334264ad58f504dcff0e79fc403d31.tar.gz
ports-16aee7d8de334264ad58f504dcff0e79fc403d31.zip
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]
Notes
Notes: svn path=/head/; revision=304350
Diffstat (limited to 'irc/bitchx')
-rw-r--r--irc/bitchx/Makefile129
-rw-r--r--irc/bitchx/distinfo4
-rw-r--r--irc/bitchx/files/patch-amd64_fix12
-rw-r--r--irc/bitchx/files/patch-ap11
-rw-r--r--irc/bitchx/files/patch-aq9
-rw-r--r--irc/bitchx/files/patch-configure132
-rw-r--r--irc/bitchx/files/patch-funny.c14
-rw-r--r--irc/bitchx/files/patch-source_gcc_fix36
-rw-r--r--irc/bitchx/files/patch-source_server_c12
-rw-r--r--irc/bitchx/pkg-plist937
10 files changed, 77 insertions, 1219 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile
index db701bb7db10..44c53a20dc10 100644
--- a/irc/bitchx/Makefile
+++ b/irc/bitchx/Makefile
@@ -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" off \
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>
diff --git a/irc/bitchx/distinfo b/irc/bitchx/distinfo
index f84abf14821e..669b1bfc4859 100644
--- a/irc/bitchx/distinfo
+++ b/irc/bitchx/distinfo
@@ -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
diff --git a/irc/bitchx/files/patch-amd64_fix b/irc/bitchx/files/patch-amd64_fix
index bd73ca030e38..51dfe89a9ac7 100644
--- a/irc/bitchx/files/patch-amd64_fix
+++ b/irc/bitchx/files/patch-amd64_fix
@@ -14,18 +14,6 @@ diff -ur BitchX.orig/include/module.h BitchX/include/module.h
#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
diff --git a/irc/bitchx/files/patch-ap b/irc/bitchx/files/patch-ap
deleted file mode 100644
index 9d64127a3cb2..000000000000
--- a/irc/bitchx/files/patch-ap
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Mon Mar 5 21:30:04 2001
-+++ Makefile.in Fri Apr 19 15:09:40 2002
-@@ -115,7 +115,7 @@
- # This command will be used to install the BitchX help files. If you don't
- # want to install them, replace with the following:
- # INSTALL_HELP_CMD = @echo The help files have not been installed.
--INSTALL_HELP_CMD = @INSTALL_HELP_CMD@
-+INSTALL_HELP_CMD = echo
-
- # This is where the optional plugins will be copied to.
- PLUGINDIR = @PLUGINDIR@
diff --git a/irc/bitchx/files/patch-aq b/irc/bitchx/files/patch-aq
index 226680a1dcf1..7c46ba4760f5 100644
--- a/irc/bitchx/files/patch-aq
+++ b/irc/bitchx/files/patch-aq
@@ -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
diff --git a/irc/bitchx/files/patch-configure b/irc/bitchx/files/patch-configure
deleted file mode 100644
index adfd9761cb20..000000000000
--- a/irc/bitchx/files/patch-configure
+++ /dev/null
@@ -1,132 +0,0 @@
---- configure.orig 2003-04-11 05:09:04.000000000 +0400
-+++ configure 2009-11-04 07:09:50.000000000 +0300
-@@ -11830,100 +11830,27 @@
- echo $ECHO_N "checking whether to enable IPv6 support... $ECHO_C" >&6
- # Check whether --enable-ipv6 or --disable-ipv6 was given.
- if test "${enable_ipv6+set}" = set; then
-- enableval="$enable_ipv6"
-- case "$enableval" in
-+ enableval=$enable_ipv6; case "$enableval" in
- yes)
-- case "$(uname -s)" in
-- Linux)
-- if test -d "/usr/inet6/include"; then
-- CFLAGS="$CFLAGS -I/usr/inet6/include"
-- LIBS="-L/usr/inet6/lib -linet6 $LIBS"
-- echo "$as_me:$LINENO: result: yes (libinet6)" >&5
--echo "${ECHO_T}yes (libinet6)" >&6
-+ { $as_echo "$as_me:$LINENO: result: yes (notchecked)" >&5
-+$as_echo "yes (notchecked)" >&6; }
-
- cat >>confdefs.h <<\_ACEOF
- #define IPV6 1
- _ACEOF
-
-- else
-- if test -d "/usr/local/v6/lib"; then
-- LIBS="-L/usr/local/v6/lib -linet6 $LIBS"
-- echo "$as_me:$LINENO: result: yes (freebsd+kame)" >&5
--echo "${ECHO_T}yes (freebsd+kame)" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define IPV6 1
--_ACEOF
--
-- else
-- if test "$cross_compiling" = yes; then
-- { echo "$as_me:$LINENO: WARNING: cross-compiling: assuming no ipv6" >&5
--echo "$as_me: WARNING: cross-compiling: assuming no ipv6" >&2;}
-+ ;;
-+ *)
-+ { $as_echo "$as_me:$LINENO: result: no" >&5
-+$as_echo "no" >&6; }
-+ ;;
-+ esac
- else
-- cat >conftest.$ac_ext <<_ACEOF
--#line $LINENO "configure"
--#include "confdefs.h"
--
-- int main()
-- {
-- #if !defined(__GLIBC__) || (__GLIBC__ < 2)
-- #define NO_GLIBC_2 1
-- #endif
--
-- if (NO_GLIBC_2)
-- exit(0);
-- else
-- exit(1);
-- }
--_ACEOF
--rm -f conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- echo "$as_me:$LINENO: result: yes (glibc2)" >&5
--echo "${ECHO_T}yes (glibc2)" >&6
-+ { $as_echo "$as_me:$LINENO: result: no" >&5
-+$as_echo "no" >&6; }
-
--cat >>confdefs.h <<\_ACEOF
--#define IPV6 1
--_ACEOF
--
--
--else
-- echo "$as_me: program exited with status $ac_status" >&5
--echo "$as_me: failed program was:" >&5
--cat conftest.$ac_ext >&5
--( exit $ac_status )
--echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
--fi
--rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
- fi
-- fi
-- fi
-- ;;
-- *)
-- echo "$as_me:$LINENO: result: no (ipv6 support can currently be enabled on Linux only)" >&5
--echo "${ECHO_T}no (ipv6 support can currently be enabled on Linux only)" >&6
-- ;;
-- esac
-- ;;
-- no)
-- echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-- ;;
-- esac
--else
-- echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-
--fi;
-
- echo "$as_me:$LINENO: checking whether to enable SOCKS support" >&5
- echo $ECHO_N "checking whether to enable SOCKS support... $ECHO_C" >&6
-@@ -12609,7 +12536,7 @@
- system="unknown"
- else
- if test -r "/etc/.relid" -a x"`uname -n`" = x"`uname -s`"; then
-- system="MP-RAS-`$AWK '{print }' /etc/.relid'`"
-+ system="MP-RAS-`$AWK '{print $3}' /etc/.relid`"
- fi
- fi
- fi
-@@ -13877,7 +13804,7 @@
- system="unknown"
- else
- if test -r "/etc/.relid" -a x"`uname -n`" = x"`uname -s`"; then
-- system="MP-RAS-`$AWK '{print }' /etc/.relid'`"
-+ system="MP-RAS-`$AWK '{print $3}' /etc/.relid`"
- fi
- fi
- fi
diff --git a/irc/bitchx/files/patch-funny.c b/irc/bitchx/files/patch-funny.c
deleted file mode 100644
index fa7eb1217ad0..000000000000
--- a/irc/bitchx/files/patch-funny.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- source/funny.c 2003-02-20 16:37:07.000000000 +0000
-+++ source/funny.c 2003-02-20 16:39:13.000000000 +0000
-@@ -261,6 +261,11 @@
- channel = Args[1];
- line = Args[2];
-
-+ if (channel == NULL || line == NULL) {
-+ bitchsay("Invalid number of arguments for %s", __FUNCTION__);
-+ return;
-+ }
-+
- ptr = line;
- while (*ptr)
- {
diff --git a/irc/bitchx/files/patch-source_gcc_fix b/irc/bitchx/files/patch-source_gcc_fix
deleted file mode 100644
index ba36272ccf1d..000000000000
--- a/irc/bitchx/files/patch-source_gcc_fix
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -ru source.orig/ctcp.c source/ctcp.c
---- source.orig/ctcp.c 2003-05-26 23:00:22.000000000 -0800
-+++ source/ctcp.c 2008-01-28 07:31:56.000000000 -0900
-@@ -176,7 +176,7 @@
-
- /* CDE do ops and unban logging */
-
--static char *ctcp_type[] =
-+char *ctcp_type[] =
- {
- "PRIVMSG",
- "NOTICE"
-diff -ru source.orig/term.c source/term.c
---- source.orig/term.c 2003-04-10 17:09:07.000000000 -0800
-+++ source/term.c 2008-01-28 07:58:45.000000000 -0900
-@@ -92,7 +92,7 @@
- #endif
-
- extern char *getenv();
--extern char *tparm();
-+
-
- /*
- * The old code assumed termcap. termcap is almost always present, but on
-diff -ru source.orig/timer.c source/timer.c
---- source.orig/timer.c 2003-04-10 17:09:07.000000000 -0800
-+++ source/timer.c 2008-01-28 08:00:29.000000000 -0900
-@@ -148,7 +148,7 @@
- * This is put here on purpose -- we dont want any of the above functions
- * to have any knowledge of this struct.
- */
--static TimerList *PendingTimers;
-+TimerList *PendingTimers;
- static char *schedule_timer (TimerList *ntimer);
-
- static char *current_exec_timer = empty_string;
diff --git a/irc/bitchx/files/patch-source_server_c b/irc/bitchx/files/patch-source_server_c
deleted file mode 100644
index 5910cca38940..000000000000
--- a/irc/bitchx/files/patch-source_server_c
+++ /dev/null
@@ -1,12 +0,0 @@
-$OpenBSD: patch-source_server_c,v 1.1 2003/04/16 09:04:24 avsm Exp $
---- source/server.c.orig Mon Apr 14 23:56:28 2003
-+++ source/server.c Mon Apr 14 23:56:59 2003
-@@ -144,7 +144,7 @@ void close_server (int cs_index, char *m
- if (x_debug & DEBUG_OUTBOUND)
- yell("Closing server %d because [%s]",
- cs_index, message ? message : empty_string);
-- snprintf(buffer, BIG_BUFFER_SIZE, "QUIT :%s\n", message);
-+ snprintf(buffer, sizeof buffer, "QUIT :%s\n", message);
- #ifdef HAVE_SSL
- if (get_server_ssl(cs_index))
- SSL_write(server_list[cs_index].ssl_fd, buffer, strlen(buffer));
diff --git a/irc/bitchx/pkg-plist b/irc/bitchx/pkg-plist
index 3343516f658e..f0e3b8fbf2dd 100644
--- a/irc/bitchx/pkg-plist
+++ b/irc/bitchx/pkg-plist
@@ -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
-%%PORTDOCS%%share/bx/help/6_Functions/substr
-%%PORTDOCS%%share/bx/help/6_Functions/tdiff
-%%PORTDOCS%%share/bx/help/6_Functions/time
-%%PORTDOCS%%share/bx/help/6_Functions/tolower
-%%PORTDOCS%%share/bx/help/6_Functions/topic
-%%PORTDOCS%%share/bx/help/6_Functions/toupper
-%%PORTDOCS%%share/bx/help/6_Functions/tow
-%%PORTDOCS%%share/bx/help/6_Functions/tr
-%%PORTDOCS%%share/bx/help/6_Functions/trunc
-%%PORTDOCS%%share/bx/help/6_Functions/twiddle
-%%PORTDOCS%%share/bx/help/6_Functions/uhc
-%%PORTDOCS%%share/bx/help/6_Functions/umask
-%%PORTDOCS%%share/bx/help/6_Functions/uname
-%%PORTDOCS%%share/bx/help/6_Functions/uniq
-%%PORTDOCS%%share/bx/help/6_Functions/unlink
-%%PORTDOCS%%share/bx/help/6_Functions/unshift
-%%PORTDOCS%%share/bx/help/6_Functions/userhost
-%%PORTDOCS%%share/bx/help/6_Functions/usermode
-%%PORTDOCS%%share/bx/help/6_Functions/utime
-%%PORTDOCS%%share/bx/help/6_Functions/version
-%%PORTDOCS%%share/bx/help/6_Functions/which
-%%PORTDOCS%%share/bx/help/6_Functions/winbound
-%%PORTDOCS%%share/bx/help/6_Functions/winchan
-%%PORTDOCS%%share/bx/help/6_Functions/winitem
-%%PORTDOCS%%share/bx/help/6_Functions/winlevel
-%%PORTDOCS%%share/bx/help/6_Functions/winnam
-%%PORTDOCS%%share/bx/help/6_Functions/winnicklist
-%%PORTDOCS%%share/bx/help/6_Functions/winnum
-%%PORTDOCS%%share/bx/help/6_Functions/winrefs
-%%PORTDOCS%%share/bx/help/6_Functions/winserv
-%%PORTDOCS%%share/bx/help/6_Functions/winsize
-%%PORTDOCS%%share/bx/help/6_Functions/winvisible
-%%PORTDOCS%%share/bx/help/6_Functions/word
-%%PORTDOCS%%share/bx/help/6_Functions/write
-%%PORTDOCS%%share/bx/help/6_Functions/writeb
-%%PORTDOCS%%share/bx/help/6_Functions/ovserver
-%%PORTDOCS%%share/bx/help/7_Docs/7_Docs
-%%PORTDOCS%%share/bx/help/7_Docs/About_BitchX
-%%PORTDOCS%%share/bx/help/7_Docs/Arrays
-%%PORTDOCS%%share/bx/help/7_Docs/Command_Line
-%%PORTDOCS%%share/bx/help/7_Docs/Compile_Opts
-%%PORTDOCS%%share/bx/help/7_Docs/Copyright
-%%PORTDOCS%%share/bx/help/7_Docs/Environment
-%%PORTDOCS%%share/bx/help/7_Docs/Etiquette
-%%PORTDOCS%%share/bx/help/7_Docs/Expressions
-%%PORTDOCS%%share/bx/help/7_Docs/Introduction
-%%PORTDOCS%%share/bx/help/7_Docs/Key_Bindings
-%%PORTDOCS%%share/bx/help/7_Docs/New_User
-%%PORTDOCS%%share/bx/help/7_Docs/Patterns
-%%PORTDOCS%%share/bx/help/7_Docs/Programming
-%%PORTDOCS%%share/bx/help/7_Docs/Security
-%%PORTDOCS%%share/bx/help/7_Docs/Serial_Numbers
-%%PORTDOCS%%share/bx/help/7_Docs/Server_List
-%%PORTDOCS%%share/bx/help/7_Docs/Server_Numerics
-%%PORTDOCS%%share/bx/help/7_Docs/Signals
-%%PORTDOCS%%share/bx/help/7_Docs/Special_Vars
-%%PORTDOCS%%share/bx/help/7_Docs/Status_Line
-%%PORTDOCS%%share/bx/help/7_Docs/Text_Highlight
-%%PORTDOCS%%share/bx/help/7_Docs/Updates
-%%PORTDOCS%%share/bx/help/8_Scripts/2.8script
-%%PORTDOCS%%share/bx/help/8_Scripts/8_Scripts
-%%PORTDOCS%%share/bx/help/8_Scripts/action
-%%PORTDOCS%%share/bx/help/8_Scripts/alias
-%%PORTDOCS%%share/bx/help/8_Scripts/autokick
-%%PORTDOCS%%share/bx/help/8_Scripts/autoop
-%%PORTDOCS%%share/bx/help/8_Scripts/away
-%%PORTDOCS%%share/bx/help/8_Scripts/basical
-%%PORTDOCS%%share/bx/help/8_Scripts/bigcheese
-%%PORTDOCS%%share/bx/help/8_Scripts/brc
-%%PORTDOCS%%share/bx/help/8_Scripts/channel
-%%PORTDOCS%%share/bx/help/8_Scripts/columns
-%%PORTDOCS%%share/bx/help/8_Scripts/commander
-%%PORTDOCS%%share/bx/help/8_Scripts/compl.mods
-%%PORTDOCS%%share/bx/help/8_Scripts/complete
-%%PORTDOCS%%share/bx/help/8_Scripts/country
-%%PORTDOCS%%share/bx/help/8_Scripts/cursor
-%%PORTDOCS%%share/bx/help/8_Scripts/deban
-%%PORTDOCS%%share/bx/help/8_Scripts/deutsch
-%%PORTDOCS%%share/bx/help/8_Scripts/disc
-%%PORTDOCS%%share/bx/help/8_Scripts/edit
-%%PORTDOCS%%share/bx/help/8_Scripts/english
-%%PORTDOCS%%share/bx/help/8_Scripts/environment
-%%PORTDOCS%%share/bx/help/8_Scripts/events
-%%PORTDOCS%%share/bx/help/8_Scripts/events.hop
-%%PORTDOCS%%share/bx/help/8_Scripts/fake-dcc
-%%PORTDOCS%%share/bx/help/8_Scripts/fe
-%%PORTDOCS%%share/bx/help/8_Scripts/files
-%%PORTDOCS%%share/bx/help/8_Scripts/finger
-%%PORTDOCS%%share/bx/help/8_Scripts/fnet
-%%PORTDOCS%%share/bx/help/8_Scripts/follow
-%%PORTDOCS%%share/bx/help/8_Scripts/functions
-%%PORTDOCS%%share/bx/help/8_Scripts/funnyban
-%%PORTDOCS%%share/bx/help/8_Scripts/genalias
-%%PORTDOCS%%share/bx/help/8_Scripts/global
-%%PORTDOCS%%share/bx/help/8_Scripts/guh
-%%PORTDOCS%%share/bx/help/8_Scripts/history
-%%PORTDOCS%%share/bx/help/8_Scripts/history-match
-%%PORTDOCS%%share/bx/help/8_Scripts/imap
-%%PORTDOCS%%share/bx/help/8_Scripts/ircprimer
-%%PORTDOCS%%share/bx/help/8_Scripts/ircrc
-%%PORTDOCS%%share/bx/help/8_Scripts/keybinds
-%%PORTDOCS%%share/bx/help/8_Scripts/kickmenu
-%%PORTDOCS%%share/bx/help/8_Scripts/killpath
-%%PORTDOCS%%share/bx/help/8_Scripts/kpstat
-%%PORTDOCS%%share/bx/help/8_Scripts/less
-%%PORTDOCS%%share/bx/help/8_Scripts/list
-%%PORTDOCS%%share/bx/help/8_Scripts/local
-%%PORTDOCS%%share/bx/help/8_Scripts/log
-%%PORTDOCS%%share/bx/help/8_Scripts/ls
-%%PORTDOCS%%share/bx/help/8_Scripts/lynx_ircrc
-%%PORTDOCS%%share/bx/help/8_Scripts/man
-%%PORTDOCS%%share/bx/help/8_Scripts/meta
-%%PORTDOCS%%share/bx/help/8_Scripts/meta1
-%%PORTDOCS%%share/bx/help/8_Scripts/modes
-%%PORTDOCS%%share/bx/help/8_Scripts/more
-%%PORTDOCS%%share/bx/help/8_Scripts/msg
-%%PORTDOCS%%share/bx/help/8_Scripts/mudirc
-%%PORTDOCS%%share/bx/help/8_Scripts/mudlike
-%%PORTDOCS%%share/bx/help/8_Scripts/multi
-%%PORTDOCS%%share/bx/help/8_Scripts/nemesis
-%%PORTDOCS%%share/bx/help/8_Scripts/netsplit
-%%PORTDOCS%%share/bx/help/8_Scripts/netsplit.env
-%%PORTDOCS%%share/bx/help/8_Scripts/newaway
-%%PORTDOCS%%share/bx/help/8_Scripts/newformat
-%%PORTDOCS%%share/bx/help/8_Scripts/nicks
-%%PORTDOCS%%share/bx/help/8_Scripts/old-dcc
-%%PORTDOCS%%share/bx/help/8_Scripts/oldping
-%%PORTDOCS%%share/bx/help/8_Scripts/ping
-%%PORTDOCS%%share/bx/help/8_Scripts/pipe
-%%PORTDOCS%%share/bx/help/8_Scripts/prefix
-%%PORTDOCS%%share/bx/help/8_Scripts/recursion
-%%PORTDOCS%%share/bx/help/8_Scripts/repeat
-%%PORTDOCS%%share/bx/help/8_Scripts/screen
-%%PORTDOCS%%share/bx/help/8_Scripts/shell
-%%PORTDOCS%%share/bx/help/8_Scripts/silent
-%%PORTDOCS%%share/bx/help/8_Scripts/smileys
-%%PORTDOCS%%share/bx/help/8_Scripts/sound
-%%PORTDOCS%%share/bx/help/8_Scripts/spfix
-%%PORTDOCS%%share/bx/help/8_Scripts/starutils
-%%PORTDOCS%%share/bx/help/8_Scripts/stat
-%%PORTDOCS%%share/bx/help/8_Scripts/tabkey
-%%PORTDOCS%%share/bx/help/8_Scripts/tabkey.wc
-%%PORTDOCS%%share/bx/help/8_Scripts/tc
-%%PORTDOCS%%share/bx/help/8_Scripts/time
-%%PORTDOCS%%share/bx/help/8_Scripts/tls
-%%PORTDOCS%%share/bx/help/8_Scripts/troy
-%%PORTDOCS%%share/bx/help/8_Scripts/uhnotify
-%%PORTDOCS%%share/bx/help/8_Scripts/uping
-%%PORTDOCS%%share/bx/help/8_Scripts/wallopstat
-%%PORTDOCS%%share/bx/help/8_Scripts/webster
-%%PORTDOCS%%share/bx/help/8_Scripts/window
-%%PORTDOCS%%share/bx/help/README_FIRST
-%%PORTDOCS%%share/bx/help/commands
-%%PORTDOCS%%share/bx/help/findcomm
-%%PORTDOCS%%share/bx/help/functions
-%%PORTDOCS%%share/bx/help/out
%%PLUGINS%%share/bx/plugins/BitchX.hints
%%PLUGINS%%share/bx/plugins/acro.so
%%PLUGINS%%share/bx/plugins/autobot.so
@@ -927,13 +18,16 @@ share/bx/BitchX.kick
%%PLUGINS%%share/bx/plugins/pkga.so
%%PLUGINS%%share/bx/plugins/possum.so
%%PLUGINS%%share/bx/plugins/qmail.so
-%%PLUGINS%%share/bx/plugins/scan.so
%%PLUGINS%%share/bx/plugins/wavplay.so
%%PLUGINS%%share/bx/plugins/qbx.so
%%PLUGINS%%share/bx/plugins/arcfour.so
%%PLUGINS%%share/bx/plugins/autocycle.so
+%%PLUGINS%%share/bx/plugins/aim.so
+%%PLUGINS%%share/bx/plugins/cavlink.so
+%%PLUGINS%%share/bx/plugins/cdrom.so
+%%PLUGINS%%share/bx/plugins/nap.so
+%%PLUGINS%%share/bx/plugins/nicklist.so
%%XMMS%%share/bx/plugins/xmms.so
-share/bx/plugins/.placeholder
share/bx/script/SCRIPTS
share/bx/script/actplug.gmz
share/bx/script/bxglobal
@@ -987,19 +81,4 @@ share/bx/translation/UNITED_KINGDOM_COM
@dirrm share/bx/translation
@dirrm share/bx/script
@dirrm share/bx/plugins
-%%PORTDOCS%%@dirrm share/bx/help/8_Scripts
-%%PORTDOCS%%@dirrm share/bx/help/7_Docs
-%%PORTDOCS%%@dirrm share/bx/help/6_Functions
-%%PORTDOCS%%@dirrm share/bx/help/5_Programming/on
-%%PORTDOCS%%@dirrm share/bx/help/5_Programming
-%%PORTDOCS%%@dirrm share/bx/help/4_Misc/window
-%%PORTDOCS%%@dirrm share/bx/help/4_Misc/set
-%%PORTDOCS%%@dirrm share/bx/help/4_Misc/bind
-%%PORTDOCS%%@dirrm share/bx/help/4_Misc
-%%PORTDOCS%%@dirrm share/bx/help/3_Operators
-%%PORTDOCS%%@dirrm share/bx/help/2_Queries
-%%PORTDOCS%%@dirrm share/bx/help/1_General/dcc
-%%PORTDOCS%%@dirrm share/bx/help/1_General/ctcp
-%%PORTDOCS%%@dirrm share/bx/help/1_General
-%%PORTDOCS%%@dirrm share/bx/help
-@dirrm share/bx
+@comment "@dirrm share/bx" must be appended after PORTDOCS stuff, see Makefile