Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jul 2013 14:38:17 +0100 (IST)
From:      Nick Hilliard <nick@foobar.org>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/180201: port update: 
Message-ID:  <201307021338.r62DcHAq061618@pancake.netability.ie>
Resent-Message-ID: <201307021340.r62De1ZW025711@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         180201
>Category:       ports
>Synopsis:       port update:
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jul 02 13:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Nick Hilliard
>Release:        FreeBSD 9.1-RELEASE amd64
>Organization:
Network Ability Ltd
>Environment:
System: FreeBSD 9.1-RELEASE

>Description:

1. upgrade to 8.1.3
2. fix startup script daemon location
3. fix startup script pidfile
4. convert to using port OPTIONS

>How-To-Repeat:
>Fix:

diff -ur ircd-hybrid.old/Makefile ircd-hybrid/Makefile
--- ircd-hybrid.old/Makefile	2013-02-05 03:41:43.000000000 +0000
+++ ircd-hybrid/Makefile	2013-07-02 13:06:31.000000000 +0100
@@ -3,7 +3,7 @@
 #
 
 PORTNAME=	ircd-hybrid
-PORTVERSION=	8.0.4
+PORTVERSION=	8.1.3
 CATEGORIES=	irc ipv6
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 EXTRACT_SUFX=	.tgz
@@ -24,32 +24,44 @@
 SUB_FILES=	pkg-message
 PLIST_SUB+=	PORTVERSION=${PORTVERSION}
 
-#
-# User Configurable Variables
-#
-# PREFIX		- Where to install ircd-hybrid. Default is /usr/local
-# WITH_OPENSSL	- Enable openssl. Allows use of CHALLENGE and encrypted links.
-# WITHOUT_ASSERT	- Disable parts of the debugging code.
-# WITH_HALFOPS		- Enable halfops on the server.
-# NICKLEN		- Nick length. Default is 9. Must be consistant across the network.
+# Port Options
+# WITH_OPENSSL  - Enable openssl. Allows use of CHALLENGE and encrypted links.
+# WITHOUT_ASSERT        - Disable parts of the debugging code.
+# WITH_HALFOPS          - Enable halfops on the server.
 
-.if defined(PREFIX)
-CONFIGURE_ARGS+=	--prefix=${PREFIX}
-.endif
+OPTIONS_DEFINE=	OPENSSL HALFOPS ASSERT
+OPTIONS_DEFAULT=OPENSSL
+
+OPENSSL_DESC=	Enable openssl - allows use of CHALLENGE and encrypted links
+HALFOPS_DESC=	Enable parts of the debugging code
+ASSERT_DESC=	Enable halfops on the server
+
+.include <bsd.port.options.mk>
 
-.if defined(WITH_OPENSSL)
+.if ${PORT_OPTIONS:MOPENSSL}
 USE_OPENSSL=	yes
 CONFIGURE_ARGS+=	--enable-openssl=${OPENSSLBASE}
 .endif
 
-.if defined(WITH_HALFOPS)
+.if ${PORT_OPTIONS:MHALFOPS}
 CONFIGURE_ARGS+=	--enable-halfops
 .endif
 
-.if defined(WITHOUT_ASSERT)
+.if ${PORT_OPTIONS:MASSERT}
+CONFIGURE_ARGS+=	--enable-assert
+.else
 CONFIGURE_ARGS+=	--disable-assert
 .endif
 
+# User Configurable Variables
+#
+# PREFIX		- Where to install ircd-hybrid. Default is /usr/local
+# NICKLEN		- Nick length. Default is 9. Must be consistant across the network.
+
+.if defined(PREFIX)
+CONFIGURE_ARGS+=	--prefix=${PREFIX}
+.endif
+
 .if defined(NICKLEN)
 CONFIGURE_ARGS+=	--with-nicklen=${NICKLEN}
 .endif
@@ -64,11 +76,9 @@
 	${MKDIR} ${PREFIX}/share/${PORTNAME}-${PORTVERSION}/help/
 
 post-install:
