aboutsummaryrefslogtreecommitdiff
path: root/irc
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2014-06-12 14:19:06 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2014-06-12 14:19:06 +0000
commit668fd0429547038d97784a266ee7301fbff95843 (patch)
tree8a3998b7c3e36700813e4264454fa3c911a37b90 /irc
parent03f2dce435b9a282e0820efa892561e8fe9205f2 (diff)
downloadports-668fd0429547038d97784a266ee7301fbff95843.tar.gz
ports-668fd0429547038d97784a266ee7301fbff95843.zip
Update to 20131230 and take maintainership.
Notes
Notes: svn path=/head/; revision=357598
Diffstat (limited to 'irc')
-rw-r--r--irc/ircII/Makefile26
-rw-r--r--irc/ircII/distinfo4
-rw-r--r--irc/ircII/files/patch-Makefile.in57
-rw-r--r--irc/ircII/pkg-plist1239
4 files changed, 621 insertions, 705 deletions
diff --git a/irc/ircII/Makefile b/irc/ircII/Makefile
index 1116795daa16..7ddf34cb55dc 100644
--- a/irc/ircII/Makefile
+++ b/irc/ircII/Makefile
@@ -1,22 +1,28 @@
# Created by: torstenb
# $FreeBSD$
-PORTNAME= ircii
-PORTVERSION= 20111115
-CATEGORIES= irc ipv6
+PORTNAME= ircii
+PORTVERSION= 20131230
+CATEGORIES= irc ipv6
MASTER_SITES= http://ircii.warped.com/
-MAINTAINER= ports@FreeBSD.org
-COMMENT= The 'Internet Relay Chat' and 'Internet Citizens Band' Client
+MAINTAINER= adamw@FreeBSD.org
+COMMENT= Small and high extensible IRC client
-LICENSE= BSD3CLAUSE
+LICENSE= BSD3CLAUSE
GNU_CONFIGURE= yes
CONFIGURE_ENV= IRCLIB=${PREFIX}/share/irc
-USE_AUTOTOOLS= autoconf213 autoheader213
+DATADIR= ${PREFIX}/share/irc
+USES= tar:bzip2
-USES= tar:bzip2
-
-PLIST_SUB= VERSION="${PORTVERSION}"
+do-install:
+ (cd ${WRKSRC} && ${INSTALL_PROGRAM} irc ircflush ${STAGEDIR}${PREFIX}/bin)
+ ${INSTALL_SCRIPT} ${WRKSRC}/ircbug ${STAGEDIR}${PREFIX}/bin
+ (cd ${WRKSRC} && ${INSTALL_PROGRAM} ircio wserv ${STAGEDIR}${PREFIX}/libexec)
+ (cd ${WRKSRC}/doc && ${INSTALL_MAN} ircII.1 ircbug.1 ${STAGEDIR}${MANPREFIX}/man/man1)
+ ${LN} -s ircII.1 ${STAGEDIR}${MANPREFIX}/man/man1/irc.1
+ @${MKDIR} ${STAGEDIR}${DATADIR}
+ (cd ${WRKSRC} && ${COPYTREE_SHARE} "help script" ${STAGEDIR}${DATADIR})
.include <bsd.port.mk>
diff --git a/irc/ircII/distinfo b/irc/ircII/distinfo
index d9662ec1e057..4fc0be34904d 100644
--- a/irc/ircII/distinfo
+++ b/irc/ircII/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ircii-20111115.tar.bz2) = 5c6b4390b8ed04cf3b08a3ba72f41eba9b125d0fc09c637f7c7f81eb6bdd91e6
-SIZE (ircii-20111115.tar.bz2) = 555731
+SHA256 (ircii-20131230.tar.bz2) = 6effbbb44cfae0f7f688d3ac386366d97a3b5c62bbeec5a251971dda723526ce
+SIZE (ircii-20131230.tar.bz2) = 552149
diff --git a/irc/ircII/files/patch-Makefile.in b/irc/ircII/files/patch-Makefile.in
deleted file mode 100644
index a4fd6d761c25..000000000000
--- a/irc/ircII/files/patch-Makefile.in
+++ /dev/null
@@ -1,57 +0,0 @@
---- ./Makefile.in.orig 2014-04-10 10:51:26.400763791 -0500
-+++ ./Makefile.in 2014-04-10 10:53:08.187756816 -0500
-@@ -164,15 +164,15 @@
- ( \
- cd $(topdir)/script; \
- for i in *; do \
-- if test "$$i" = "local" -a -f $(INSTALL_SCRIPT)/local; then \
-+ if test "$$i" = "local" -a -f $(DESTDIR)$(INSTALL_SCRIPT)/local; then \
- if test -f local; then \
-- $(INSTALL_DATA) local $(INSTALL_SCRIPT)/local.orig; \
-+ $(INSTALL_DATA) local $(DESTDIR)$(INSTALL_SCRIPT)/local.orig; \
- fi; \
- elif test "$$i" != "CVS" -a "$$i" != ".CVS"; then \
-- $(INSTALL_DATA) $$i $(INSTALL_SCRIPT); \
-+ $(INSTALL_DATA) $$i $(DESTDIR)$(INSTALL_SCRIPT); \
- fi; \
- done; \
-- chmod -x $(INSTALL_SCRIPT)/* \
-+ chmod -x $(DESTDIR)$(INSTALL_SCRIPT)/* \
- )
-
- installtranslation: installdirs
-@@ -180,10 +180,10 @@
- cd $(topdir)/translation; \
- for i in *; do \
- if test "$$i" != "CVS" -a "$$i" != ".CVS"; then \
-- $(INSTALL_DATA) $$i $(TRANS_PATH); \
-+ $(INSTALL_DATA) $$i $(DESTDIR)$(TRANS_PATH); \
- fi; \
- done; \
-- chmod -x $(TRANS_PATH)/* \
-+ chmod -x $(DESTDIR)$(TRANS_PATH)/* \
- )
-
- installserv: installio
-@@ -198,8 +198,8 @@
-
- installhelp:
- $(INSTALL_HELP_CMD)
-- find $(HELP_DIR) -type d -print | xargs chmod a+rx
-- find $(HELP_DIR) -type f -print | xargs chmod a+r
-+ find $(DESTDIR)$(HELP_DIR) -type d -print | xargs chmod a+rx
-+ find $(DESTDIR)$(HELP_DIR) -type f -print | xargs chmod a+r
-
- installman:
- (cd $(topdir)/doc; for i in ircII.1 ircbug.1; do $(INSTALL_DATA) $$i $(mandir); done)
-@@ -209,8 +209,8 @@
- # $(INSTALL_DATA) $(topdir)/doc/query-pr.1 $(mandir)
-
- installdirs:
-- umask 022; $(topdir)/mkinstalldirs $(IRCLIB) $(bindir) $(mandir) \
-- $(TRANS_PATH) $(INSTALL_SCRIPT) $(HELP_DIR) $(libexecdir)
-+ umask 022; $(topdir)/mkinstalldirs $(DESTDIR)$(IRCLIB) $(bindir) $(mandir) \
-+ $(DESTDIR)$(TRANS_PATH) $(DESTDIR)$(INSTALL_SCRIPT) $(DESTDIR)$(HELP_DIR) $(libexecdir)
-
- clena clean:
- cd $(objdir) && $(RM) $(PROGRAMS) $(OBJECTS) \
diff --git a/irc/ircII/pkg-plist b/irc/ircII/pkg-plist
index 8f922a0a7388..da8e9e740077 100644
--- a/irc/ircII/pkg-plist
+++ b/irc/ircII/pkg-plist
@@ -1,5 +1,4 @@
bin/irc
-bin/irc-%%VERSION%%
bin/ircbug
bin/ircflush
libexec/ircio
@@ -7,638 +6,606 @@ libexec/wserv
man/man1/irc.1.gz
man/man1/ircII.1.gz
man/man1/ircbug.1.gz
-share/irc/help/!
-share/irc/help/.date
-share/irc/help/:
-share/irc/help/@
-share/irc/help/abort
-share/irc/help/admin
-share/irc/help/alias/alias
-share/irc/help/alias/functions
-share/irc/help/alias/quote
-share/irc/help/alias/special
-share/irc/help/alias/width
-share/irc/help/assign
-share/irc/help/away
-share/irc/help/basics
-share/irc/help/beep
-share/irc/help/bind/backspace
-share/irc/help/bind/backward_character
-share/irc/help/bind/backward_history
-share/irc/help/bind/backward_word
-share/irc/help/bind/beginning_of_line
-share/irc/help/bind/bind
-share/irc/help/bind/clear_screen
-share/irc/help/bind/command_completion
-share/irc/help/bind/delete_character
-share/irc/help/bind/delete_next_word
-share/irc/help/bind/delete_previous_word
-share/irc/help/bind/end_of_line
-share/irc/help/bind/enter_digraph
-share/irc/help/bind/enter_menu
-share/irc/help/bind/erase_line
-share/irc/help/bind/erase_to_beg_of_line
-share/irc/help/bind/erase_to_end_of_line
-share/irc/help/bind/examples
-share/irc/help/bind/forward_character
-share/irc/help/bind/forward_history
-share/irc/help/bind/forward_word
-share/irc/help/bind/help_character
-share/irc/help/bind/keys
-share/irc/help/bind/meta1_character
-share/irc/help/bind/meta2_character
-share/irc/help/bind/meta3_character
-share/irc/help/bind/meta4_character
-share/irc/help/bind/meta5_character
-share/irc/help/bind/meta6_character
-share/irc/help/bind/meta7_character
-share/irc/help/bind/meta8_character
-share/irc/help/bind/next_window
-share/irc/help/bind/nothing
-share/irc/help/bind/parse_command
-share/irc/help/bind/previous_window
-share/irc/help/bind/quit_irc
-share/irc/help/bind/quote_character
-share/irc/help/bind/refresh_inputline
-share/irc/help/bind/refresh_screen
-share/irc/help/bind/scroll_backward
-share/irc/help/bind/scroll_end
-share/irc/help/bind/scroll_forward
-share/irc/help/bind/scroll_start
-share/irc/help/bind/self_insert
-share/irc/help/bind/send_line
-share/irc/help/bind/stop_irc
-share/irc/help/bind/switch_channels
-share/irc/help/bind/toggle_insert_mode
-share/irc/help/bind/toggle_stop_screen
-share/irc/help/bind/transpose_characters
-share/irc/help/bind/type_text
-share/irc/help/bind/unstop_all_windows
-share/irc/help/bind/yank_from_cutbuffer
-share/irc/help/brick
-share/irc/help/bye
-share/irc/help/cat
-share/irc/help/cd
-share/irc/help/channel
-share/irc/help/clear
-share/irc/help/commands
-share/irc/help/comment
-share/irc/help/connect
-share/irc/help/ctcp/action
-share/irc/help/ctcp/clientinfo
-share/irc/help/ctcp/ctcp
-share/irc/help/ctcp/echo
-share/irc/help/ctcp/finger
-share/irc/help/ctcp/ping
-share/irc/help/ctcp/time
-share/irc/help/ctcp/userinfo
-share/irc/help/ctcp/utc
-share/irc/help/ctcp/version
-share/irc/help/date
-share/irc/help/dcc/chat
-share/irc/help/dcc/close
-share/irc/help/dcc/dcc
-share/irc/help/dcc/get
-share/irc/help/dcc/list
-share/irc/help/dcc/raw
-share/irc/help/dcc/rename
-share/irc/help/dcc/send
-share/irc/help/deop
-share/irc/help/describe
-share/irc/help/die
-share/irc/help/digraph
-share/irc/help/disconnect
-share/irc/help/dmsg
-share/irc/help/dquery
-share/irc/help/echo
-share/irc/help/encrypt
-share/irc/help/etiquette
-share/irc/help/eval
-share/irc/help/exec
-share/irc/help/exit
-share/irc/help/expressions
-share/irc/help/flush
-share/irc/help/foreach
-share/irc/help/help
-share/irc/help/history
-share/irc/help/hook
-share/irc/help/icb
-share/irc/help/if
-share/irc/help/ignore
-share/irc/help/info
-share/irc/help/input
-share/irc/help/intro
-share/irc/help/invite
-share/irc/help/ircii/copyright
-share/irc/help/ison
-share/irc/help/join
-share/irc/help/kick
-share/irc/help/kill
-share/irc/help/lastlog
-share/irc/help/leave
-share/irc/help/links
-share/irc/help/list
-share/irc/help/load/2.9script
-share/irc/help/load/action
-share/irc/help/load/alias
-share/irc/help/load/autoop
-share/irc/help/load/autoquery
-share/irc/help/load/basical
-share/irc/help/load/bigcheese
-share/irc/help/load/brc
-share/irc/help/load/channel
-share/irc/help/load/columns
-share/irc/help/load/commander
-share/irc/help/load/cursor
-share/irc/help/load/dccchan
-share/irc/help/load/deutsch
-share/irc/help/load/disc
-share/irc/help/load/edit
-share/irc/help/load/english
-share/irc/help/load/events
-share/irc/help/load/extensions
-share/irc/help/load/finger
-share/irc/help/load/finger.who
-share/irc/help/load/flood
-share/irc/help/load/fnet
-share/irc/help/load/functions
-share/irc/help/load/help
-share/irc/help/load/history
-share/irc/help/load/icb
-share/irc/help/load/irciihelp
-share/irc/help/load/ircprimer
-share/irc/help/load/kickmenu
-share/irc/help/load/killpath
-share/irc/help/load/kpstat
-share/irc/help/load/list
-share/irc/help/load/listidle
-share/irc/help/load/load
-share/irc/help/load/local
-share/irc/help/load/lynx_ircrc
-share/irc/help/load/meta1
-share/irc/help/load/meta2
-share/irc/help/load/msg
-share/irc/help/load/mudlike
-share/irc/help/load/nemesis
-share/irc/help/load/netsplit
-share/irc/help/load/newaway
-share/irc/help/load/nicks
-share/irc/help/load/oldping
-share/irc/help/load/oper
-share/irc/help/load/prefix
-share/irc/help/load/recursion
-share/irc/help/load/repeat
-share/irc/help/load/screen
-share/irc/help/load/service
-share/irc/help/load/shell
-share/irc/help/load/silent
-share/irc/help/load/smileys
-share/irc/help/load/suggestions
-share/irc/help/load/tabkey
-share/irc/help/load/time
-share/irc/help/load/traces
-share/irc/help/load/troy
-share/irc/help/load/uhnotify
-share/irc/help/load/version
-share/irc/help/load/wallopstat
-share/irc/help/load/whowas
-share/irc/help/load/window
-share/irc/help/lusers
-share/irc/help/me
-share/irc/help/menus
-share/irc/help/mload
-share/irc/help/mode
-share/irc/help/motd
-share/irc/help/msg
-share/irc/help/names
-share/irc/help/news
-share/irc/help/newuser
-share/irc/help/nick
-share/irc/help/note/antiwall
-share/irc/help/note/count
-share/irc/help/note/deny
-share/irc/help/note/find
-share/irc/help/note/flag
-share/irc/help/note/key
-share/irc/help/note/log
-share/irc/help/note/ls
-share/irc/help/note/news
-share/irc/help/note/note
-share/irc/help/note/rm
-share/irc/help/note/save
-share/irc/help/note/send
-share/irc/help/note/sent
-share/irc/help/note/service
-share/irc/help/note/spy
-share/irc/help/note/stats
-share/irc/help/note/user
-share/irc/help/note/waitfor
-share/irc/help/note/wall
-share/irc/help/note/wallops
-share/irc/help/notice
-share/irc/help/notify
-share/irc/help/nuser
-share/irc/help/on/action
-share/irc/help/on/channel_nick
-share/irc/help/on/channel_signoff
-share/irc/help/on/connect
-share/irc/help/on/ctcp
-share/irc/help/on/ctcp_reply
-share/irc/help/on/dcc_chat
-share/irc/help/on/dcc_list
-share/irc/help/on/dcc_raw
-share/irc/help/on/disconnect
-share/irc/help/on/exec
-share/irc/help/on/exec_errors
-share/irc/help/on/exec_exit
-share/irc/help/on/exec_prompt
-share/irc/help/on/flood
-share/irc/help/on/help
-share/irc/help/on/hook
-share/irc/help/on/icb_cmdout
-share/irc/help/on/icb_error
-share/irc/help/on/icb_status
-share/irc/help/on/icb_who
-share/irc/help/on/idle
-share/irc/help/on/input
-share/irc/help/on/invite
-share/irc/help/on/join
-share/irc/help/on/leave
-share/irc/help/on/list
-share/irc/help/on/mail
-share/irc/help/on/mode
-share/irc/help/on/msg
-share/irc/help/on/msg_group
-share/irc/help/on/names
-share/irc/help/on/nickname
-share/irc/help/on/note
-share/irc/help/on/notice
-share/irc/help/on/notify_signoff
-share/irc/help/on/notify_signon
-share/irc/help/on/numeric
-share/irc/help/on/on
-share/irc/help/on/os_signal
-share/irc/help/on/public
-share/irc/help/on/public_msg
-share/irc/help/on/public_notice
-share/irc/help/on/public_other
-share/irc/help/on/raw_irc
-share/irc/help/on/raw_send
-share/irc/help/on/send_action
-share/irc/help/on/send_dcc_chat
-share/irc/help/on/send_msg
-share/irc/help/on/send_notice
-share/irc/help/on/send_public
-share/irc/help/on/send_talk
-share/irc/help/on/serial_numbers
-share/irc/help/on/server_notice
-share/irc/help/on/signoff
-share/irc/help/on/talk
-share/irc/help/on/timer
-share/irc/help/on/topic
-share/irc/help/on/wall
-share/irc/help/on/wallop
-share/irc/help/on/who
-share/irc/help/on/window
-share/irc/help/on/window_kill
-share/irc/help/on/window_list
-share/irc/help/on/window_swap
-share/irc/help/oper
-share/irc/help/parsekey
-share/irc/help/part
-share/irc/help/ping
-share/irc/help/query
-share/irc/help/quit
-share/irc/help/quote
-share/irc/help/rbind
-share/irc/help/redirect
-share/irc/help/rehash
-share/irc/help/restart
-share/irc/help/rules
-share/irc/help/save
-share/irc/help/say
-share/irc/help/send
-share/irc/help/sendline
-share/irc/help/server
-share/irc/help/servlist
-share/irc/help/set/always_split_biggest
-share/irc/help/set/auto_unmark_away
-share/irc/help/set/auto_whowas
-share/irc/help/set/background_colour
-share/irc/help/set/beep
-share/irc/help/set/beep_max
-share/irc/help/set/beep_on_msg
-share/irc/help/set/beep_when_away
-share/irc/help/set/bind_local_dcchost
-share/irc/help/set/bold_video
-share/irc/help/set/channel_name_width
-share/irc/help/set/client_information
-share/irc/help/set/clock
-share/irc/help/set/clock_24hour
-share/irc/help/set/clock_alarm
-share/irc/help/set/cmdchars
-share/irc/help/set/colour
-share/irc/help/set/command_mode
-share/irc/help/set/continued_line
-share/irc/help/set/ctcp_reply_backlog_seconds
-share/irc/help/set/ctcp_reply_flood_size
-share/irc/help/set/ctcp_reply_ignore_seconds
-share/irc/help/set/dcc_block_size
-share/irc/help/set/dcchost
-share/irc/help/set/dccport
-share/irc/help/set/debug
-share/irc/help/set/decrypt_program
-share/irc/help/set/display
-share/irc/help/set/eight_bit_characters
-share/irc/help/set/encrypt_program
-share/irc/help/set/exec_protection
-share/irc/help/set/flood_after
-share/irc/help/set/flood_rate
-share/irc/help/set/flood_users
-share/irc/help/set/flood_warning
-share/irc/help/set/foreground_colour
-share/irc/help/set/full_status_line
-share/irc/help/set/help_pager
-share/irc/help/set/help_path
-share/irc/help/set/help_prompt
-share/irc/help/set/help_window
-share/irc/help/set/hide_channel_keys
-share/irc/help/set/hide_private_channels
-share/irc/help/set/highlight_char
-share/irc/help/set/history
-share/irc/help/set/history_file
-share/irc/help/set/hold_mode
-share/irc/help/set/hold_mode_max
-share/irc/help/set/indent
-share/irc/help/set/input_aliases
-share/irc/help/set/input_prompt
-share/irc/help/set/input_protection
-share/irc/help/set/insert_mode
-share/irc/help/set/inverse_video
-share/irc/help/set/irchost
-share/irc/help/set/lastlog
-share/irc/help/set/lastlog_level
-share/irc/help/set/load_path
-share/irc/help/set/log
-share/irc/help/set/logfile
-share/irc/help/set/mail
-share/irc/help/set/make_notice_msg
-share/irc/help/set/max_recursions
-share/irc/help/set/menu
-share/irc/help/set/minimum_servers
-share/irc/help/set/minimum_users
-share/irc/help/set/no_ask_nickname
-share/irc/help/set/no_ctcp_flood
-share/irc/help/set/notify_handler
-share/irc/help/set/notify_level
-share/irc/help/set/notify_on_termination
-share/irc/help/set/novice
-share/irc/help/set/old_encrypt_program
-share/irc/help/set/realname
-share/irc/help/set/same_window_only
-share/irc/help/set/scroll
-share/irc/help/set/scroll_lines
-share/irc/help/set/send_ignore_msg
-share/irc/help/set/set
-share/irc/help/set/shell
-share/irc/help/set/shell_flags
-share/irc/help/set/shell_limit
-share/irc/help/set/show_away_once
-share/irc/help/set/show_channel_names
-share/irc/help/set/show_end_of_msgs
-share/irc/help/set/show_numerics
-share/irc/help/set/show_stars
-share/irc/help/set/show_status_all
-share/irc/help/set/show_who_hopcount
-share/irc/help/set/star_prefix
-share/irc/help/set/status_away
-share/irc/help/set/status_channel
-share/irc/help/set/status_chanop
-share/irc/help/set/status_clock
-share/irc/help/set/status_format
-share/irc/help/set/status_hold
-share/irc/help/set/status_hold_lines
-share/irc/help/set/status_insert
-share/irc/help/set/status_mail
-share/irc/help/set/status_mode
-share/irc/help/set/status_notify
-share/irc/help/set/status_oper
-share/irc/help/set/status_overwrite
-share/irc/help/set/status_query
-share/irc/help/set/status_scrolled
-share/irc/help/set/status_scrolled_lines
-share/irc/help/set/status_server
-share/irc/help/set/status_umode
-share/irc/help/set/status_user
-share/irc/help/set/status_voice
-share/irc/help/set/status_window
-share/irc/help/set/suppress_server_motd
-share/irc/help/set/tab
-share/irc/help/set/tab_max
-share/irc/help/set/translation
-share/irc/help/set/underline_video
-share/irc/help/set/user_information
-share/irc/help/set/user_wallops
-share/irc/help/set/verbose_ctcp
-share/irc/help/set/warn_of_ignores
-share/irc/help/set/xterm_geomoptstr
-share/irc/help/set/xterm_options
-share/irc/help/set/xterm_path
-share/irc/help/signoff
-share/irc/help/sleep
-share/irc/help/squery
-share/irc/help/squit
-share/irc/help/stats
-share/irc/help/summon
-share/irc/help/time
-share/irc/help/timer
-share/irc/help/topic
-share/irc/help/trace
-share/irc/help/type
-share/irc/help/userhost
-share/irc/help/users
-share/irc/help/version
-share/irc/help/wait
-share/irc/help/wallops
-share/irc/help/which
-share/irc/help/while
-share/irc/help/who
-share/irc/help/whois
-share/irc/help/whowas
-share/irc/help/window/add
-share/irc/help/window/addgroup
-share/irc/help/window/back
-share/irc/help/window/balance
-share/irc/help/window/bind
-share/irc/help/window/channel
-share/irc/help/window/create
-share/irc/help/window/delete
-share/irc/help/window/delgroup
-share/irc/help/window/double
-share/irc/help/window/goto
-share/irc/help/window/grow
-share/irc/help/window/hide
-share/irc/help/window/hide_others
-share/irc/help/window/hold_mode
-share/irc/help/window/kill
-share/irc/help/window/kill_others
-share/irc/help/window/lastlog_level
-share/irc/help/window/level
-share/irc/help/window/list
-share/irc/help/window/log
-share/irc/help/window/logfile
-share/irc/help/window/move
-share/irc/help/window/name
-share/irc/help/window/new
-share/irc/help/window/next
-share/irc/help/window/nostatus
-share/irc/help/window/notify
-share/irc/help/window/notify_level
-share/irc/help/window/number
-share/irc/help/window/pop
-share/irc/help/window/previous
-share/irc/help/window/prompt
-share/irc/help/window/push
-share/irc/help/window/query
-share/irc/help/window/refnum
-share/irc/help/window/remove
-share/irc/help/window/scroll
-share/irc/help/window/server
-share/irc/help/window/show
-share/irc/help/window/shrink
-share/irc/help/window/stack
-share/irc/help/window/sticky
-share/irc/help/window/swap
-share/irc/help/window/unbind
-share/irc/help/window/where
-share/irc/help/window/window
-share/irc/help/xecho
-share/irc/help/xtype
-share/irc/script/2.8script
-share/irc/script/2.9script
-share/irc/script/action
-share/irc/script/alias
-share/irc/script/autoop
-share/irc/script/autoquery
-share/irc/script/basical
-share/irc/script/bigcheese
-share/irc/script/brc
-share/irc/script/channel
-share/irc/script/columns
-share/irc/script/commander
-share/irc/script/compl.mods
-share/irc/script/complete
-share/irc/script/cursor
-share/irc/script/dccchan
-share/irc/script/default
-share/irc/script/deutsch
-share/irc/script/disc
-share/irc/script/dmsg
-share/irc/script/edit
-share/irc/script/english
-share/irc/script/events
-share/irc/script/extensions
-share/irc/script/finger
-share/irc/script/fkeys
-share/irc/script/flood
-share/irc/script/fnet
-share/irc/script/functions
-share/irc/script/global
-share/irc/script/help
-share/irc/script/history
-share/irc/script/history-match
-share/irc/script/icb
-share/irc/script/imap
-share/irc/script/ircIIhelp
-share/irc/script/ircprimer
-share/irc/script/ircrc
-share/irc/script/kickmenu
-share/irc/script/killpath
-share/irc/script/kpstat
-share/irc/script/list
-share/irc/script/listidle
-share/irc/script/log
-share/irc/script/lynx_ircrc
-share/irc/script/meta1
-share/irc/script/meta2
-share/irc/script/msg
-share/irc/script/mudlike
-share/irc/script/multichan
-share/irc/script/nemesis
-share/irc/script/netsplit
-share/irc/script/newaway
-share/irc/script/newformat
-share/irc/script/nicks
-share/irc/script/nocolour
-share/irc/script/oldping
-share/irc/script/oper
-share/irc/script/otherstatus
-share/irc/script/ping
-share/irc/script/prefix
-share/irc/script/recursion
-share/irc/script/redirx
-share/irc/script/repeat
-share/irc/script/screen
-share/irc/script/service
-share/irc/script/shell
-share/irc/script/silent
-share/irc/script/smileys
-share/irc/script/tabkey
-share/irc/script/time
-share/irc/script/times
-share/irc/script/traces
-share/irc/script/troy
-share/irc/script/uhnotify
-share/irc/script/undernet
-share/irc/script/version
-share/irc/script/voice
-share/irc/script/wallopstat
-share/irc/script/whowas
-share/irc/script/window
-share/irc/translation/ASCII
-share/irc/translation/CP437
-share/irc/translation/CP850
-share/irc/translation/DANISH
-share/irc/translation/DEC_MCS
-share/irc/translation/DG_MCS
-share/irc/translation/DUTCH
-share/irc/translation/FINNISH
-share/irc/translation/FRENCH
-share/irc/translation/FRENCH_CANADIAN
-share/irc/translation/GERMAN
-share/irc/translation/HP_MCS
-share/irc/translation/IRV
-share/irc/translation/ITALIAN
-share/irc/translation/JIS
-share/irc/translation/MACINTOSH
-share/irc/translation/NEXT
-share/irc/translation/NORWEGIAN_1
-share/irc/translation/NORWEGIAN_2
-share/irc/translation/POLISH
-share/irc/translation/POLISH_NOPL
-share/irc/translation/PORTUGUESE
-share/irc/translation/PORTUGUESE_COM
-share/irc/translation/RUSSIAN
-share/irc/translation/RUSSIAN_ALT
-share/irc/translation/RUSSIAN_WIN
-share/irc/translation/SPANISH
-share/irc/translation/SWEDISH
-share/irc/translation/SWEDISH_NAMES
-share/irc/translation/SWEDISH_NAMES_COM
-share/irc/translation/SWISS
-share/irc/translation/UNITED_KINGDOM
-share/irc/translation/UNITED_KINGDOM_COM
-@dirrm share/irc/script
-@dirrm share/irc/help/alias
-@dirrm share/irc/help/bind
-@dirrm share/irc/help/ctcp
-@dirrm share/irc/help/dcc
-@dirrm share/irc/help/on
-@dirrm share/irc/help/load
-@dirrm share/irc/help/note
-@dirrm share/irc/help/set
-@dirrm share/irc/help/window
-@dirrm share/irc/help/ircii
-@dirrm share/irc/help
-@dirrm share/irc/translation
-@dirrm share/irc
+%%DATADIR%%/help/!
+%%DATADIR%%/help/.date
+%%DATADIR%%/help/:
+%%DATADIR%%/help/@
+%%DATADIR%%/help/abort
+%%DATADIR%%/help/admin
+%%DATADIR%%/help/alias/alias
+%%DATADIR%%/help/alias/functions
+%%DATADIR%%/help/alias/quote
+%%DATADIR%%/help/alias/special
+%%DATADIR%%/help/alias/width
+%%DATADIR%%/help/assign
+%%DATADIR%%/help/away
+%%DATADIR%%/help/basics
+%%DATADIR%%/help/beep
+%%DATADIR%%/help/bind/backspace
+%%DATADIR%%/help/bind/backward_character
+%%DATADIR%%/help/bind/backward_history
+%%DATADIR%%/help/bind/backward_word
+%%DATADIR%%/help/bind/beginning_of_line
+%%DATADIR%%/help/bind/bind
+%%DATADIR%%/help/bind/clear_screen
+%%DATADIR%%/help/bind/command_completion
+%%DATADIR%%/help/bind/delete_character
+%%DATADIR%%/help/bind/delete_next_word
+%%DATADIR%%/help/bind/delete_previous_word
+%%DATADIR%%/help/bind/end_of_line
+%%DATADIR%%/help/bind/enter_digraph
+%%DATADIR%%/help/bind/enter_menu
+%%DATADIR%%/help/bind/erase_line
+%%DATADIR%%/help/bind/erase_to_beg_of_line
+%%DATADIR%%/help/bind/erase_to_end_of_line
+%%DATADIR%%/help/bind/examples
+%%DATADIR%%/help/bind/forward_character
+%%DATADIR%%/help/bind/forward_history
+%%DATADIR%%/help/bind/forward_word
+%%DATADIR%%/help/bind/help_character
+%%DATADIR%%/help/bind/keys
+%%DATADIR%%/help/bind/meta1_character
+%%DATADIR%%/help/bind/meta2_character
+%%DATADIR%%/help/bind/meta3_character
+%%DATADIR%%/help/bind/meta4_character
+%%DATADIR%%/help/bind/meta5_character
+%%DATADIR%%/help/bind/meta6_character
+%%DATADIR%%/help/bind/meta7_character
+%%DATADIR%%/help/bind/meta8_character
+%%DATADIR%%/help/bind/next_window
+%%DATADIR%%/help/bind/nothing
+%%DATADIR%%/help/bind/parse_command
+%%DATADIR%%/help/bind/previous_window
+%%DATADIR%%/help/bind/quit_irc
+%%DATADIR%%/help/bind/quote_character
+%%DATADIR%%/help/bind/refresh_inputline
+%%DATADIR%%/help/bind/refresh_screen
+%%DATADIR%%/help/bind/scroll_backward
+%%DATADIR%%/help/bind/scroll_end
+%%DATADIR%%/help/bind/scroll_forward
+%%DATADIR%%/help/bind/scroll_start
+%%DATADIR%%/help/bind/self_insert
+%%DATADIR%%/help/bind/send_line
+%%DATADIR%%/help/bind/stop_irc
+%%DATADIR%%/help/bind/switch_channels
+%%DATADIR%%/help/bind/toggle_insert_mode
+%%DATADIR%%/help/bind/toggle_stop_screen
+%%DATADIR%%/help/bind/transpose_characters
+%%DATADIR%%/help/bind/type_text
+%%DATADIR%%/help/bind/unstop_all_windows
+%%DATADIR%%/help/bind/yank_from_cutbuffer
+%%DATADIR%%/help/brick
+%%DATADIR%%/help/bye
+%%DATADIR%%/help/cat
+%%DATADIR%%/help/cd
+%%DATADIR%%/help/channel
+%%DATADIR%%/help/clear
+%%DATADIR%%/help/commands
+%%DATADIR%%/help/comment
+%%DATADIR%%/help/connect
+%%DATADIR%%/help/ctcp/action
+%%DATADIR%%/help/ctcp/clientinfo
+%%DATADIR%%/help/ctcp/ctcp
+%%DATADIR%%/help/ctcp/echo
+%%DATADIR%%/help/ctcp/finger
+%%DATADIR%%/help/ctcp/ping
+%%DATADIR%%/help/ctcp/time
+%%DATADIR%%/help/ctcp/userinfo
+%%DATADIR%%/help/ctcp/utc
+%%DATADIR%%/help/ctcp/version
+%%DATADIR%%/help/date
+%%DATADIR%%/help/dcc/chat
+%%DATADIR%%/help/dcc/close
+%%DATADIR%%/help/dcc/dcc
+%%DATADIR%%/help/dcc/get
+%%DATADIR%%/help/dcc/list
+%%DATADIR%%/help/dcc/raw
+%%DATADIR%%/help/dcc/rename
+%%DATADIR%%/help/dcc/send
+%%DATADIR%%/help/deop
+%%DATADIR%%/help/describe
+%%DATADIR%%/help/die
+%%DATADIR%%/help/digraph
+%%DATADIR%%/help/disconnect
+%%DATADIR%%/help/dmsg
+%%DATADIR%%/help/dquery
+%%DATADIR%%/help/echo
+%%DATADIR%%/help/encrypt
+%%DATADIR%%/help/etiquette
+%%DATADIR%%/help/eval
+%%DATADIR%%/help/exec
+%%DATADIR%%/help/exit
+%%DATADIR%%/help/expressions
+%%DATADIR%%/help/flush
+%%DATADIR%%/help/foreach
+%%DATADIR%%/help/help
+%%DATADIR%%/help/history
+%%DATADIR%%/help/hook
+%%DATADIR%%/help/icb
+%%DATADIR%%/help/if
+%%DATADIR%%/help/ignore
+%%DATADIR%%/help/info
+%%DATADIR%%/help/input
+%%DATADIR%%/help/intro
+%%DATADIR%%/help/invite
+%%DATADIR%%/help/ircii/copyright
+%%DATADIR%%/help/ison
+%%DATADIR%%/help/join
+%%DATADIR%%/help/kick
+%%DATADIR%%/help/kill
+%%DATADIR%%/help/lastlog
+%%DATADIR%%/help/leave
+%%DATADIR%%/help/links
+%%DATADIR%%/help/list
+%%DATADIR%%/help/load/2.9script
+%%DATADIR%%/help/load/action
+%%DATADIR%%/help/load/alias
+%%DATADIR%%/help/load/autoop
+%%DATADIR%%/help/load/autoquery
+%%DATADIR%%/help/load/basical
+%%DATADIR%%/help/load/bigcheese
+%%DATADIR%%/help/load/brc
+%%DATADIR%%/help/load/channel
+%%DATADIR%%/help/load/columns
+%%DATADIR%%/help/load/commander
+%%DATADIR%%/help/load/cursor
+%%DATADIR%%/help/load/dccchan
+%%DATADIR%%/help/load/deutsch
+%%DATADIR%%/help/load/disc
+%%DATADIR%%/help/load/edit
+%%DATADIR%%/help/load/english
+%%DATADIR%%/help/load/events
+%%DATADIR%%/help/load/extensions
+%%DATADIR%%/help/load/finger
+%%DATADIR%%/help/load/finger.who
+%%DATADIR%%/help/load/flood
+%%DATADIR%%/help/load/fnet
+%%DATADIR%%/help/load/functions
+%%DATADIR%%/help/load/help
+%%DATADIR%%/help/load/history
+%%DATADIR%%/help/load/icb
+%%DATADIR%%/help/load/irciihelp
+%%DATADIR%%/help/load/ircprimer
+%%DATADIR%%/help/load/kickmenu
+%%DATADIR%%/help/load/killpath
+%%DATADIR%%/help/load/kpstat
+%%DATADIR%%/help/load/list
+%%DATADIR%%/help/load/listidle
+%%DATADIR%%/help/load/load
+%%DATADIR%%/help/load/local
+%%DATADIR%%/help/load/lynx_ircrc
+%%DATADIR%%/help/load/meta1
+%%DATADIR%%/help/load/meta2
+%%DATADIR%%/help/load/msg
+%%DATADIR%%/help/load/mudlike
+%%DATADIR%%/help/load/nemesis
+%%DATADIR%%/help/load/netsplit
+%%DATADIR%%/help/load/newaway
+%%DATADIR%%/help/load/nicks
+%%DATADIR%%/help/load/oldping
+%%DATADIR%%/help/load/oper
+%%DATADIR%%/help/load/prefix
+%%DATADIR%%/help/load/recursion
+%%DATADIR%%/help/load/repeat
+%%DATADIR%%/help/load/screen
+%%DATADIR%%/help/load/service
+%%DATADIR%%/help/load/shell
+%%DATADIR%%/help/load/silent
+%%DATADIR%%/help/load/smileys
+%%DATADIR%%/help/load/suggestions
+%%DATADIR%%/help/load/tabkey
+%%DATADIR%%/help/load/time
+%%DATADIR%%/help/load/traces
+%%DATADIR%%/help/load/troy
+%%DATADIR%%/help/load/uhnotify
+%%DATADIR%%/help/load/version
+%%DATADIR%%/help/load/wallopstat
+%%DATADIR%%/help/load/whowas
+%%DATADIR%%/help/load/window
+%%DATADIR%%/help/lusers
+%%DATADIR%%/help/me
+%%DATADIR%%/help/menus
+%%DATADIR%%/help/mload
+%%DATADIR%%/help/mode
+%%DATADIR%%/help/motd
+%%DATADIR%%/help/msg
+%%DATADIR%%/help/names
+%%DATADIR%%/help/news
+%%DATADIR%%/help/newuser
+%%DATADIR%%/help/nick
+%%DATADIR%%/help/note/antiwall
+%%DATADIR%%/help/note/count
+%%DATADIR%%/help/note/deny
+%%DATADIR%%/help/note/find
+%%DATADIR%%/help/note/flag
+%%DATADIR%%/help/note/key
+%%DATADIR%%/help/note/log
+%%DATADIR%%/help/note/ls
+%%DATADIR%%/help/note/news
+%%DATADIR%%/help/note/note
+%%DATADIR%%/help/note/rm
+%%DATADIR%%/help/note/save
+%%DATADIR%%/help/note/send
+%%DATADIR%%/help/note/sent
+%%DATADIR%%/help/note/service
+%%DATADIR%%/help/note/spy
+%%DATADIR%%/help/note/stats
+%%DATADIR%%/help/note/user
+%%DATADIR%%/help/note/waitfor
+%%DATADIR%%/help/note/wall
+%%DATADIR%%/help/note/wallops
+%%DATADIR%%/help/notice
+%%DATADIR%%/help/notify
+%%DATADIR%%/help/nuser
+%%DATADIR%%/help/on/action
+%%DATADIR%%/help/on/channel_nick
+%%DATADIR%%/help/on/channel_signoff
+%%DATADIR%%/help/on/connect
+%%DATADIR%%/help/on/ctcp
+%%DATADIR%%/help/on/ctcp_reply
+%%DATADIR%%/help/on/dcc_chat
+%%DATADIR%%/help/on/dcc_list
+%%DATADIR%%/help/on/dcc_raw
+%%DATADIR%%/help/on/disconnect
+%%DATADIR%%/help/on/exec
+%%DATADIR%%/help/on/exec_errors
+%%DATADIR%%/help/on/exec_exit
+%%DATADIR%%/help/on/exec_prompt
+%%DATADIR%%/help/on/flood
+%%DATADIR%%/help/on/help
+%%DATADIR%%/help/on/hook
+%%DATADIR%%/help/on/icb_cmdout
+%%DATADIR%%/help/on/icb_error
+%%DATADIR%%/help/on/icb_status
+%%DATADIR%%/help/on/icb_who
+%%DATADIR%%/help/on/idle
+%%DATADIR%%/help/on/input
+%%DATADIR%%/help/on/invite
+%%DATADIR%%/help/on/join
+%%DATADIR%%/help/on/leave
+%%DATADIR%%/help/on/list
+%%DATADIR%%/help/on/mail
+%%DATADIR%%/help/on/mode
+%%DATADIR%%/help/on/msg
+%%DATADIR%%/help/on/msg_group
+%%DATADIR%%/help/on/names
+%%DATADIR%%/help/on/nickname
+%%DATADIR%%/help/on/note
+%%DATADIR%%/help/on/notice
+%%DATADIR%%/help/on/notify_signoff
+%%DATADIR%%/help/on/notify_signon
+%%DATADIR%%/help/on/numeric
+%%DATADIR%%/help/on/on
+%%DATADIR%%/help/on/os_signal
+%%DATADIR%%/help/on/public
+%%DATADIR%%/help/on/public_msg
+%%DATADIR%%/help/on/public_notice
+%%DATADIR%%/help/on/public_other
+%%DATADIR%%/help/on/raw_irc
+%%DATADIR%%/help/on/raw_send
+%%DATADIR%%/help/on/send_action
+%%DATADIR%%/help/on/send_dcc_chat
+%%DATADIR%%/help/on/send_msg
+%%DATADIR%%/help/on/send_notice
+%%DATADIR%%/help/on/send_public
+%%DATADIR%%/help/on/send_talk
+%%DATADIR%%/help/on/serial_numbers
+%%DATADIR%%/help/on/server_notice
+%%DATADIR%%/help/on/signoff
+%%DATADIR%%/help/on/talk
+%%DATADIR%%/help/on/timer
+%%DATADIR%%/help/on/topic
+%%DATADIR%%/help/on/wall
+%%DATADIR%%/help/on/wallop
+%%DATADIR%%/help/on/who
+%%DATADIR%%/help/on/window
+%%DATADIR%%/help/on/window_kill
+%%DATADIR%%/help/on/window_list
+%%DATADIR%%/help/on/window_swap
+%%DATADIR%%/help/oper
+%%DATADIR%%/help/parsekey
+%%DATADIR%%/help/part
+%%DATADIR%%/help/ping
+%%DATADIR%%/help/query
+%%DATADIR%%/help/quit
+%%DATADIR%%/help/quote
+%%DATADIR%%/help/rbind
+%%DATADIR%%/help/redirect
+%%DATADIR%%/help/rehash
+%%DATADIR%%/help/restart
+%%DATADIR%%/help/rules
+%%DATADIR%%/help/save
+%%DATADIR%%/help/say
+%%DATADIR%%/help/send
+%%DATADIR%%/help/sendline
+%%DATADIR%%/help/server
+%%DATADIR%%/help/servlist
+%%DATADIR%%/help/set/always_split_biggest
+%%DATADIR%%/help/set/auto_unmark_away
+%%DATADIR%%/help/set/auto_whowas
+%%DATADIR%%/help/set/background_colour
+%%DATADIR%%/help/set/beep
+%%DATADIR%%/help/set/beep_max
+%%DATADIR%%/help/set/beep_on_msg
+%%DATADIR%%/help/set/beep_when_away
+%%DATADIR%%/help/set/bind_local_dcchost
+%%DATADIR%%/help/set/bold_video
+%%DATADIR%%/help/set/channel_name_width
+%%DATADIR%%/help/set/client_information
+%%DATADIR%%/help/set/clock
+%%DATADIR%%/help/set/clock_24hour
+%%DATADIR%%/help/set/clock_alarm
+%%DATADIR%%/help/set/cmdchars
+%%DATADIR%%/help/set/colour
+%%DATADIR%%/help/set/command_mode
+%%DATADIR%%/help/set/continued_line
+%%DATADIR%%/help/set/ctcp_reply_backlog_seconds
+%%DATADIR%%/help/set/ctcp_reply_flood_size
+%%DATADIR%%/help/set/ctcp_reply_ignore_seconds
+%%DATADIR%%/help/set/dcc_block_size
+%%DATADIR%%/help/set/dcchost
+%%DATADIR%%/help/set/dccport
+%%DATADIR%%/help/set/debug
+%%DATADIR%%/help/set/decrypt_program
+%%DATADIR%%/help/set/display
+%%DATADIR%%/help/set/display_encoding
+%%DATADIR%%/help/set/eight_bit_characters
+%%DATADIR%%/help/set/encrypt_program
+%%DATADIR%%/help/set/exec_protection
+%%DATADIR%%/help/set/flood_after
+%%DATADIR%%/help/set/flood_rate
+%%DATADIR%%/help/set/flood_users
+%%DATADIR%%/help/set/flood_warning
+%%DATADIR%%/help/set/foreground_colour
+%%DATADIR%%/help/set/full_status_line
+%%DATADIR%%/help/set/help_pager
+%%DATADIR%%/help/set/help_path
+%%DATADIR%%/help/set/help_prompt
+%%DATADIR%%/help/set/help_window
+%%DATADIR%%/help/set/hide_channel_keys
+%%DATADIR%%/help/set/hide_private_channels
+%%DATADIR%%/help/set/highlight_char
+%%DATADIR%%/help/set/history
+%%DATADIR%%/help/set/history_file
+%%DATADIR%%/help/set/hold_mode
+%%DATADIR%%/help/set/hold_mode_max
+%%DATADIR%%/help/set/indent
+%%DATADIR%%/help/set/input_aliases
+%%DATADIR%%/help/set/input_encoding
+%%DATADIR%%/help/set/input_prompt
+%%DATADIR%%/help/set/input_protection
+%%DATADIR%%/help/set/insert_mode
+%%DATADIR%%/help/set/inverse_video
+%%DATADIR%%/help/set/irc_encoding
+%%DATADIR%%/help/set/irchost
+%%DATADIR%%/help/set/lastlog
+%%DATADIR%%/help/set/lastlog_level
+%%DATADIR%%/help/set/load_path
+%%DATADIR%%/help/set/log
+%%DATADIR%%/help/set/logfile
+%%DATADIR%%/help/set/mail
+%%DATADIR%%/help/set/make_notice_msg
+%%DATADIR%%/help/set/max_recursions
+%%DATADIR%%/help/set/menu
+%%DATADIR%%/help/set/minimum_servers
+%%DATADIR%%/help/set/minimum_users
+%%DATADIR%%/help/set/no_ask_nickname
+%%DATADIR%%/help/set/no_ctcp_flood
+%%DATADIR%%/help/set/notify_handler
+%%DATADIR%%/help/set/notify_level
+%%DATADIR%%/help/set/notify_on_termination
+%%DATADIR%%/help/set/novice
+%%DATADIR%%/help/set/old_encrypt_program
+%%DATADIR%%/help/set/realname
+%%DATADIR%%/help/set/same_window_only
+%%DATADIR%%/help/set/scroll
+%%DATADIR%%/help/set/scroll_lines
+%%DATADIR%%/help/set/send_ignore_msg
+%%DATADIR%%/help/set/set
+%%DATADIR%%/help/set/shell
+%%DATADIR%%/help/set/shell_flags
+%%DATADIR%%/help/set/shell_limit
+%%DATADIR%%/help/set/show_away_once
+%%DATADIR%%/help/set/show_channel_names
+%%DATADIR%%/help/set/show_end_of_msgs
+%%DATADIR%%/help/set/show_numerics
+%%DATADIR%%/help/set/show_stars
+%%DATADIR%%/help/set/show_status_all
+%%DATADIR%%/help/set/show_who_hopcount
+%%DATADIR%%/help/set/star_prefix
+%%DATADIR%%/help/set/status_away
+%%DATADIR%%/help/set/status_channel
+%%DATADIR%%/help/set/status_chanop
+%%DATADIR%%/help/set/status_clock
+%%DATADIR%%/help/set/status_format
+%%DATADIR%%/help/set/status_hold
+%%DATADIR%%/help/set/status_hold_lines
+%%DATADIR%%/help/set/status_insert
+%%DATADIR%%/help/set/status_mail
+%%DATADIR%%/help/set/status_mode
+%%DATADIR%%/help/set/status_notify
+%%DATADIR%%/help/set/status_oper
+%%DATADIR%%/help/set/status_overwrite
+%%DATADIR%%/help/set/status_query
+%%DATADIR%%/help/set/status_scrolled
+%%DATADIR%%/help/set/status_scrolled_lines
+%%DATADIR%%/help/set/status_server
+%%DATADIR%%/help/set/status_umode
+%%DATADIR%%/help/set/status_user
+%%DATADIR%%/help/set/status_voice
+%%DATADIR%%/help/set/status_window
+%%DATADIR%%/help/set/suppress_server_motd
+%%DATADIR%%/help/set/tab
+%%DATADIR%%/help/set/tab_max
+%%DATADIR%%/help/set/underline_video
+%%DATADIR%%/help/set/user_information
+%%DATADIR%%/help/set/user_wallops
+%%DATADIR%%/help/set/verbose_ctcp
+%%DATADIR%%/help/set/warn_of_ignores
+%%DATADIR%%/help/set/xterm_geomoptstr
+%%DATADIR%%/help/set/xterm_options
+%%DATADIR%%/help/set/xterm_path
+%%DATADIR%%/help/signoff
+%%DATADIR%%/help/sleep
+%%DATADIR%%/help/squery
+%%DATADIR%%/help/squit
+%%DATADIR%%/help/stats
+%%DATADIR%%/help/summon
+%%DATADIR%%/help/time
+%%DATADIR%%/help/timer
+%%DATADIR%%/help/topic
+%%DATADIR%%/help/trace
+%%DATADIR%%/help/type
+%%DATADIR%%/help/userhost
+%%DATADIR%%/help/users
+%%DATADIR%%/help/version
+%%DATADIR%%/help/wait
+%%DATADIR%%/help/wallops
+%%DATADIR%%/help/which
+%%DATADIR%%/help/while
+%%DATADIR%%/help/who
+%%DATADIR%%/help/whois
+%%DATADIR%%/help/whowas
+%%DATADIR%%/help/window/add
+%%DATADIR%%/help/window/addgroup
+%%DATADIR%%/help/window/back
+%%DATADIR%%/help/window/balance
+%%DATADIR%%/help/window/bind
+%%DATADIR%%/help/window/channel
+%%DATADIR%%/help/window/create
+%%DATADIR%%/help/window/delete
+%%DATADIR%%/help/window/delgroup
+%%DATADIR%%/help/window/double
+%%DATADIR%%/help/window/goto
+%%DATADIR%%/help/window/grow
+%%DATADIR%%/help/window/hide
+%%DATADIR%%/help/window/hide_others
+%%DATADIR%%/help/window/hold_mode
+%%DATADIR%%/help/window/kill
+%%DATADIR%%/help/window/kill_others
+%%DATADIR%%/help/window/lastlog_level
+%%DATADIR%%/help/window/level
+%%DATADIR%%/help/window/list
+%%DATADIR%%/help/window/log
+%%DATADIR%%/help/window/logfile
+%%DATADIR%%/help/window/move
+%%DATADIR%%/help/window/name
+%%DATADIR%%/help/window/new
+%%DATADIR%%/help/window/next
+%%DATADIR%%/help/window/nostatus
+%%DATADIR%%/help/window/notify
+%%DATADIR%%/help/window/notify_level
+%%DATADIR%%/help/window/number
+%%DATADIR%%/help/window/pop
+%%DATADIR%%/help/window/previous
+%%DATADIR%%/help/window/prompt
+%%DATADIR%%/help/window/push
+%%DATADIR%%/help/window/query
+%%DATADIR%%/help/window/refnum
+%%DATADIR%%/help/window/remove
+%%DATADIR%%/help/window/scroll
+%%DATADIR%%/help/window/server
+%%DATADIR%%/help/window/show
+%%DATADIR%%/help/window/shrink
+%%DATADIR%%/help/window/stack
+%%DATADIR%%/help/window/sticky
+%%DATADIR%%/help/window/swap
+%%DATADIR%%/help/window/unbind
+%%DATADIR%%/help/window/where
+%%DATADIR%%/help/window/window
+%%DATADIR%%/help/xecho
+%%DATADIR%%/help/xtype
+%%DATADIR%%/script/2.8script
+%%DATADIR%%/script/2.9script
+%%DATADIR%%/script/action
+%%DATADIR%%/script/alias
+%%DATADIR%%/script/autoop
+%%DATADIR%%/script/autoquery
+%%DATADIR%%/script/basical
+%%DATADIR%%/script/bigcheese
+%%DATADIR%%/script/brc
+%%DATADIR%%/script/channel
+%%DATADIR%%/script/columns
+%%DATADIR%%/script/commander
+%%DATADIR%%/script/compl.mods
+%%DATADIR%%/script/complete
+%%DATADIR%%/script/cursor
+%%DATADIR%%/script/dccchan
+%%DATADIR%%/script/default
+%%DATADIR%%/script/deutsch
+%%DATADIR%%/script/disc
+%%DATADIR%%/script/dmsg
+%%DATADIR%%/script/edit
+%%DATADIR%%/script/english
+%%DATADIR%%/script/events
+%%DATADIR%%/script/extensions
+%%DATADIR%%/script/finger
+%%DATADIR%%/script/fkeys
+%%DATADIR%%/script/flood
+%%DATADIR%%/script/fnet
+%%DATADIR%%/script/functions
+%%DATADIR%%/script/global
+%%DATADIR%%/script/help
+%%DATADIR%%/script/history
+%%DATADIR%%/script/history-match
+%%DATADIR%%/script/icb
+%%DATADIR%%/script/imap
+%%DATADIR%%/script/ircIIhelp
+%%DATADIR%%/script/ircprimer
+%%DATADIR%%/script/ircrc
+%%DATADIR%%/script/kickmenu
+%%DATADIR%%/script/killpath
+%%DATADIR%%/script/kpstat
+%%DATADIR%%/script/list
+%%DATADIR%%/script/listidle
+%%DATADIR%%/script/log
+%%DATADIR%%/script/lynx_ircrc
+%%DATADIR%%/script/meta1
+%%DATADIR%%/script/meta2
+%%DATADIR%%/script/msg
+%%DATADIR%%/script/mudlike
+%%DATADIR%%/script/multichan
+%%DATADIR%%/script/nemesis
+%%DATADIR%%/script/netsplit
+%%DATADIR%%/script/newaway
+%%DATADIR%%/script/newformat
+%%DATADIR%%/script/nicks
+%%DATADIR%%/script/nocolour
+%%DATADIR%%/script/oldping
+%%DATADIR%%/script/oper
+%%DATADIR%%/script/otherstatus
+%%DATADIR%%/script/ping
+%%DATADIR%%/script/prefix
+%%DATADIR%%/script/recursion
+%%DATADIR%%/script/redirx
+%%DATADIR%%/script/repeat
+%%DATADIR%%/script/screen
+%%DATADIR%%/script/service
+%%DATADIR%%/script/shell
+%%DATADIR%%/script/silent
+%%DATADIR%%/script/smileys
+%%DATADIR%%/script/tabkey
+%%DATADIR%%/script/time
+%%DATADIR%%/script/times
+%%DATADIR%%/script/traces
+%%DATADIR%%/script/troy
+%%DATADIR%%/script/uhnotify
+%%DATADIR%%/script/undernet
+%%DATADIR%%/script/version
+%%DATADIR%%/script/voice
+%%DATADIR%%/script/wallopstat
+%%DATADIR%%/script/whowas
+%%DATADIR%%/script/window
+@dirrm %%DATADIR%%/script
+@dirrm %%DATADIR%%/help/alias
+@dirrm %%DATADIR%%/help/bind
+@dirrm %%DATADIR%%/help/ctcp
+@dirrm %%DATADIR%%/help/dcc
+@dirrm %%DATADIR%%/help/on
+@dirrm %%DATADIR%%/help/load
+@dirrm %%DATADIR%%/help/note
+@dirrm %%DATADIR%%/help/set
+@dirrm %%DATADIR%%/help/window
+@dirrm %%DATADIR%%/help/ircii
+@dirrm %%DATADIR%%/help
+@dirrm %%DATADIR%%