aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordb <db@FreeBSD.org>2013-02-05 10:41:24 +0800
committerdb <db@FreeBSD.org>2013-02-05 10:41:24 +0800
commit205c0ebe6809c713419858f72b826c5340a92a8a (patch)
tree41f92e12fc5cef021969d535e26264bc9d5498ea
parent072636500e3bab50d370bdbc29a04f2f3961c757 (diff)
downloadfreebsd-ports-gnome-205c0ebe6809c713419858f72b826c5340a92a8a.tar.gz
freebsd-ports-gnome-205c0ebe6809c713419858f72b826c5340a92a8a.tar.zst
freebsd-ports-gnome-205c0ebe6809c713419858f72b826c5340a92a8a.zip
- Update to ircd-hybrid 8.0.4
PR: ports/175085 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com>
-rw-r--r--irc/ircd-hybrid/Makefile44
-rw-r--r--irc/ircd-hybrid/distinfo4
-rw-r--r--irc/ircd-hybrid/files/patch-Makefile.in11
-rw-r--r--irc/ircd-hybrid/files/patch-configure107
-rw-r--r--irc/ircd-hybrid/files/patch-contrib-help_Makefile.in35
-rw-r--r--irc/ircd-hybrid/files/patch-contrib_Makefile.in11
-rw-r--r--irc/ircd-hybrid/files/patch-help_Makefile.in41
-rw-r--r--irc/ircd-hybrid/files/patch-include_defaults.h31
-rw-r--r--irc/ircd-hybrid/files/patch-include_setup.h.in25
-rw-r--r--irc/ircd-hybrid/files/patch-messages_Makefile.in19
-rw-r--r--irc/ircd-hybrid/files/patch-modules_Makefile.in13
-rw-r--r--irc/ircd-hybrid/files/patch-modules_m_help.c11
-rw-r--r--irc/ircd-hybrid/files/patch-src_Makefile.in20
-rw-r--r--irc/ircd-hybrid/pkg-plist543
14 files changed, 273 insertions, 642 deletions
diff --git a/irc/ircd-hybrid/Makefile b/irc/ircd-hybrid/Makefile
index 851cd720d547..a97642df383d 100644
--- a/irc/ircd-hybrid/Makefile
+++ b/irc/ircd-hybrid/Makefile
@@ -1,12 +1,9 @@
-# New ports collection makefile for: ircd-hybrid
-# Date Created: 2001-10-07
-# Whom: David Taylor <davidt@yadt.co.uk>
-#
+# Created by: David Taylor <davidt@yadt.co.uk>
# $FreeBSD$
#
PORTNAME= ircd-hybrid
-PORTVERSION= 7.2.1
+PORTVERSION= 8.0.4
CATEGORIES= irc ipv6
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .tgz
@@ -15,9 +12,9 @@ MAINTAINER= db@FreeBSD.org
COMMENT= A fast irc daemon with a number of new features
MAN8= ircd.8
+INSTALL_IGNORES= ircu-* ircd-rat* charby*
USE_GMAKE= yes
-USE_CSTD= gnu89
GNU_CONFIGURE= yes
USERS= ircd
@@ -32,12 +29,9 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION}
#
# PREFIX - Where to install ircd-hybrid. Default is /usr/local
# WITH_OPENSSL - Enable openssl. Allows use of CHALLENGE and encrypted links.
-# WITHOUT_SHARED_MODULES - Disable shared modules. More secure but reduces flexability.
# WITHOUT_ASSERT - Disable parts of the debugging code.
-# WITH_SMALL_NET - Tunes the memory allocation for small networks.
# WITH_HALFOPS - Enable halfops on the server.
# NICKLEN - Nick length. Default is 9. Must be consistant across the network.
-# MAXCLIENTS - Set this to the maximum number of clients supported by this server. Default is 200
.if defined(PREFIX)
CONFIGURE_ARGS+= --prefix=${PREFIX}
@@ -52,35 +46,18 @@ CONFIGURE_ARGS+= --enable-openssl=${OPENSSLBASE}
CONFIGURE_ARGS+= --enable-halfops
.endif
-.if defined(WITHOUT_SHARED_MODULES)
-CONFIGURE_ARGS+= --disable-shared-modules
-PLIST_SUB+= SHAREDMODULES="@comment "
-.else
-PLIST_SUB+= SHAREDMODULES=""
-.endif
-
.if defined(WITHOUT_ASSERT)
CONFIGURE_ARGS+= --disable-assert
.endif
-.if defined(WITH_SMALL_NET)
-CONFIGURE_ARGS+= --enable-small-net
-.endif
-
.if defined(NICKLEN)
CONFIGURE_ARGS+= --with-nicklen=${NICKLEN}
.endif
-.if defined(MAXCLIENTS)
-CONFIGURE_ARGS+= --with-maxclients=${MAXCLIENTS}
-.endif
-
-CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/ircd-hybrid \
- --moduledir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}/modules \
- --automoduledir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}/modules/autoload \
- --uhelpdir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}/help/users \
- --ohelpdir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}/help/opers \
- --messagedir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}/messages \
+CONFIGURE_ARGS+= \
+ --sysconfdir=${PREFIX}/etc/ircd-hybrid \
+ --prefix=${LOCAL} \
+ --datarootdir=${PREFIX}/share/${PORTNAME}-${PORTVERSION}
pre-su-install:
${MKDIR} ${PREFIX}/etc/ircd-hybrid ${PREFIX}/share/${PORTNAME}-${PORTVERSION}
@@ -89,10 +66,9 @@ pre-su-install:
post-install:
${MKDIR} /var/run/ircd
${CHOWN} ircd:ircd /var/run/ircd
- ${INSTALL_SCRIPT} ${WRKSRC}/etc/example.conf.quick ${PREFIX}/etc/ircd-hybrid
- ${INSTALL_SCRIPT} ${WRKSRC}/etc/example.efnet.conf ${PREFIX}/etc/ircd-hybrid
- ${INSTALL_SCRIPT} ${WRKSRC}/etc/simple.conf ${PREFIX}/etc/ircd-hybrid
- @${CHOWN} ircd:ircd /var/log/ircd
+ ${INSTALL_SCRIPT} ${WRKSRC}/doc/example.quick.conf ${PREFIX}/etc/ircd-hybrid
+ ${INSTALL_SCRIPT} ${WRKSRC}/doc/example.efnet.conf ${PREFIX}/etc/ircd-hybrid
+ ${INSTALL_SCRIPT} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/ircd-hybrid
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
diff --git a/irc/ircd-hybrid/distinfo b/irc/ircd-hybrid/distinfo
index 9c594bae6505..4918ce1e4e4c 100644
--- a/irc/ircd-hybrid/distinfo
+++ b/irc/ircd-hybrid/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ircd-hybrid-7.2.1.tgz) = 66479aa1aaf6fbca79c90789e8dae1b04ffe66dbd2aba72e9906deebbb4e7938
-SIZE (ircd-hybrid-7.2.1.tgz) = 1013005
+SHA256 (ircd-hybrid-8.0.4.tgz) = f735dd9cb84cccd80ec871ee4d3ac9cee21a58eb283a72556833b7bd7081ba12
+SIZE (ircd-hybrid-8.0.4.tgz) = 1203721
diff --git a/irc/ircd-hybrid/files/patch-Makefile.in b/irc/ircd-hybrid/files/patch-Makefile.in
deleted file mode 100644
index 23b1dd366a80..000000000000
--- a/irc/ircd-hybrid/files/patch-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Fri Dec 9 00:53:00 2005
-+++ Makefile.in Sun Jan 8 23:04:59 2006
-@@ -24,7 +24,7 @@
- # Default make flags - you may want to uncomment this on a multicpu machine
- #MFLAGS = -j 4
- DEPEND_DIRS = lib modules src servlink
--BUILD_DIRS = ${DEPEND_DIRS} tools
-+BUILD_DIRS = ${DEPEND_DIRS} tools contrib messages
- INSTALL_DIRS = ${BUILD_DIRS} etc doc help
- CLEAN_DIRS = ${BUILD_DIRS} contrib
- # Anywhere that we can make install, we obviously can rm -f Makefile
diff --git a/irc/ircd-hybrid/files/patch-configure b/irc/ircd-hybrid/files/patch-configure
deleted file mode 100644
index 8aa5a37f4169..000000000000
--- a/irc/ircd-hybrid/files/patch-configure
+++ /dev/null
@@ -1,107 +0,0 @@
---- configure.orig Fri Dec 9 00:53:00 2005
-+++ configure Mon Jan 9 03:11:02 2006
-@@ -351,6 +351,12 @@
- oldincludedir='/usr/include'
- infodir='${prefix}/info'
- mandir='${prefix}/man'
-+moduledir='${prefix}/modules'
-+automoduledir='${prefix}/modules/autoload'
-+uhelpdir='${prefix}/help/users'
-+ohelpdir='${prefix}/help/opers'
-+messagedir='${prefix}/messages'
-+logsdir='/var/log/ircd'
-
- ac_prev=
- for ac_option
-@@ -479,6 +485,24 @@
- -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
- mandir=$ac_optarg ;;
-
-+ -moduledir=* | --moduledir=*)
-+ moduledir=$ac_optarg ;;
-+
-+ -automoduledir=* | --automoduledir=*)
-+ automoduledir=$ac_optarg ;;
-+
-+ -uhelpdir=* | --uhelpdir=*)
-+ uhelpdir=$ac_optarg ;;
-+
-+ -ohelpdir=* | --ohelpdir=*)
-+ ohelpdir=$ac_optarg ;;
-+
-+ -logsdir=* | --logsdir=*)
-+ logsdir=$ac_optarg ;;
-+
-+ -messagedir=* | --messagedir=*)
-+ messagedir=$ac_optarg ;;
-+
- -nfp | --nfp | --nf)
- # Obsolete; use --without-fp.
- with_fp=no ;;
-@@ -670,7 +694,8 @@
-
- # Be sure to have absolute paths.
- for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
-- localstatedir libdir includedir oldincludedir infodir mandir
-+ localstatedir libdir includedir oldincludedir infodir mandir \
-+ moduledir automoduledir uhelpdir ohelpdir messagedir logsdir
- do
- eval ac_val=$`echo $ac_var`
- case $ac_val in
-@@ -10800,6 +10825,13 @@
-
- cat >>confdefs.h <<_ACEOF
- #define IRCD_PREFIX "$ac_default_prefix"
-+#define MODPATH "$moduledir/"
-+#define AUTOMODPATH "$automoduledir/"
-+#define UHPATH "$uhelpdir/"
-+#define HPATH "$ohelpdir/"
-+#define MSGPATH "$messagedir/"
-+#define LOGPATH "$logsdir"
-+#define ETCPATH "$sysconfdir"
- _ACEOF
-
-
-@@ -10810,12 +10842,19 @@
-
- cat >>confdefs.h <<_ACEOF
- #define IRCD_PREFIX "$prefix"
-+#define MODPATH "$moduledir/"
-+#define AUTOMODPATH "$automoduledir/"
-+#define UHPATH "$uhelpdir/"
-+#define HPATH "$ohelpdir/"
-+#define MSGPATH "$messagedir/"
-+#define LOGPATH "$logsdir"
-+#define ETCPATH "$sysconfdir"
- _ACEOF
-
-
- fi
-
-- ac_config_files="$ac_config_files Makefile etc/Makefile servlink/Makefile contrib/Makefile contrib/help/Makefile src/Makefile messages/Makefile modules/Makefile tools/Makefile doc/Makefile help/Makefile lib/Makefile lib/pcre/Makefile"
-+ ac_config_files="$ac_config_files Makefile etc/Makefile servlink/Makefile contrib/Makefile contrib/help/Makefile help/Makefile src/Makefile messages/Makefile modules/Makefile tools/Makefile doc/Makefile help/Makefile lib/Makefile lib/pcre/Makefile"
-
-
- cat >confcache <<\_ACEOF
-@@ -11418,6 +11457,8 @@
- s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
- s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
- s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
-+s,@UPATH@,$uhelpdir,;t t
-+s,@HPATH@,$ohelpdir,;t t
- s,@exec_prefix@,$exec_prefix,;t t
- s,@prefix@,$prefix,;t t
- s,@program_transform_name@,$program_transform_name,;t t
-@@ -11433,6 +11474,12 @@
- s,@oldincludedir@,$oldincludedir,;t t
- s,@infodir@,$infodir,;t t
- s,@mandir@,$mandir,;t t
-+s,@moduledir@,$moduledir,;t t
-+s,@automoduledir@,$automoduledir,;t t
-+s,@uhelpdir@,$uhelpdir,;t t
-+s,@ohelpdir@,$ohelpdir,;t t
-+s,@logsdir@,$logsdir,;t t
-+s,@messagedir@,$messagedir,;t t
- s,@build_alias@,$build_alias,;t t
- s,@host_alias@,$host_alias,;t t
- s,@target_alias@,$target_alias,;t t
diff --git a/irc/ircd-hybrid/files/patch-contrib-help_Makefile.in b/irc/ircd-hybrid/files/patch-contrib-help_Makefile.in
deleted file mode 100644
index 9dde0d060f5e..000000000000
--- a/irc/ircd-hybrid/files/patch-contrib-help_Makefile.in
+++ /dev/null
@@ -1,35 +0,0 @@
---- contrib/help/Makefile.in.orig Fri Dec 9 00:52:54 2005
-+++ contrib/help/Makefile.in Mon Jan 9 10:54:42 2006
-@@ -7,8 +7,8 @@
-
- prefix= @prefix@
- exec_prefix= @execprefix@
--uhelpdir= ${prefix}/help/users
--ohelpdir= ${prefix}/help/opers
-+uhelpdir= @UPATH@
-+ohelpdir= @HPATH@
-
- SYMLINKS= topic accept cmode admin names links away whowas \
- version kick who invite quit join list nick oper part \
-@@ -21,19 +21,13 @@
-
- install:
- @echo installing help files...
-- -@if test ! -d $(prefix)/help; then \
-- echo "mkdir $(prefix)/help"; \
-- mkdir $(prefix)/help; \
-- echo "mkdir $(prefix)/help/users"; \
-- mkdir $(prefix)/help/users; \
-- echo "mkdir $(prefix)/help/opers"; \
-- mkdir $(prefix)/help/opers; \
-- fi
-+ mkdir -p $(ohelpdir)
- @for help in opers/*; do \
- if [ -f $$help ]; then \
- ${INSTALL_DATA} $$help $(ohelpdir); \
- fi \
- done
-+ mkdir -p $(uhelpdir)
- @for help in users/*; do \
- if [ -f $$help ]; then \
- $(INSTALL_DATA) $$help $(uhelpdir); \
diff --git a/irc/ircd-hybrid/files/patch-contrib_Makefile.in b/irc/ircd-hybrid/files/patch-contrib_Makefile.in
deleted file mode 100644
index 4e3aed8298a8..000000000000
--- a/irc/ircd-hybrid/files/patch-contrib_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/Makefile.in.orig Fri Dec 9 00:52:55 2005
-+++ contrib/Makefile.in Sun Jan 8 23:05:43 2006
-@@ -19,7 +19,7 @@
-
- prefix = $(DESTDIR)@prefix@
-
--AUTOMODULEDIR = ${prefix}/modules
-+AUTOMODULEDIR = @automoduledir@
-
- SSL_LIBS = @SSL_LIBS@
- SSL_INCLUDES = @SSL_INCLUDES@
diff --git a/irc/ircd-hybrid/files/patch-help_Makefile.in b/irc/ircd-hybrid/files/patch-help_Makefile.in
deleted file mode 100644
index 3504cf01d96c..000000000000
--- a/irc/ircd-hybrid/files/patch-help_Makefile.in
+++ /dev/null
@@ -1,41 +0,0 @@
---- help/Makefile.in.orig Fri Dec 9 00:52:54 2005
-+++ help/Makefile.in Mon Jan 9 09:54:19 2006
-@@ -7,8 +7,8 @@
-
- prefix= @prefix@
- exec_prefix= @execprefix@
--uhelpdir= ${prefix}/help/users
--ohelpdir= ${prefix}/help/opers
-+uhelpdir= @UPATH@
-+ohelpdir= @HPATH@
-
- SYMLINKS= topic accept cmode admin names links away whowas \
- version kick who invite quit join list nick oper part \
-@@ -21,14 +21,8 @@
-
- install:
- @echo installing help files...
-- -@if test ! -d $(prefix)/help; then \
-- echo "mkdir $(prefix)/help"; \
-- mkdir $(prefix)/help; \
-- echo "mkdir $(prefix)/help/users"; \
-- mkdir $(prefix)/help/users; \
-- echo "mkdir $(prefix)/help/opers"; \
-- mkdir $(prefix)/help/opers; \
-- fi
-+ mkdir -p $(ohelpdir)
-+ mkdir -p $(uhelpdir)
- @for help in opers/*; do \
- if [ -f $$help ]; then \
- ${INSTALL_DATA} $$help $(ohelpdir); \
-@@ -38,10 +32,6 @@
- if [ -f $$help ]; then \
- $(INSTALL_DATA) $$help $(uhelpdir); \
- fi \
-- done
-- @for link in $(SYMLINKS); do \
-- rm -f $(uhelpdir)/$$link; \
-- ln -s $(ohelpdir)/$$link $(uhelpdir); \
- done
-
- distclean:
diff --git a/irc/ircd-hybrid/files/patch-include_defaults.h b/irc/ircd-hybrid/files/patch-include_defaults.h
deleted file mode 100644
index 83a3a39c2760..000000000000
--- a/irc/ircd-hybrid/files/patch-include_defaults.h
+++ /dev/null
@@ -1,31 +0,0 @@
---- include/defaults.h.orig Fri Dec 9 00:52:49 2005
-+++ include/defaults.h Mon Jan 9 00:44:02 2006
-@@ -42,19 +42,11 @@
- * BINPATH = directory for binary files
- * MSGPATH = directory for language files
- * ETCPATH = directory for configuration files
-- * LOGPATH = directory for logfiles
-- * MODPATH = directory for modules
-- * AUTOMODPATH = directory for autoloaded modules
- */
-
- /* dirs */
- #define DPATH IRCD_PREFIX
- #define BINPATH IRCD_PREFIX "/bin/"
--#define MSGPATH IRCD_PREFIX "/messages/"
--#define ETCPATH IRCD_PREFIX "/etc"
--#define LOGPATH IRCD_PREFIX "/logs"
--#define MODPATH IRCD_PREFIX "/modules/"
--#define AUTOMODPATH IRCD_PREFIX "/modules/autoload/"
-
- /* files */
- #define SPATH BINPATH "/ircd" /* ircd executable */
-@@ -70,7 +62,7 @@
- #define RKPATH ETCPATH "/rkline.conf"
- #define MPATH ETCPATH "/ircd.motd" /* MOTD file */
- #define LPATH LOGPATH "/ircd.log" /* ircd logfile */
--#define PPATH ETCPATH "/ircd.pid" /* pid file */
-+#define PPATH "/var/run/ircd/ircd.pid" /* pid file */
- #define OPATH ETCPATH "/opers.motd" /* oper MOTD file */
- #define LIPATH ETCPATH "/links.txt" /* cached links file */
-
diff --git a/irc/ircd-hybrid/files/patch-include_setup.h.in b/irc/ircd-hybrid/files/patch-include_setup.h.in
deleted file mode 100644
index 1164682bbafa..000000000000
--- a/irc/ircd-hybrid/files/patch-include_setup.h.in
+++ /dev/null
@@ -1,25 +0,0 @@
---- include/setup.h.in.orig Fri Dec 9 00:52:49 2005
-+++ include/setup.h.in Mon Jan 9 01:13:18 2006
-@@ -177,6 +177,22 @@
- /* Prefix where the ircd is installed. */
- #undef IRCD_PREFIX
-
-+/* patched in by FreeBSD port */
-+#undef MODPATH
-+
-+#undef AUTOMODPATH
-+
-+#undef UHPATH
-+
-+#undef HPATH
-+
-+#undef MSGPATH
-+
-+#undef LOGPATH
-+
-+#undef ETCPATH
-+
-+/* End of FreeBSD port patch */
- /* Size of the local client heap. */
- #undef LCLIENT_HEAP_SIZE
-
diff --git a/irc/ircd-hybrid/files/patch-messages_Makefile.in b/irc/ircd-hybrid/files/patch-messages_Makefile.in
deleted file mode 100644
index 49511d5de91f..000000000000
--- a/irc/ircd-hybrid/files/patch-messages_Makefile.in
+++ /dev/null
@@ -1,19 +0,0 @@
---- messages/Makefile.in.orig Fri Jul 8 21:52:45 2005
-+++ messages/Makefile.in Sat Jul 23 12:39:38 2005
-@@ -5,7 +5,7 @@
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- prefix = $(DESTDIR)@prefix@
--messagedir = $(prefix)/messages
-+messagedir = @messagedir@
-
- CLOBBER=@CLOBBER@
-
-@@ -21,6 +21,7 @@
- ircd-spanish.lang \
- ircd-swedish.lang
-
-+build:
- all:
-
- install:
diff --git a/irc/ircd-hybrid/files/patch-modules_Makefile.in b/irc/ircd-hybrid/files/patch-modules_Makefile.in
deleted file mode 100644
index c12da5f528ad..000000000000
--- a/irc/ircd-hybrid/files/patch-modules_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- modules/Makefile.in.orig Sat Jul 23 08:59:28 2005
-+++ modules/Makefile.in Sat Jul 23 08:58:47 2005
-@@ -23,8 +23,8 @@
-
- prefix = $(DESTDIR)@prefix@
- # Change this later! -- adrian
--moduledir = ${prefix}/modules
--automoduledir = ${moduledir}/autoload
-+moduledir = @moduledir@
-+automoduledir = @automoduledir@
-
- INCLUDES = -I../include $(SSL_INCLUDES)
- CPPFLAGS = ${INCLUDES} @CPPFLAGS@
diff --git a/irc/ircd-hybrid/files/patch-modules_m_help.c b/irc/ircd-hybrid/files/patch-modules_m_help.c
deleted file mode 100644
index 302fee91a4ce..000000000000
--- a/irc/ircd-hybrid/files/patch-modules_m_help.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/m_help.c.orig Mon Jan 9 01:33:47 2006
-+++ modules/m_help.c Mon Jan 9 01:33:51 2006
-@@ -36,8 +36,6 @@
- #include "modules.h"
- #include "irc_string.h"
-
--#define HPATH IRCD_PREFIX "/help/opers"
--#define UHPATH IRCD_PREFIX "/help/users"
- #define HELPLEN 400
-
- static void m_help(struct Client *, struct Client *, int, char *[]);
diff --git a/irc/ircd-hybrid/files/patch-src_Makefile.in b/irc/ircd-hybrid/files/patch-src_Makefile.in
deleted file mode 100644
index 6b9c0c733007..000000000000
--- a/irc/ircd-hybrid/files/patch-src_Makefile.in
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/Makefile.in.orig Thu Jul 7 21:49:02 2005
-+++ src/Makefile.in Sat Jul 23 13:14:03 2005
-@@ -22,6 +22,8 @@
- bindir = $(DESTDIR)@bindir@
- sysconfdir = $(DESTDIR)@sysconfdir@
- localstatedir = $(DESTDIR)@localstatedir@
-+logsdir = @logsdir@
-+moduledir = @moduledir@
-
- # must not have whitespace here
- CLOBBER=@CLOBBER@
-@@ -120,7 +122,7 @@
-
- install-mkdirs:
- mkdir -p $(DESTDIR)$(prefix) $(exec_prefix) $(bindir) $(sysconfdir) \
-- $(localstatedir)/logs
-+ $(logsdir)
-
- install: install-mkdirs build
- @for i in $(PROGS); do \
diff --git a/irc/ircd-hybrid/pkg-plist b/irc/ircd-hybrid/pkg-plist
index a8637db401fc..40b5a4ca1f8a 100644
--- a/irc/ircd-hybrid/pkg-plist
+++ b/irc/ircd-hybrid/pkg-plist
@@ -1,283 +1,262 @@
-bin/encspeed
-bin/ircd
bin/mkpasswd
-bin/servlink
-etc/ircd-hybrid/cresv.conf
-etc/ircd-hybrid/dline.conf
-etc/ircd-hybrid/example.conf
-etc/ircd-hybrid/example.conf.quick
-etc/ircd-hybrid/example.efnet.conf
-etc/ircd-hybrid/ircd.motd
-etc/ircd-hybrid/kline.conf
-etc/ircd-hybrid/nresv.conf
-etc/ircd-hybrid/rkline.conf
-etc/ircd-hybrid/rxline.conf
-etc/ircd-hybrid/simple.conf
-etc/ircd-hybrid/xline.conf
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/accept
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/admin
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/away
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/capab
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/capture
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/cburst
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/chghost
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/chgident
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/chgname
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/classlist
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/clearchan
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/client
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/close
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/cmode
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/connect
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/cryptlink
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ctrace
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/delspoof
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/die
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/dline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/drop
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/eob
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/error
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/etrace
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/flags
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/forcejoin
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/forcepart
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/gline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/hash
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/help
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/challenge
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/index
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/info
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/invite
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ison
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/join
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/jupe
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/kick
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/kill
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/kline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/knock
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/knockll
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/links
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/list
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/lljoin
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/llnick
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/locops
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ltrace
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/lusers
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/map
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/mkpasswd
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/modlist
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/modload
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/modrestart
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/modunload
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/motd
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/names
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/nburst
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/nick
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/notice
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ojoin
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/omotd
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/oper
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/operwall
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/opme
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/part
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/pass
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ping
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/pong
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/post
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/privmsg
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/quit
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/rehash
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/restart
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/resv
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/rkline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/rxline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/server
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/set
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/sjoin
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/spoof
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/squit
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/stats
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/svinfo
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/svsnick
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/testgecos
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/testmask
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/testline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/time
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/topic
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/trace
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/uhelp
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/umode
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/uncapture
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/undline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/ungline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/unkline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/unresv
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/unxline
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/user
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/userhost
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/users
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/version
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/wallops
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/who
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/whois
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/whowas
-share/ircd-hybrid-%%PORTVERSION%%/help/opers/xline
-share/ircd-hybrid-%%PORTVERSION%%/help/users/accept
-share/ircd-hybrid-%%PORTVERSION%%/help/users/admin
-share/ircd-hybrid-%%PORTVERSION%%/help/users/away
-share/ircd-hybrid-%%PORTVERSION%%/help/users/cmode
-share/ircd-hybrid-%%PORTVERSION%%/help/users/error
-share/ircd-hybrid-%%PORTVERSION%%/help/users/help
-share/ircd-hybrid-%%PORTVERSION%%/help/users/challenge
-share/ircd-hybrid-%%PORTVERSION%%/help/users/flags
-share/ircd-hybrid-%%PORTVERSION%%/help/users/index
-share/ircd-hybrid-%%PORTVERSION%%/help/users/info
-share/ircd-hybrid-%%PORTVERSION%%/help/users/invite
-share/ircd-hybrid-%%PORTVERSION%%/help/users/ison
-share/ircd-hybrid-%%PORTVERSION%%/help/users/join
-share/ircd-hybrid-%%PORTVERSION%%/help/users/kick
-share/ircd-hybrid-%%PORTVERSION%%/help/users/knock
-share/ircd-hybrid-%%PORTVERSION%%/help/users/links
-share/ircd-hybrid-%%PORTVERSION%%/help/users/list
-share/ircd-hybrid-%%PORTVERSION%%/help/users/lusers
-share/ircd-hybrid-%%PORTVERSION%%/help/users/motd
-share/ircd-hybrid-%%PORTVERSION%%/help/users/names
-share/ircd-hybrid-%%PORTVERSION%%/help/users/nick
-share/ircd-hybrid-%%PORTVERSION%%/help/users/notice
-share/ircd-hybrid-%%PORTVERSION%%/help/users/oper
-share/ircd-hybrid-%%PORTVERSION%%/help/users/part
-share/ircd-hybrid-%%PORTVERSION%%/help/users/pass
-share/ircd-hybrid-%%PORTVERSION%%/help/users/ping
-share/ircd-hybrid-%%PORTVERSION%%/help/users/pong
-share/ircd-hybrid-%%PORTVERSION%%/help/users/privmsg
-share/ircd-hybrid-%%PORTVERSION%%/help/users/quit
-share/ircd-hybrid-%%PORTVERSION%%/help/users/stats
-share/ircd-hybrid-%%PORTVERSION%%/help/users/time
-share/ircd-hybrid-%%PORTVERSION%%/help/users/topic
-share/ircd-hybrid-%%PORTVERSION%%/help/users/umode
-share/ircd-hybrid-%%PORTVERSION%%/help/users/user
-share/ircd-hybrid-%%PORTVERSION%%/help/users/userhost
-share/ircd-hybrid-%%PORTVERSION%%/help/users/users
-share/ircd-hybrid-%%PORTVERSION%%/help/users/version
-share/ircd-hybrid-%%PORTVERSION%%/help/users/who
-share/ircd-hybrid-%%PORTVERSION%%/help/users/whois
-share/ircd-hybrid-%%PORTVERSION%%/help/users/whowas
-share/ircd-hybrid-%%PORTVERSION%%/messages/ayb.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/custom.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-croatian.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-danish.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-dutch.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-french.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-german.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-norwegian.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-polish.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-russian.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-spanish.lang
-share/ircd-hybrid-%%PORTVERSION%%/messages/ircd-swedish.lang
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/ip_cloaking.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_accept.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_admin.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_away.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_capab.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_capture.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_cburst.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_classlist.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_clearchan.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_close.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_connect.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_cryptlink.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_ctrace.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_drop.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_encap.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_eob.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_etrace.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_flags.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_force.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_gline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_help.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_cap.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_challenge.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_change.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_hash.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_info.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_invite.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_ison.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_jupe.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_killhost.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_kline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_knock.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_links.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_list.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_lljoin.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_llnick.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_locops.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_ltrace.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_lusers.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_map.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_mkpasswd.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_motd.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_names.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_nburst.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_ojoin.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_omotd.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_operspy.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_operwall.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_oper.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_opme.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_pass.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_ping.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_pong.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_post.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_rehash.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_restart.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_resv.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_rkline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_rxline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_services.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_set.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_spoof.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_stats.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_svinfo.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_tburst.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_testline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_testmask.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_time.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_topic.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_trace.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_userhost.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_users.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_user.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_version.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_wallops.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_whois.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_whowas.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_who.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/m_xline.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_admin_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_info_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_links_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_motd_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_stats_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_stats_p_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_trace_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/autoload/spy_whois_notice.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_die.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_join.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_kick.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_kill.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_message.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_mode.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_nick.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_part.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_quit.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_server.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_sjoin.so
-share/ircd-hybrid-%%PORTVERSION%%/modules/m_squit.so
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/modules/autoload
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/modules
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/messages
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/help/users
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/help/opers
-@dirrm share/ircd-hybrid-%%PORTVERSION%%/help
-@dirrm share/ircd-hybrid-%%PORTVERSION%%
-@dirrm etc/ircd-hybrid
+bin/respond
+%%ETCDIR%%/example.conf
+%%ETCDIR%%/example.efnet.conf
+%%ETCDIR%%/example.quick.conf
+lib/ircd-hybrid/modules/autoload/m_accept.la
+lib/ircd-hybrid/modules/autoload/m_accept.so
+lib/ircd-hybrid/modules/autoload/m_admin.la
+lib/ircd-hybrid/modules/autoload/m_admin.so
+lib/ircd-hybrid/modules/autoload/m_away.la
+lib/ircd-hybrid/modules/autoload/m_away.so
+lib/ircd-hybrid/modules/autoload/m_cap.la
+lib/ircd-hybrid/modules/autoload/m_cap.so
+lib/ircd-hybrid/modules/autoload/m_capab.la
+lib/ircd-hybrid/modules/autoload/m_capab.so
+lib/ircd-hybrid/modules/autoload/m_challenge.la
+lib/ircd-hybrid/modules/autoload/m_challenge.so
+lib/ircd-hybrid/modules/autoload/m_close.la
+lib/ircd-hybrid/modules/autoload/m_close.so
+lib/ircd-hybrid/modules/autoload/m_connect.la
+lib/ircd-hybrid/modules/autoload/m_connect.so
+lib/ircd-hybrid/modules/autoload/m_dline.la
+lib/ircd-hybrid/modules/autoload/m_dline.so
+lib/ircd-hybrid/modules/autoload/m_encap.la
+lib/ircd-hybrid/modules/autoload/m_encap.so
+lib/ircd-hybrid/modules/autoload/m_eob.la
+lib/ircd-hybrid/modules/autoload/m_eob.so
+lib/ircd-hybrid/modules/autoload/m_etrace.la
+lib/ircd-hybrid/modules/autoload/m_etrace.so
+lib/ircd-hybrid/modules/autoload/m_gline.la
+lib/ircd-hybrid/modules/autoload/m_gline.so
+lib/ircd-hybrid/modules/autoload/m_globops.la
+lib/ircd-hybrid/modules/autoload/m_globops.so
+lib/ircd-hybrid/modules/autoload/m_hash.la
+lib/ircd-hybrid/modules/autoload/m_hash.so
+lib/ircd-hybrid/modules/autoload/m_help.la
+lib/ircd-hybrid/modules/autoload/m_help.so
+lib/ircd-hybrid/modules/autoload/m_info.la
+lib/ircd-hybrid/modules/autoload/m_info.so
+lib/ircd-hybrid/modules/autoload/m_invite.la
+lib/ircd-hybrid/modules/autoload/m_invite.so
+lib/ircd-hybrid/modules/autoload/m_ison.la
+lib/ircd-hybrid/modules/autoload/m_ison.so
+lib/ircd-hybrid/modules/autoload/m_kline.la
+lib/ircd-hybrid/modules/autoload/m_kline.so
+lib/ircd-hybrid/modules/autoload/m_knock.la
+lib/ircd-hybrid/modules/autoload/m_knock.so
+lib/ircd-hybrid/modules/autoload/m_links.la
+lib/ircd-hybrid/modules/autoload/m_links.so
+lib/ircd-hybrid/modules/autoload/m_list.la
+lib/ircd-hybrid/modules/autoload/m_list.so
+lib/ircd-hybrid/modules/autoload/m_locops.la
+lib/ircd-hybrid/modules/autoload/m_locops.so
+lib/ircd-hybrid/modules/autoload/m_lusers.la
+lib/ircd-hybrid/modules/autoload/m_lusers.so
+lib/ircd-hybrid/modules/autoload/m_map.la
+lib/ircd-hybrid/modules/autoload/m_map.so
+lib/ircd-hybrid/modules/autoload/m_module.la
+lib/ircd-hybrid/modules/autoload/m_module.so
+lib/ircd-hybrid/modules/autoload/m_motd.la
+lib/ircd-hybrid/modules/autoload/m_motd.so
+lib/ircd-hybrid/modules/autoload/m_names.la
+lib/ircd-hybrid/modules/autoload/m_names.so
+lib/ircd-hybrid/modules/autoload/m_oper.la
+lib/ircd-hybrid/modules/autoload/m_oper.so
+lib/ircd-hybrid/modules/autoload/m_operwall.la
+lib/ircd-hybrid/modules/autoload/m_operwall.so
+lib/ircd-hybrid/modules/autoload/m_pass.la
+lib/ircd-hybrid/modules/autoload/m_pass.so
+lib/ircd-hybrid/modules/autoload/m_ping.la
+lib/ircd-hybrid/modules/autoload/m_ping.so
+lib/ircd-hybrid/modules/autoload/m_pong.la
+lib/ircd-hybrid/modules/autoload/m_pong.so
+lib/ircd-hybrid/modules/autoload/m_post.la
+lib/ircd-hybrid/modules/autoload/m_post.so
+lib/ircd-hybrid/modules/autoload/m_rehash.la
+lib/ircd-hybrid/modules/autoload/m_rehash.so
+lib/ircd-hybrid/modules/autoload/m_restart.la
+lib/ircd-hybrid/modules/autoload/m_restart.so
+lib/ircd-hybrid/modules/autoload/m_resv.la
+lib/ircd-hybrid/modules/autoload/m_resv.so
+lib/ircd-hybrid/modules/autoload/m_services.la
+lib/ircd-hybrid/modules/autoload/m_services.so
+lib/ircd-hybrid/modules/autoload/m_set.la
+lib/ircd-hybrid/modules/autoload/m_set.so
+lib/ircd-hybrid/modules/autoload/m_stats.la
+lib/ircd-hybrid/modules/autoload/m_stats.so
+lib/ircd-hybrid/modules/autoload/m_svinfo.la
+lib/ircd-hybrid/modules/autoload/m_svinfo.so
+lib/ircd-hybrid/modules/autoload/m_svsmode.la
+lib/ircd-hybrid/modules/autoload/m_svsmode.so
+lib/ircd-hybrid/modules/autoload/m_svsnick.la
+lib/ircd-hybrid/modules/autoload/m_svsnick.so
+lib/ircd-hybrid/modules/autoload/m_tburst.la
+lib/ircd-hybrid/modules/autoload/m_tburst.so
+lib/ircd-hybrid/modules/autoload/m_testline.la
+lib/ircd-hybrid/modules/autoload/m_testline.so
+lib/ircd-hybrid/modules/autoload/m_testmask.la
+lib/ircd-hybrid/modules/autoload/m_testmask.so
+lib/ircd-hybrid/modules/autoload/m_time.la
+lib/ircd-hybrid/modules/autoload/m_time.so
+lib/ircd-hybrid/modules/autoload/m_topic.la
+lib/ircd-hybrid/modules/autoload/m_topic.so
+lib/ircd-hybrid/modules/autoload/m_trace.la
+lib/ircd-hybrid/modules/autoload/m_trace.so
+lib/ircd-hybrid/modules/autoload/m_user.la
+lib/ircd-hybrid/modules/autoload/m_user.so
+lib/ircd-hybrid/modules/autoload/m_userhost.la
+lib/ircd-hybrid/modules/autoload/m_userhost.so
+lib/ircd-hybrid/modules/autoload/m_users.la
+lib/ircd-hybrid/modules/autoload/m_users.so
+lib/ircd-hybrid/modules/autoload/m_version.la
+lib/ircd-hybrid/modules/autoload/m_version.so
+lib/ircd-hybrid/modules/autoload/m_wallops.la
+lib/ircd-hybrid/modules/autoload/m_wallops.so
+lib/ircd-hybrid/modules/autoload/m_watch.la
+lib/ircd-hybrid/modules/autoload/m_watch.so
+lib/ircd-hybrid/modules/autoload/m_who.la
+lib/ircd-hybrid/modules/autoload/m_who.so
+lib/ircd-hybrid/modules/autoload/m_whois.la
+lib/ircd-hybrid/modules/autoload/m_whois.so
+lib/ircd-hybrid/modules/autoload/m_whowas.la
+lib/ircd-hybrid/modules/autoload/m_whowas.so
+lib/ircd-hybrid/modules/autoload/m_xline.la
+lib/ircd-hybrid/modules/autoload/m_xline.so
+lib/ircd-hybrid/modules/m_die.la
+lib/ircd-hybrid/modules/m_die.so
+lib/ircd-hybrid/modules/m_error.la
+lib/ircd-hybrid/modules/m_error.so
+lib/ircd-hybrid/modules/m_join.la
+lib/ircd-hybrid/modules/m_join.so
+lib/ircd-hybrid/modules/m_kick.la
+lib/ircd-hybrid/modules/m_kick.so
+lib/ircd-hybrid/modules/m_kill.la
+lib/ircd-hybrid/modules/m_kill.so
+lib/ircd-hybrid/modules/m_message.la
+lib/ircd-hybrid/modules/m_message.so
+lib/ircd-hybrid/modules/m_mode.la
+lib/ircd-hybrid/modules/m_mode.so
+lib/ircd-hybrid/modules/m_nick.la
+lib/ircd-hybrid/modules/m_nick.so
+lib/ircd-hybrid/modules/m_part.la
+lib/ircd-hybrid/modules/m_part.so
+lib/ircd-hybrid/modules/m_quit.la
+lib/ircd-hybrid/modules/m_quit.so
+lib/ircd-hybrid/modules/m_server.la
+lib/ircd-hybrid/modules/m_server.so
+lib/ircd-hybrid/modules/m_sjoin.la
+lib/ircd-hybrid/modules/m_sjoin.so
+lib/ircd-hybrid/modules/m_squit.la
+lib/ircd-hybrid/modules/m_squit.so
+sbin/ircd
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/accept
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/admin
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/away
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/capab
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/challenge
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/close
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/cmode
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/connect
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/die
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/dline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/eob
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/error
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/etrace
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/gline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/gungline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/hash
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/help
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/index
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/info
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/invite
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/ison
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/join
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/kick
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/kill
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/kline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/knock
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/links
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/list
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/locops
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/lusers
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/map
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/module
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/motd
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/names
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/nick
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/notice
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/omotd
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/oper
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/operwall
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/part
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/pass
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/ping
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/pong
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/post
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/privmsg
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/quit
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/rehash
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/restart
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/resv
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/server
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/set
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/sjoin
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/squit
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/stats
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/svinfo
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/testgecos
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/testline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/testmask
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/time
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/topic
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/trace
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/uhelp
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/umode
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/undline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/ungline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/unkline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/unresv
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/unxline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/user
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/userhost
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/users
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/version
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/wallops
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/who
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/whois
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/whowas
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers/xline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/index
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/info
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/notice
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/privmsg
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/stats
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users/umode
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ayb.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/custom.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-brazilian_pt.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-bulgarian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-croatian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-danish.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-dutch.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-french.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-german.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-italian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-norwegian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-polish.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-romanian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-russian.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-spanish.lang
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages/ircd-swedish.lang
+@dirrm lib/ircd-hybrid/modules/autoload
+@dirrm lib/ircd-hybrid/modules
+@dirrm lib/ircd-hybrid
+@dirrm %%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/messages
+@dirrm %%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users
+@dirrm %%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/opers
+@dirrm %%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help
+@dirrm %%DATADIR%%-%%PORTVERSION%%/ircd-hybrid
+@dirrm %%DATADIR%%-%%PORTVERSION%%/help
+@dirrm %%DATADIR%%-%%PORTVERSION%%
+@dirrm %%ETCDIR%%