-	${MKDIR} /var/run/ircd
-	${CHOWN} ircd:ircd /var/run/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
+	${MKDIR} /var/run/ircd /var/log/ircd
+	${CHOWN} ircd:ircd /var/run/ircd /var/log/ircd
+	${INSTALL_SCRIPT} ${WRKSRC}/doc/reference.conf ${PREFIX}/etc/ircd-hybrid
 	@${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.mk>
diff -ur ircd-hybrid.old/distinfo ircd-hybrid/distinfo
--- ircd-hybrid.old/distinfo	2013-02-05 03:41:43.000000000 +0000
+++ ircd-hybrid/distinfo	2013-07-02 13:21:04.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (ircd-hybrid-8.0.4.tgz) = f735dd9cb84cccd80ec871ee4d3ac9cee21a58eb283a72556833b7bd7081ba12
-SIZE (ircd-hybrid-8.0.4.tgz) = 1203721
+SHA256 (ircd-hybrid-8.1.3.tgz) = ea1efec0ab55e5f77282dad9e27b25a79090bac82b87d8282135f37733fe356b
+SIZE (ircd-hybrid-8.1.3.tgz) = 1127868
diff -ur ircd-hybrid.old/files/ircd-hybrid.in ircd-hybrid/files/ircd-hybrid.in
--- ircd-hybrid.old/files/ircd-hybrid.in	2012-11-17 05:58:28.000000000 +0000
+++ ircd-hybrid/files/ircd-hybrid.in	2013-07-02 14:14:11.000000000 +0100
@@ -16,17 +16,18 @@
 name="ircd_hybrid"
 rcvar=ircd_hybrid_enable
 
-command=/usr/local/bin/ircd
-pidfile=/var/run/ircd/ircd.pid
-required_files=/usr/local/etc/ircd-hybrid/ircd.conf
+command=/usr/local/sbin/ircd
 
 start_precmd=pid_touch
 stop_postcmd=pid_rm
 
-[ -z "$ircd_hybrid_enable" ] && ircd_hybrid_enable=NO
-[ -z "$ircd_hybrid_user" ] && ircd_hybrid_user=ircd
+load_rc_config ${name}
 
-load_rc_config $name
+pidfile=${ircd_hybrid_pidfile-"/var/run/ircd/ircd.pid"}
+: ${ircd_hybrid_enable:="NO"}
+: ${ircd_hybrid_user:="ircd"}
+: ${ircd_hybrid_config:="/usr/local/etc/ircd-hybrid/ircd.conf"}
+: ${ircd_hybrid_flags=" -pidfile ${pidfile}"}
 
 pid_touch ()
 {
diff -ur ircd-hybrid.old/pkg-plist ircd-hybrid/pkg-plist
--- ircd-hybrid.old/pkg-plist	2013-02-05 03:41:43.000000000 +0000
+++ ircd-hybrid/pkg-plist	2013-07-02 13:20:54.000000000 +0100
@@ -1,8 +1,6 @@
 bin/mkpasswd
 bin/respond
-%%ETCDIR%%/example.conf
-%%ETCDIR%%/example.efnet.conf
-%%ETCDIR%%/example.quick.conf
+%%ETCDIR%%/reference.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
@@ -13,6 +11,8 @@
 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_certfp.la
+lib/ircd-hybrid/modules/autoload/m_certfp.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
@@ -93,10 +93,6 @@
 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
@@ -115,6 +111,8 @@
 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_webirc.la
+lib/ircd-hybrid/modules/autoload/m_webirc.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
@@ -150,111 +148,80 @@
 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
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/accept
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/admin
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/away
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/capab
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/challenge
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/close
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/cmode
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/connect
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/die
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/dline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/eob
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/error
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/etrace
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/gline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/gungline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/hash
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/help
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/index
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/info
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/invite
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/ison
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/join
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/kick
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/kill
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/kline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/knock
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/links
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/list
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/locops
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/lusers
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/map
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/module
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/motd
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/names
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/nick
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/notice
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/oper
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/operwall
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/part
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/pass
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/ping
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/pong
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/post
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/privmsg
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/quit
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/rehash
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/restart
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/resv
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/server
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/set
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/sjoin
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/squit
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/stats
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/svinfo
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/time
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/topic
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/trace
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/umode
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/undline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/unkline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/unresv
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/unxline
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/user
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/userhost
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/users
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/version
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/wallops
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/who
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/whois
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/whowas
+%%DATADIR%%-%%PORTVERSION%%/ircd-hybrid/help/xline
 @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
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307021338.r62DcHAq061618>