Index: head/irc/ircII/Makefile =================================================================== --- head/irc/ircII/Makefile (revision 503605) +++ head/irc/ircII/Makefile (revision 503606) @@ -1,49 +1,50 @@ # Created by: torstenb # $FreeBSD$ PORTNAME= ircii -PORTVERSION= 20170704 +PORTVERSION= 20190117 CATEGORIES= irc ipv6 MASTER_SITES= http://ircii.warped.com/ MAINTAINER= andrew@tao11.riddles.org.uk COMMENT= Small and high extensible IRC client LICENSE= BSD3CLAUSE GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-warnings DATADIR= ${PREFIX}/share/irc USES= iconv ncurses tar:bzip2 OPTIONS_DEFINE= EMACS_KEYS HELP IRCBUG OPENSSL SCRIPTS OPTIONS_DEFAULT=EMACS_KEYS HELP OPENSSL SCRIPTS OPTIONS_SUB= yes HELP_DESC= Install ircII help files EMACS_KEYS_DESC=Use emacs meta keys IRCBUG_DESC= Install ircII bug-reporting script SCRIPTS_DESC= Install ircII script collection EMACS_KEYS_CONFIGURE_WITH= emacs-meta-keys OPENSSL_USES= ssl OPENSSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} OPENSSL_LDFLAGS= -L${OPENSSLLIB} .include # The ordering is very specific. This must come after pre.mk or # ircII won't link against libssl from ports CPPFLAGS+= -I${ICONV_PREFIX}/include LDFLAGS+= -L${ICONV_PREFIX}/lib post-patch: @${REINPLACE_CMD} -e '/^mandir =/s/@mandir@/$${DESTDIR}&/' \ - -e '/^LDFLAGS =/s/$$/ -s ${ICONV_LIB}/' \ + -e '/^LDFLAGS =/s/$$/ ${STRIP} ${ICONV_LIB}/' \ -e '/^INCLUDES =/s|$$| -I${ICONV_PREFIX}/include -DHAVE_ICONV_OPEN|' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|PREFIX/|${PREFIX}/|' ${WRKSRC}/doc/ircII.1 post-install: ${MV} -f ${STAGEDIR}${PREFIX}/bin/irc-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/irc .include Index: head/irc/ircII/distinfo =================================================================== --- head/irc/ircII/distinfo (revision 503605) +++ head/irc/ircII/distinfo (revision 503606) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541878948 -SHA256 (ircii-20170704.tar.bz2) = 4e5a70fc4577de06fd5855ab7ca0a501fd16e02d5fd34e434a2b5abac80a2eda -SIZE (ircii-20170704.tar.bz2) = 596535 +TIMESTAMP = 1558984067 +SHA256 (ircii-20190117.tar.bz2) = 10316f0a3723e4ce3d67fd5a7df10e6bcf30dd0750fb96d5437cacb16b0e9617 +SIZE (ircii-20190117.tar.bz2) = 606327 Index: head/irc/ircII/files/patch-source_mksiginc.c =================================================================== --- head/irc/ircII/files/patch-source_mksiginc.c (revision 503605) +++ head/irc/ircII/files/patch-source_mksiginc.c (nonexistent) @@ -1,14 +0,0 @@ ---- source/mksiginc.c.orig 2014-03-17 20:38:51 UTC -+++ source/mksiginc.c -@@ -35,7 +35,11 @@ IRCII_RCSID("@(#)$eterna: mksiginc.c,v 1 - #define NSIG 64 - #endif - -+#if defined(SIGRTMAX) && (SIGRTMAX > NSIG) -+#define MY_MAXSIG SIGRTMAX+1 -+#else - #define MY_MAXSIG NSIG+1 -+#endif - char *signames[MY_MAXSIG]; - - int main(int, char *[]); Property changes on: head/irc/ircII/files/patch-source_mksiginc.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/irc/ircII/files/patch-source_alias.c =================================================================== --- head/irc/ircII/files/patch-source_alias.c (nonexistent) +++ head/irc/ircII/files/patch-source_alias.c (revision 503606) @@ -0,0 +1,11 @@ +--- source/alias.c.orig 2019-01-18 10:29:41 UTC ++++ source/alias.c +@@ -2528,7 +2528,7 @@ function_userhost(u_char *input) + static u_char * + function_strip(u_char *input) + { +- u_char tmpbuf[128], *result; ++ u_char tmpbuf[128], *result = NULL; + u_char *retval = NULL; + u_char *chars; + u_char *cp, *dp; Property changes on: head/irc/ircII/files/patch-source_alias.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/irc/ircII/files/patch-source_help.c =================================================================== --- head/irc/ircII/files/patch-source_help.c (nonexistent) +++ head/irc/ircII/files/patch-source_help.c (revision 503606) @@ -0,0 +1,11 @@ +--- source/help.c.orig 2019-05-29 09:55:50 UTC ++++ source/help.c +@@ -311,7 +311,7 @@ help_topic(u_char *path, u_char *name) + #ifdef ZCAT + if (my_strcmp(name + (my_strlen(name) - my_strlen(ZSUFFIX)), ZSUFFIX)) + { +- malloc_snprintf(&filename, "%s/%s%s", path, ZSUFFIX); ++ malloc_snprintf(&filename, "%s/%s%s", path, name, ZSUFFIX); + if (stat(CP(filename), &sb) == -1) + { + new_free(&filename); Property changes on: head/irc/ircII/files/patch-source_help.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/irc/ircII/pkg-plist =================================================================== --- head/irc/ircII/pkg-plist (revision 503605) +++ head/irc/ircII/pkg-plist (revision 503606) @@ -1,602 +1,605 @@ %%IRCBUG%%bin/ircbug %%IRCBUG%%man/man1/ircbug.1.gz bin/irc bin/ircflush libexec/ircio libexec/wserv man/man1/irc.1.gz man/man1/ircII.1.gz %%HELP%%%%DATADIR%%/help/! %%HELP%%%%DATADIR%%/help/.date %%HELP%%%%DATADIR%%/help/: %%HELP%%%%DATADIR%%/help/@ %%HELP%%%%DATADIR%%/help/abort %%HELP%%%%DATADIR%%/help/admin %%HELP%%%%DATADIR%%/help/alias/alias %%HELP%%%%DATADIR%%/help/alias/functions %%HELP%%%%DATADIR%%/help/alias/quote %%HELP%%%%DATADIR%%/help/alias/special %%HELP%%%%DATADIR%%/help/alias/width %%HELP%%%%DATADIR%%/help/assign %%HELP%%%%DATADIR%%/help/away %%HELP%%%%DATADIR%%/help/basics %%HELP%%%%DATADIR%%/help/beep %%HELP%%%%DATADIR%%/help/bind/backspace %%HELP%%%%DATADIR%%/help/bind/backward_character %%HELP%%%%DATADIR%%/help/bind/backward_history %%HELP%%%%DATADIR%%/help/bind/backward_word %%HELP%%%%DATADIR%%/help/bind/beginning_of_line %%HELP%%%%DATADIR%%/help/bind/bind %%HELP%%%%DATADIR%%/help/bind/clear_screen %%HELP%%%%DATADIR%%/help/bind/command_completion %%HELP%%%%DATADIR%%/help/bind/delete_character %%HELP%%%%DATADIR%%/help/bind/delete_next_word %%HELP%%%%DATADIR%%/help/bind/delete_previous_word %%HELP%%%%DATADIR%%/help/bind/end_of_line %%HELP%%%%DATADIR%%/help/bind/enter_digraph %%HELP%%%%DATADIR%%/help/bind/enter_menu %%HELP%%%%DATADIR%%/help/bind/erase_line %%HELP%%%%DATADIR%%/help/bind/erase_to_beg_of_line %%HELP%%%%DATADIR%%/help/bind/erase_to_end_of_line %%HELP%%%%DATADIR%%/help/bind/examples %%HELP%%%%DATADIR%%/help/bind/forward_character %%HELP%%%%DATADIR%%/help/bind/forward_history %%HELP%%%%DATADIR%%/help/bind/forward_word %%HELP%%%%DATADIR%%/help/bind/help_character %%HELP%%%%DATADIR%%/help/bind/keys %%HELP%%%%DATADIR%%/help/bind/meta1_character %%HELP%%%%DATADIR%%/help/bind/meta2_character %%HELP%%%%DATADIR%%/help/bind/meta3_character %%HELP%%%%DATADIR%%/help/bind/meta4_character %%HELP%%%%DATADIR%%/help/bind/meta5_character %%HELP%%%%DATADIR%%/help/bind/meta6_character %%HELP%%%%DATADIR%%/help/bind/meta7_character %%HELP%%%%DATADIR%%/help/bind/meta8_character %%HELP%%%%DATADIR%%/help/bind/next_window %%HELP%%%%DATADIR%%/help/bind/nothing %%HELP%%%%DATADIR%%/help/bind/parse_command %%HELP%%%%DATADIR%%/help/bind/previous_window %%HELP%%%%DATADIR%%/help/bind/quit_irc %%HELP%%%%DATADIR%%/help/bind/quote_character %%HELP%%%%DATADIR%%/help/bind/refresh_inputline %%HELP%%%%DATADIR%%/help/bind/refresh_screen %%HELP%%%%DATADIR%%/help/bind/scroll_backward %%HELP%%%%DATADIR%%/help/bind/scroll_end %%HELP%%%%DATADIR%%/help/bind/scroll_forward %%HELP%%%%DATADIR%%/help/bind/scroll_start %%HELP%%%%DATADIR%%/help/bind/self_insert %%HELP%%%%DATADIR%%/help/bind/send_line %%HELP%%%%DATADIR%%/help/bind/stop_irc %%HELP%%%%DATADIR%%/help/bind/switch_channels %%HELP%%%%DATADIR%%/help/bind/toggle_insert_mode %%HELP%%%%DATADIR%%/help/bind/toggle_stop_screen %%HELP%%%%DATADIR%%/help/bind/transpose_characters %%HELP%%%%DATADIR%%/help/bind/type_text %%HELP%%%%DATADIR%%/help/bind/unstop_all_windows %%HELP%%%%DATADIR%%/help/bind/yank_from_cutbuffer %%HELP%%%%DATADIR%%/help/brick %%HELP%%%%DATADIR%%/help/bye %%HELP%%%%DATADIR%%/help/cat %%HELP%%%%DATADIR%%/help/cd %%HELP%%%%DATADIR%%/help/channel %%HELP%%%%DATADIR%%/help/clear %%HELP%%%%DATADIR%%/help/commands %%HELP%%%%DATADIR%%/help/comment %%HELP%%%%DATADIR%%/help/connect %%HELP%%%%DATADIR%%/help/ctcp/action %%HELP%%%%DATADIR%%/help/ctcp/clientinfo %%HELP%%%%DATADIR%%/help/ctcp/ctcp %%HELP%%%%DATADIR%%/help/ctcp/echo %%HELP%%%%DATADIR%%/help/ctcp/finger %%HELP%%%%DATADIR%%/help/ctcp/ping %%HELP%%%%DATADIR%%/help/ctcp/time %%HELP%%%%DATADIR%%/help/ctcp/userinfo %%HELP%%%%DATADIR%%/help/ctcp/utc %%HELP%%%%DATADIR%%/help/ctcp/version %%HELP%%%%DATADIR%%/help/date %%HELP%%%%DATADIR%%/help/dcc/chat %%HELP%%%%DATADIR%%/help/dcc/close %%HELP%%%%DATADIR%%/help/dcc/dcc %%HELP%%%%DATADIR%%/help/dcc/get %%HELP%%%%DATADIR%%/help/dcc/list %%HELP%%%%DATADIR%%/help/dcc/raw %%HELP%%%%DATADIR%%/help/dcc/rename %%HELP%%%%DATADIR%%/help/dcc/send %%HELP%%%%DATADIR%%/help/deop %%HELP%%%%DATADIR%%/help/describe %%HELP%%%%DATADIR%%/help/die %%HELP%%%%DATADIR%%/help/digraph %%HELP%%%%DATADIR%%/help/disconnect %%HELP%%%%DATADIR%%/help/dmsg %%HELP%%%%DATADIR%%/help/dquery %%HELP%%%%DATADIR%%/help/echo %%HELP%%%%DATADIR%%/help/encrypt %%HELP%%%%DATADIR%%/help/etiquette %%HELP%%%%DATADIR%%/help/eval %%HELP%%%%DATADIR%%/help/exec %%HELP%%%%DATADIR%%/help/exit %%HELP%%%%DATADIR%%/help/expressions %%HELP%%%%DATADIR%%/help/flush +%%HELP%%%%DATADIR%%/help/for %%HELP%%%%DATADIR%%/help/foreach %%HELP%%%%DATADIR%%/help/help %%HELP%%%%DATADIR%%/help/history %%HELP%%%%DATADIR%%/help/hook %%HELP%%%%DATADIR%%/help/icb %%HELP%%%%DATADIR%%/help/if %%HELP%%%%DATADIR%%/help/ignore %%HELP%%%%DATADIR%%/help/info %%HELP%%%%DATADIR%%/help/input %%HELP%%%%DATADIR%%/help/intro %%HELP%%%%DATADIR%%/help/invite +%%HELP%%%%DATADIR%%/help/ircii/command_line_args %%HELP%%%%DATADIR%%/help/ircii/copyright +%%HELP%%%%DATADIR%%/help/ircii/environment_vars +%%HELP%%%%DATADIR%%/help/ircii/programming +%%HELP%%%%DATADIR%%/help/ircii/server_lists %%HELP%%%%DATADIR%%/help/ison %%HELP%%%%DATADIR%%/help/join %%HELP%%%%DATADIR%%/help/kick %%HELP%%%%DATADIR%%/help/kill %%HELP%%%%DATADIR%%/help/lastlog %%HELP%%%%DATADIR%%/help/leave %%HELP%%%%DATADIR%%/help/links %%HELP%%%%DATADIR%%/help/list %%HELP%%%%DATADIR%%/help/load/2.9script %%HELP%%%%DATADIR%%/help/load/action %%HELP%%%%DATADIR%%/help/load/alias %%HELP%%%%DATADIR%%/help/load/autoop %%HELP%%%%DATADIR%%/help/load/autoquery %%HELP%%%%DATADIR%%/help/load/basical %%HELP%%%%DATADIR%%/help/load/bigcheese %%HELP%%%%DATADIR%%/help/load/brc %%HELP%%%%DATADIR%%/help/load/channel %%HELP%%%%DATADIR%%/help/load/columns %%HELP%%%%DATADIR%%/help/load/commander %%HELP%%%%DATADIR%%/help/load/cursor %%HELP%%%%DATADIR%%/help/load/dccchan %%HELP%%%%DATADIR%%/help/load/deutsch %%HELP%%%%DATADIR%%/help/load/disc %%HELP%%%%DATADIR%%/help/load/edit %%HELP%%%%DATADIR%%/help/load/english %%HELP%%%%DATADIR%%/help/load/events %%HELP%%%%DATADIR%%/help/load/extensions %%HELP%%%%DATADIR%%/help/load/finger %%HELP%%%%DATADIR%%/help/load/finger.who %%HELP%%%%DATADIR%%/help/load/flood %%HELP%%%%DATADIR%%/help/load/fnet %%HELP%%%%DATADIR%%/help/load/functions %%HELP%%%%DATADIR%%/help/load/help %%HELP%%%%DATADIR%%/help/load/history %%HELP%%%%DATADIR%%/help/load/icb %%HELP%%%%DATADIR%%/help/load/irciihelp %%HELP%%%%DATADIR%%/help/load/ircprimer %%HELP%%%%DATADIR%%/help/load/kickmenu %%HELP%%%%DATADIR%%/help/load/killpath %%HELP%%%%DATADIR%%/help/load/kpstat %%HELP%%%%DATADIR%%/help/load/list %%HELP%%%%DATADIR%%/help/load/listidle %%HELP%%%%DATADIR%%/help/load/load %%HELP%%%%DATADIR%%/help/load/local %%HELP%%%%DATADIR%%/help/load/lynx_ircrc %%HELP%%%%DATADIR%%/help/load/meta1 %%HELP%%%%DATADIR%%/help/load/meta2 %%HELP%%%%DATADIR%%/help/load/msg %%HELP%%%%DATADIR%%/help/load/mudlike %%HELP%%%%DATADIR%%/help/load/nemesis %%HELP%%%%DATADIR%%/help/load/netsplit %%HELP%%%%DATADIR%%/help/load/newaway %%HELP%%%%DATADIR%%/help/load/nicks %%HELP%%%%DATADIR%%/help/load/oldping %%HELP%%%%DATADIR%%/help/load/oper %%HELP%%%%DATADIR%%/help/load/prefix %%HELP%%%%DATADIR%%/help/load/recursion %%HELP%%%%DATADIR%%/help/load/repeat %%HELP%%%%DATADIR%%/help/load/screen %%HELP%%%%DATADIR%%/help/load/service %%HELP%%%%DATADIR%%/help/load/shell %%HELP%%%%DATADIR%%/help/load/silent %%HELP%%%%DATADIR%%/help/load/smileys %%HELP%%%%DATADIR%%/help/load/suggestions %%HELP%%%%DATADIR%%/help/load/tabkey %%HELP%%%%DATADIR%%/help/load/time %%HELP%%%%DATADIR%%/help/load/traces %%HELP%%%%DATADIR%%/help/load/troy %%HELP%%%%DATADIR%%/help/load/uhnotify %%HELP%%%%DATADIR%%/help/load/version %%HELP%%%%DATADIR%%/help/load/wallopstat %%HELP%%%%DATADIR%%/help/load/whowas %%HELP%%%%DATADIR%%/help/load/window %%HELP%%%%DATADIR%%/help/lusers %%HELP%%%%DATADIR%%/help/me %%HELP%%%%DATADIR%%/help/menus %%HELP%%%%DATADIR%%/help/mload %%HELP%%%%DATADIR%%/help/mode %%HELP%%%%DATADIR%%/help/motd %%HELP%%%%DATADIR%%/help/msg %%HELP%%%%DATADIR%%/help/names %%HELP%%%%DATADIR%%/help/news %%HELP%%%%DATADIR%%/help/newuser %%HELP%%%%DATADIR%%/help/nick %%HELP%%%%DATADIR%%/help/note/antiwall %%HELP%%%%DATADIR%%/help/note/count %%HELP%%%%DATADIR%%/help/note/deny %%HELP%%%%DATADIR%%/help/note/find %%HELP%%%%DATADIR%%/help/note/flag %%HELP%%%%DATADIR%%/help/note/key %%HELP%%%%DATADIR%%/help/note/log %%HELP%%%%DATADIR%%/help/note/ls %%HELP%%%%DATADIR%%/help/note/news %%HELP%%%%DATADIR%%/help/note/note %%HELP%%%%DATADIR%%/help/note/rm %%HELP%%%%DATADIR%%/help/note/save %%HELP%%%%DATADIR%%/help/note/send %%HELP%%%%DATADIR%%/help/note/sent %%HELP%%%%DATADIR%%/help/note/service %%HELP%%%%DATADIR%%/help/note/spy %%HELP%%%%DATADIR%%/help/note/stats %%HELP%%%%DATADIR%%/help/note/user %%HELP%%%%DATADIR%%/help/note/waitfor %%HELP%%%%DATADIR%%/help/note/wall %%HELP%%%%DATADIR%%/help/note/wallops %%HELP%%%%DATADIR%%/help/notice %%HELP%%%%DATADIR%%/help/notify %%HELP%%%%DATADIR%%/help/nuser %%HELP%%%%DATADIR%%/help/on/action %%HELP%%%%DATADIR%%/help/on/channel_nick %%HELP%%%%DATADIR%%/help/on/channel_signoff %%HELP%%%%DATADIR%%/help/on/connect %%HELP%%%%DATADIR%%/help/on/ctcp %%HELP%%%%DATADIR%%/help/on/ctcp_reply %%HELP%%%%DATADIR%%/help/on/dcc_chat %%HELP%%%%DATADIR%%/help/on/dcc_list %%HELP%%%%DATADIR%%/help/on/dcc_raw %%HELP%%%%DATADIR%%/help/on/disconnect %%HELP%%%%DATADIR%%/help/on/exec %%HELP%%%%DATADIR%%/help/on/exec_errors %%HELP%%%%DATADIR%%/help/on/exec_exit %%HELP%%%%DATADIR%%/help/on/exec_prompt %%HELP%%%%DATADIR%%/help/on/flood %%HELP%%%%DATADIR%%/help/on/help %%HELP%%%%DATADIR%%/help/on/hook %%HELP%%%%DATADIR%%/help/on/icb_cmdout %%HELP%%%%DATADIR%%/help/on/icb_error %%HELP%%%%DATADIR%%/help/on/icb_status %%HELP%%%%DATADIR%%/help/on/icb_who %%HELP%%%%DATADIR%%/help/on/idle %%HELP%%%%DATADIR%%/help/on/input %%HELP%%%%DATADIR%%/help/on/invite %%HELP%%%%DATADIR%%/help/on/join %%HELP%%%%DATADIR%%/help/on/leave %%HELP%%%%DATADIR%%/help/on/list %%HELP%%%%DATADIR%%/help/on/mail %%HELP%%%%DATADIR%%/help/on/mode %%HELP%%%%DATADIR%%/help/on/msg %%HELP%%%%DATADIR%%/help/on/msg_group %%HELP%%%%DATADIR%%/help/on/names %%HELP%%%%DATADIR%%/help/on/nickname %%HELP%%%%DATADIR%%/help/on/note %%HELP%%%%DATADIR%%/help/on/notice %%HELP%%%%DATADIR%%/help/on/notify_signoff %%HELP%%%%DATADIR%%/help/on/notify_signon %%HELP%%%%DATADIR%%/help/on/numeric %%HELP%%%%DATADIR%%/help/on/on %%HELP%%%%DATADIR%%/help/on/os_signal %%HELP%%%%DATADIR%%/help/on/public %%HELP%%%%DATADIR%%/help/on/public_msg %%HELP%%%%DATADIR%%/help/on/public_notice %%HELP%%%%DATADIR%%/help/on/public_other %%HELP%%%%DATADIR%%/help/on/raw_irc %%HELP%%%%DATADIR%%/help/on/raw_send %%HELP%%%%DATADIR%%/help/on/send_action %%HELP%%%%DATADIR%%/help/on/send_dcc_chat %%HELP%%%%DATADIR%%/help/on/send_msg %%HELP%%%%DATADIR%%/help/on/send_notice %%HELP%%%%DATADIR%%/help/on/send_public -%%HELP%%%%DATADIR%%/help/on/send_talk %%HELP%%%%DATADIR%%/help/on/serial_numbers %%HELP%%%%DATADIR%%/help/on/server_notice %%HELP%%%%DATADIR%%/help/on/signoff -%%HELP%%%%DATADIR%%/help/on/talk %%HELP%%%%DATADIR%%/help/on/timer %%HELP%%%%DATADIR%%/help/on/topic %%HELP%%%%DATADIR%%/help/on/wall %%HELP%%%%DATADIR%%/help/on/wallop %%HELP%%%%DATADIR%%/help/on/who %%HELP%%%%DATADIR%%/help/on/window %%HELP%%%%DATADIR%%/help/on/window_kill %%HELP%%%%DATADIR%%/help/on/window_list %%HELP%%%%DATADIR%%/help/on/window_swap %%HELP%%%%DATADIR%%/help/oper %%HELP%%%%DATADIR%%/help/parsekey %%HELP%%%%DATADIR%%/help/part %%HELP%%%%DATADIR%%/help/ping %%HELP%%%%DATADIR%%/help/query %%HELP%%%%DATADIR%%/help/quit %%HELP%%%%DATADIR%%/help/quote %%HELP%%%%DATADIR%%/help/rbind %%HELP%%%%DATADIR%%/help/redirect %%HELP%%%%DATADIR%%/help/rehash %%HELP%%%%DATADIR%%/help/restart %%HELP%%%%DATADIR%%/help/save %%HELP%%%%DATADIR%%/help/say %%HELP%%%%DATADIR%%/help/send %%HELP%%%%DATADIR%%/help/sendline %%HELP%%%%DATADIR%%/help/server %%HELP%%%%DATADIR%%/help/servlist %%HELP%%%%DATADIR%%/help/set/always_split_biggest %%HELP%%%%DATADIR%%/help/set/auto_unmark_away %%HELP%%%%DATADIR%%/help/set/auto_whowas %%HELP%%%%DATADIR%%/help/set/background_colour %%HELP%%%%DATADIR%%/help/set/beep %%HELP%%%%DATADIR%%/help/set/beep_max %%HELP%%%%DATADIR%%/help/set/beep_on_msg %%HELP%%%%DATADIR%%/help/set/beep_when_away %%HELP%%%%DATADIR%%/help/set/bind_local_dcchost %%HELP%%%%DATADIR%%/help/set/bold_video %%HELP%%%%DATADIR%%/help/set/channel_name_width %%HELP%%%%DATADIR%%/help/set/client_information %%HELP%%%%DATADIR%%/help/set/clock %%HELP%%%%DATADIR%%/help/set/clock_24hour %%HELP%%%%DATADIR%%/help/set/clock_alarm %%HELP%%%%DATADIR%%/help/set/cmdchars %%HELP%%%%DATADIR%%/help/set/colour %%HELP%%%%DATADIR%%/help/set/command_mode %%HELP%%%%DATADIR%%/help/set/continued_line %%HELP%%%%DATADIR%%/help/set/ctcp_reply_backlog_seconds %%HELP%%%%DATADIR%%/help/set/ctcp_reply_flood_size %%HELP%%%%DATADIR%%/help/set/ctcp_reply_ignore_seconds %%HELP%%%%DATADIR%%/help/set/dcc_block_size %%HELP%%%%DATADIR%%/help/set/dcchost %%HELP%%%%DATADIR%%/help/set/dccport %%HELP%%%%DATADIR%%/help/set/debug %%HELP%%%%DATADIR%%/help/set/decrypt_program %%HELP%%%%DATADIR%%/help/set/display %%HELP%%%%DATADIR%%/help/set/display_encoding %%HELP%%%%DATADIR%%/help/set/eight_bit_characters %%HELP%%%%DATADIR%%/help/set/encrypt_program %%HELP%%%%DATADIR%%/help/set/exec_protection %%HELP%%%%DATADIR%%/help/set/flood_after %%HELP%%%%DATADIR%%/help/set/flood_rate %%HELP%%%%DATADIR%%/help/set/flood_users %%HELP%%%%DATADIR%%/help/set/flood_warning %%HELP%%%%DATADIR%%/help/set/foreground_colour %%HELP%%%%DATADIR%%/help/set/full_status_line %%HELP%%%%DATADIR%%/help/set/help_pager %%HELP%%%%DATADIR%%/help/set/help_path %%HELP%%%%DATADIR%%/help/set/help_prompt %%HELP%%%%DATADIR%%/help/set/help_window %%HELP%%%%DATADIR%%/help/set/hide_channel_keys %%HELP%%%%DATADIR%%/help/set/hide_private_channels %%HELP%%%%DATADIR%%/help/set/highlight_char %%HELP%%%%DATADIR%%/help/set/history %%HELP%%%%DATADIR%%/help/set/history_file %%HELP%%%%DATADIR%%/help/set/hold_mode %%HELP%%%%DATADIR%%/help/set/hold_mode_max %%HELP%%%%DATADIR%%/help/set/indent %%HELP%%%%DATADIR%%/help/set/input_aliases %%HELP%%%%DATADIR%%/help/set/input_encoding %%HELP%%%%DATADIR%%/help/set/input_prompt %%HELP%%%%DATADIR%%/help/set/input_protection %%HELP%%%%DATADIR%%/help/set/insert_mode %%HELP%%%%DATADIR%%/help/set/inverse_video %%HELP%%%%DATADIR%%/help/set/irc_encoding %%HELP%%%%DATADIR%%/help/set/irchost %%HELP%%%%DATADIR%%/help/set/lastlog %%HELP%%%%DATADIR%%/help/set/lastlog_level %%HELP%%%%DATADIR%%/help/set/load_path %%HELP%%%%DATADIR%%/help/set/log %%HELP%%%%DATADIR%%/help/set/logfile %%HELP%%%%DATADIR%%/help/set/mail %%HELP%%%%DATADIR%%/help/set/make_notice_msg %%HELP%%%%DATADIR%%/help/set/max_recursions %%HELP%%%%DATADIR%%/help/set/menu %%HELP%%%%DATADIR%%/help/set/minimum_servers %%HELP%%%%DATADIR%%/help/set/minimum_users %%HELP%%%%DATADIR%%/help/set/no_ask_nickname %%HELP%%%%DATADIR%%/help/set/no_ctcp_flood %%HELP%%%%DATADIR%%/help/set/notify_handler %%HELP%%%%DATADIR%%/help/set/notify_level %%HELP%%%%DATADIR%%/help/set/notify_on_termination %%HELP%%%%DATADIR%%/help/set/novice %%HELP%%%%DATADIR%%/help/set/old_encrypt_program %%HELP%%%%DATADIR%%/help/set/realname %%HELP%%%%DATADIR%%/help/set/same_window_only %%HELP%%%%DATADIR%%/help/set/scroll %%HELP%%%%DATADIR%%/help/set/scroll_lines %%HELP%%%%DATADIR%%/help/set/send_ignore_msg %%HELP%%%%DATADIR%%/help/set/set %%HELP%%%%DATADIR%%/help/set/shell %%HELP%%%%DATADIR%%/help/set/shell_flags %%HELP%%%%DATADIR%%/help/set/shell_limit %%HELP%%%%DATADIR%%/help/set/show_away_once %%HELP%%%%DATADIR%%/help/set/show_channel_names %%HELP%%%%DATADIR%%/help/set/show_end_of_msgs %%HELP%%%%DATADIR%%/help/set/show_numerics %%HELP%%%%DATADIR%%/help/set/show_stars %%HELP%%%%DATADIR%%/help/set/show_status_all %%HELP%%%%DATADIR%%/help/set/show_who_hopcount %%HELP%%%%DATADIR%%/help/set/ssl_ca_chain_file %%HELP%%%%DATADIR%%/help/set/ssl_ca_file %%HELP%%%%DATADIR%%/help/set/ssl_ca_path %%HELP%%%%DATADIR%%/help/set/ssl_ca_private_key_file %%HELP%%%%DATADIR%%/help/set/star_prefix %%HELP%%%%DATADIR%%/help/set/status_away %%HELP%%%%DATADIR%%/help/set/status_channel %%HELP%%%%DATADIR%%/help/set/status_chanop %%HELP%%%%DATADIR%%/help/set/status_clock %%HELP%%%%DATADIR%%/help/set/status_format %%HELP%%%%DATADIR%%/help/set/status_hold %%HELP%%%%DATADIR%%/help/set/status_hold_lines %%HELP%%%%DATADIR%%/help/set/status_insert %%HELP%%%%DATADIR%%/help/set/status_mail %%HELP%%%%DATADIR%%/help/set/status_mode %%HELP%%%%DATADIR%%/help/set/status_notify %%HELP%%%%DATADIR%%/help/set/status_oper %%HELP%%%%DATADIR%%/help/set/status_overwrite %%HELP%%%%DATADIR%%/help/set/status_query %%HELP%%%%DATADIR%%/help/set/status_scrolled %%HELP%%%%DATADIR%%/help/set/status_scrolled_lines %%HELP%%%%DATADIR%%/help/set/status_server %%HELP%%%%DATADIR%%/help/set/status_umode %%HELP%%%%DATADIR%%/help/set/status_user %%HELP%%%%DATADIR%%/help/set/status_voice %%HELP%%%%DATADIR%%/help/set/status_window %%HELP%%%%DATADIR%%/help/set/suppress_server_motd %%HELP%%%%DATADIR%%/help/set/tab %%HELP%%%%DATADIR%%/help/set/tab_max %%HELP%%%%DATADIR%%/help/set/underline_video %%HELP%%%%DATADIR%%/help/set/user_information %%HELP%%%%DATADIR%%/help/set/user_wallops %%HELP%%%%DATADIR%%/help/set/verbose_ctcp %%HELP%%%%DATADIR%%/help/set/warn_of_ignores %%HELP%%%%DATADIR%%/help/set/xterm_geomoptstr %%HELP%%%%DATADIR%%/help/set/xterm_options %%HELP%%%%DATADIR%%/help/set/xterm_path %%HELP%%%%DATADIR%%/help/signoff %%HELP%%%%DATADIR%%/help/sleep %%HELP%%%%DATADIR%%/help/squery %%HELP%%%%DATADIR%%/help/squit %%HELP%%%%DATADIR%%/help/stats %%HELP%%%%DATADIR%%/help/summon %%HELP%%%%DATADIR%%/help/time %%HELP%%%%DATADIR%%/help/timer %%HELP%%%%DATADIR%%/help/topic %%HELP%%%%DATADIR%%/help/trace %%HELP%%%%DATADIR%%/help/type %%HELP%%%%DATADIR%%/help/userhost %%HELP%%%%DATADIR%%/help/users %%HELP%%%%DATADIR%%/help/version %%HELP%%%%DATADIR%%/help/wait %%HELP%%%%DATADIR%%/help/wallops %%HELP%%%%DATADIR%%/help/which %%HELP%%%%DATADIR%%/help/while %%HELP%%%%DATADIR%%/help/who %%HELP%%%%DATADIR%%/help/whois %%HELP%%%%DATADIR%%/help/whowas %%HELP%%%%DATADIR%%/help/window/add %%HELP%%%%DATADIR%%/help/window/addgroup %%HELP%%%%DATADIR%%/help/window/back %%HELP%%%%DATADIR%%/help/window/balance %%HELP%%%%DATADIR%%/help/window/bind %%HELP%%%%DATADIR%%/help/window/channel %%HELP%%%%DATADIR%%/help/window/create %%HELP%%%%DATADIR%%/help/window/delete %%HELP%%%%DATADIR%%/help/window/delgroup %%HELP%%%%DATADIR%%/help/window/double %%HELP%%%%DATADIR%%/help/window/goto %%HELP%%%%DATADIR%%/help/window/grow %%HELP%%%%DATADIR%%/help/window/hide %%HELP%%%%DATADIR%%/help/window/hide_others %%HELP%%%%DATADIR%%/help/window/hold_mode %%HELP%%%%DATADIR%%/help/window/kill %%HELP%%%%DATADIR%%/help/window/kill_others %%HELP%%%%DATADIR%%/help/window/lastlog_level %%HELP%%%%DATADIR%%/help/window/level %%HELP%%%%DATADIR%%/help/window/list %%HELP%%%%DATADIR%%/help/window/log %%HELP%%%%DATADIR%%/help/window/logfile %%HELP%%%%DATADIR%%/help/window/move %%HELP%%%%DATADIR%%/help/window/name %%HELP%%%%DATADIR%%/help/window/new %%HELP%%%%DATADIR%%/help/window/next %%HELP%%%%DATADIR%%/help/window/nostatus %%HELP%%%%DATADIR%%/help/window/notify %%HELP%%%%DATADIR%%/help/window/notify_level %%HELP%%%%DATADIR%%/help/window/number %%HELP%%%%DATADIR%%/help/window/pop %%HELP%%%%DATADIR%%/help/window/previous %%HELP%%%%DATADIR%%/help/window/prompt %%HELP%%%%DATADIR%%/help/window/push %%HELP%%%%DATADIR%%/help/window/query %%HELP%%%%DATADIR%%/help/window/refnum %%HELP%%%%DATADIR%%/help/window/remove %%HELP%%%%DATADIR%%/help/window/scroll %%HELP%%%%DATADIR%%/help/window/server %%HELP%%%%DATADIR%%/help/window/show %%HELP%%%%DATADIR%%/help/window/shrink %%HELP%%%%DATADIR%%/help/window/stack %%HELP%%%%DATADIR%%/help/window/sticky %%HELP%%%%DATADIR%%/help/window/swap %%HELP%%%%DATADIR%%/help/window/unbind %%HELP%%%%DATADIR%%/help/window/where %%HELP%%%%DATADIR%%/help/window/window %%HELP%%%%DATADIR%%/help/xecho %%HELP%%%%DATADIR%%/help/xtype %%SCRIPTS%%%%DATADIR%%/script/2.8script %%SCRIPTS%%%%DATADIR%%/script/2.9script %%SCRIPTS%%%%DATADIR%%/script/action %%SCRIPTS%%%%DATADIR%%/script/alias %%SCRIPTS%%%%DATADIR%%/script/autoop %%SCRIPTS%%%%DATADIR%%/script/autoquery %%SCRIPTS%%%%DATADIR%%/script/basical %%SCRIPTS%%%%DATADIR%%/script/bigcheese %%SCRIPTS%%%%DATADIR%%/script/brc %%SCRIPTS%%%%DATADIR%%/script/channel %%SCRIPTS%%%%DATADIR%%/script/columns %%SCRIPTS%%%%DATADIR%%/script/commander %%SCRIPTS%%%%DATADIR%%/script/compl.mods %%SCRIPTS%%%%DATADIR%%/script/complete %%SCRIPTS%%%%DATADIR%%/script/cursor %%SCRIPTS%%%%DATADIR%%/script/dccchan %%SCRIPTS%%%%DATADIR%%/script/default %%SCRIPTS%%%%DATADIR%%/script/deutsch %%SCRIPTS%%%%DATADIR%%/script/disc %%SCRIPTS%%%%DATADIR%%/script/dmsg %%SCRIPTS%%%%DATADIR%%/script/edit %%SCRIPTS%%%%DATADIR%%/script/english %%SCRIPTS%%%%DATADIR%%/script/events %%SCRIPTS%%%%DATADIR%%/script/extensions %%SCRIPTS%%%%DATADIR%%/script/finger %%SCRIPTS%%%%DATADIR%%/script/fkeys %%SCRIPTS%%%%DATADIR%%/script/flood %%SCRIPTS%%%%DATADIR%%/script/fnet %%SCRIPTS%%%%DATADIR%%/script/functions %%SCRIPTS%%%%DATADIR%%/script/global %%SCRIPTS%%%%DATADIR%%/script/help %%SCRIPTS%%%%DATADIR%%/script/history %%SCRIPTS%%%%DATADIR%%/script/history-match %%SCRIPTS%%%%DATADIR%%/script/icb %%SCRIPTS%%%%DATADIR%%/script/imap %%SCRIPTS%%%%DATADIR%%/script/ircIIhelp %%SCRIPTS%%%%DATADIR%%/script/ircprimer %%SCRIPTS%%%%DATADIR%%/script/ircrc %%SCRIPTS%%%%DATADIR%%/script/kickmenu %%SCRIPTS%%%%DATADIR%%/script/killpath %%SCRIPTS%%%%DATADIR%%/script/kpstat %%SCRIPTS%%%%DATADIR%%/script/list %%SCRIPTS%%%%DATADIR%%/script/listidle %%SCRIPTS%%%%DATADIR%%/script/log %%SCRIPTS%%%%DATADIR%%/script/lynx_ircrc %%SCRIPTS%%%%DATADIR%%/script/meta1 %%SCRIPTS%%%%DATADIR%%/script/meta2 %%SCRIPTS%%%%DATADIR%%/script/msg %%SCRIPTS%%%%DATADIR%%/script/mudlike %%SCRIPTS%%%%DATADIR%%/script/multichan %%SCRIPTS%%%%DATADIR%%/script/nemesis %%SCRIPTS%%%%DATADIR%%/script/netsplit %%SCRIPTS%%%%DATADIR%%/script/newaway %%SCRIPTS%%%%DATADIR%%/script/newformat %%SCRIPTS%%%%DATADIR%%/script/nicks %%SCRIPTS%%%%DATADIR%%/script/nicksearch %%SCRIPTS%%%%DATADIR%%/script/nocolour %%SCRIPTS%%%%DATADIR%%/script/oldping %%SCRIPTS%%%%DATADIR%%/script/oper %%SCRIPTS%%%%DATADIR%%/script/otherstatus %%SCRIPTS%%%%DATADIR%%/script/ping %%SCRIPTS%%%%DATADIR%%/script/prefix %%SCRIPTS%%%%DATADIR%%/script/recursion %%SCRIPTS%%%%DATADIR%%/script/redirx %%SCRIPTS%%%%DATADIR%%/script/repeat %%SCRIPTS%%%%DATADIR%%/script/screen %%SCRIPTS%%%%DATADIR%%/script/service %%SCRIPTS%%%%DATADIR%%/script/shell %%SCRIPTS%%%%DATADIR%%/script/silent %%SCRIPTS%%%%DATADIR%%/script/smileys %%SCRIPTS%%%%DATADIR%%/script/tabkey %%SCRIPTS%%%%DATADIR%%/script/time %%SCRIPTS%%%%DATADIR%%/script/times %%SCRIPTS%%%%DATADIR%%/script/traces %%SCRIPTS%%%%DATADIR%%/script/troy %%SCRIPTS%%%%DATADIR%%/script/uhnotify %%SCRIPTS%%%%DATADIR%%/script/undernet %%SCRIPTS%%%%DATADIR%%/script/version %%SCRIPTS%%%%DATADIR%%/script/voice %%SCRIPTS%%%%DATADIR%%/script/wallopstat %%SCRIPTS%%%%DATADIR%%/script/whowas %%SCRIPTS%%%%DATADIR%%/script/window