View | Details | Raw Unified | Return to bug 125106
Collapse All | Expand All

(-)ircd-ratbox-devel/Makefile (-4 / +69 lines)
Lines 8-14 Link Here
8
8
9
PORTNAME=	ircd-ratbox
9
PORTNAME=	ircd-ratbox
10
#PORTVERSION=	3.0.0
10
#PORTVERSION=	3.0.0
11
DISTVERSION=	3.0.0beta5
11
DISTVERSION=	3.0.0beta7
12
CATEGORIES=	irc ipv6
12
CATEGORIES=	irc ipv6
13
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/testing/	\
13
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/testing/	\
14
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/testing/	\
14
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/testing/	\
Lines 25-31 Link Here
25
USE_BZIP2=	yes
25
USE_BZIP2=	yes
26
#MAN8=		ircd.8
26
#MAN8=		ircd.8
27
USE_RC_SUBR=	ircd-ratbox.sh
27
USE_RC_SUBR=	ircd-ratbox.sh
28
#USE_SQLITE=	3
28
USE_SQLITE=	3
29
USE_PERL5_BUILD=	yes
29
USE_LDCONFIG=	${PREFIX}/lib/ircd-ratbox
30
USE_LDCONFIG=	${PREFIX}/lib/ircd-ratbox
30
31
31
LOGDIR?=	/var/log/${PORTNAME}
32
LOGDIR?=	/var/log/${PORTNAME}
Lines 111-120 Link Here
111
	@${ECHO_MSG} "This port has additional options:"
112
	@${ECHO_MSG} "This port has additional options:"
112
	@${ECHO_MSG} "    NICKLEN     [default 9, max 50]    - Max nick length on server"
113
	@${ECHO_MSG} "    NICKLEN     [default 9, max 50]    - Max nick length on server"
113
	@${ECHO_MSG} ""
114
	@${ECHO_MSG} ""
115
	@${ECHO_MSG} "    SERVER_NAME [default 'services.ircd-ratbox.org'] - Name of services"
116
	@${ECHO_MSG} "    USER_SERV   [default 'USERSERV'] - Name of user registration service"
117
	@${ECHO_MSG} "    CHAN_SERV   [default 'CHANSERV'] - Name of channel registration serv'"
118
	@${ECHO_MSG} "    NICK_SERV   [default 'NICKSERV'] - Name of nickname registration serv'"
119
	@${ECHO_MSG} "    ALIS_SERV   [default 'ALIS'] - Name of channel list service"
120
	@${ECHO_MSG} "    OPER_BOT    [default 'OPERBOT'] - Name of operbot service"
121
	@${ECHO_MSG} "    OPER_SERV   [default 'OPERSERV'] - Name of oper command service"
122
	@${ECHO_MSG} "    JUPE_SERV   [default 'JUPESERV'] - Name of jupe service"
123
	@${ECHO_MSG} "    GLOBAL_SERV [default 'GLOBAL'] - Name of global announce service"
124
	@${ECHO_MSG} ""
114
	@${ECHO_MSG} "Press CTRL+C now if you wish to set them."
125
	@${ECHO_MSG} "Press CTRL+C now if you wish to set them."
115
	@${ECHO_MSG} ""
126
	@${ECHO_MSG} ""
116
127
117
post-patch:
128
pre-build:
118
	@${REINPLACE_CMD} -e "s#-O2##" ${WRKSRC}/configure
129
	@${REINPLACE_CMD} -e "s#-O2##" ${WRKSRC}/configure
119
	@${REINPLACE_CMD} -e "s#%%PREFIX%%#${PREFIX}#g"		  \
130
	@${REINPLACE_CMD} -e "s#%%PREFIX%%#${PREFIX}#g"		  \
120
			  ${WRKSRC}/doc/example.conf		  \
131
			  ${WRKSRC}/doc/example.conf		  \
Lines 124-134 Link Here
124
				${WRKSRC}/doc/example.efnet.conf
135
				${WRKSRC}/doc/example.efnet.conf
125
	@${REINPLACE_CMD} -e "s#%%RUNDIR%%#${RUNDIR}#g" ${WRKSRC}/include/config.h
136
	@${REINPLACE_CMD} -e "s#%%RUNDIR%%#${RUNDIR}#g" ${WRKSRC}/include/config.h
126
	@${REINPLACE_CMD} -e "s#%%DBDIR%%#${DBDIR}#g" ${WRKSRC}/include/config.h
137
	@${REINPLACE_CMD} -e "s#%%DBDIR%%#${DBDIR}#g" ${WRKSRC}/include/config.h
138
	@${REINPLACE_CMD} -e "s#%%WRKSRC%%#${WRKSRC}#g" ${WRKSRC}/contrib/ircd-shortcut.pl
139
140
#-- ircd-shortcut.pl ratbox-services commands --------------------------------------
141
142
.if defined(SERVER_NAME)
143
	@${REINPLACE_CMD} -e "s#services.ircd-ratbox.org#${SERVER_NAME}#"       \
144
	${WRKSRC}/contrib/ircd-shortcut.pl
145
.endif
146
.if defined(USER_SERV)
147
	@${REINPLACE_CMD} -e "s#USERSERV#${USER_SERV}#" \
148
	${WRKSRC}/contrib/ircd-shortcut.pl
149
.endif
150
.if defined(CHAN_SERV)
151
	@${REINPLACE_CMD} -e "s#CHANSERV#${CHAN_SERV}#" \
152
	${WRKSRC}/contrib/ircd-shortcut.pl
153
.endif
154
.if defined(NICK_SERV)
155
	@${REINPLACE_CMD} -e "s#NICKSERV#${NICK_SERV}#" \
156
	${WRKSRC}/contrib/ircd-shortcut.pl
157
.endif
158
.if defined(ALIS_SERV)
159
	@${REINPLACE_CMD} -e "s#ALIS#${ALIS_SERV}#"     \
160
	${WRKSRC}/contrib/ircd-shortcut.pl
161
.endif
162
.if defined(OPER_BOT)
163
	@${REINPLACE_CMD} -e "s#OPERBOT#${OPER_BOT}#"   \
164
	${WRKSRC}/contrib/ircd-shortcut.pl
165
.endif
166
.if defined(OPER_SERV)
167
	@${REINPLACE_CMD} -e "s#OPERSERV#${OPER_SERV}#" \
168
	${WRKSRC}/contrib/ircd-shortcut.pl
169
.endif
170
.if defined(JUPE_SERV)
171
	@${REINPLACE_CMD} -e "s#JUPESERV#${JUPE_SERV}#" \
172
	${WRKSRC}/contrib/ircd-shortcut.pl
173
.endif
174
.if defined(GLOBAL_SERV)
175
	@${REINPLACE_CMD} -e "s#GLOBAL#${GLOBAL_SERV}#" \
176
	${WRKSRC}/contrib/ircd-shortcut.pl
177
.endif
178
179
#------ Execute ircd-shortcut perl script to generate the .c file. -----
180
	@${ECHO_MSG} "Executing ircd-shortcut.pl for ircd-shortcuts generation."
181
	${PERL} ${WRKSRC}/contrib/ircd-shortcut.pl
127
182
128
post-build:
183
post-build:
129
	@cd ${INSTALL_WRKSRC}/contrib && ${SETENV} ${MAKE_ENV} ${MAKE} \
184
	@cd ${INSTALL_WRKSRC}/contrib && ${SETENV} ${MAKE_ENV} ${MAKE} \
130
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS}
185
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS}
131
186
187
# ----- Need to build the m_rsshortcut.so module for ircd-shortcut.pl ----
188
	@${ECHO_MSG} "Building m_rsshortcut.la for ircd-shortcuts."
189
	@cd ${INSTALL_WRKSRC}/contrib && ${SETENV} ${MAKE_ENV} ${MAKE} \
190
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} m_rsshortcut.la
191
132
pre-su-install:
192
pre-su-install:
133
	@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
193
	@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
134
	${MKDIR}  ${PREFIX}/etc/${PORTNAME}
194
	${MKDIR}  ${PREFIX}/etc/${PORTNAME}
Lines 144-152 Link Here
144
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install
204
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install
145
	${INSTALL_DATA} ${WRKSRC}/doc/ircd.motd ${PREFIX}/etc/${PORTNAME}/ircd.motd.sample
205
	${INSTALL_DATA} ${WRKSRC}/doc/ircd.motd ${PREFIX}/etc/${PORTNAME}/ircd.motd.sample
146
	${INSTALL_DATA} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/${PORTNAME}/ircd.conf.sample
206
	${INSTALL_DATA} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/${PORTNAME}/ircd.conf.sample
147
	${INSTALL_DATA} ${WRKSRC}/doc/example.efnet.conf ${PREFIX}/etc/${PORTNAME}/ircd-efnet.conf.sample
207
#	${INSTALL_DATA} ${WRKSRC}/doc/example.efnet.conf ${PREFIX}/etc/${PORTNAME}/ircd-efnet.conf.sample
148
	${INSTALL_DATA} ${WRKSRC}/doc/genssl.sh ${PREFIX}/etc/${PORTNAME}/genssl.sh
208
	${INSTALL_DATA} ${WRKSRC}/doc/genssl.sh ${PREFIX}/etc/${PORTNAME}/genssl.sh
149
209
210
# ----- We need to install the shortcut.pl module ----
211
	@${ECHO_MSG} "Executing install-mod.sh for ircd-shortcuts module installation."
212
	${SH} ${WRKSRC}/install-mod.sh ${WRKSRC}/contrib/m_rsshortcut.la \
213
		${PREFIX}/lib/${PORTNAME}/modules/contrib
214
150
	@if [ ! -f ${PREFIX}/etc/${PORTNAME}/ircd.conf ]; then \
215
	@if [ ! -f ${PREFIX}/etc/${PORTNAME}/ircd.conf ]; then \
151
		${ECHO} "Installing default configuration file."; \
216
		${ECHO} "Installing default configuration file."; \
152
		${CP} -p ${PREFIX}/etc/${PORTNAME}/ircd.conf.sample ${PREFIX}/etc/${PORTNAME}/ircd.conf ; \
217
		${CP} -p ${PREFIX}/etc/${PORTNAME}/ircd.conf.sample ${PREFIX}/etc/${PORTNAME}/ircd.conf ; \
(-)ircd-ratbox-devel/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (ircd-ratbox-3.0.0beta5.tar.bz2) = edb1aad622ad6312144818311ad8d2c8
1
MD5 (ircd-ratbox-3.0.0beta7.tar.bz2) = 7fd345c89c17c078dcbc2258a3a78710
2
SHA256 (ircd-ratbox-3.0.0beta5.tar.bz2) = c5270090e5d034ac8c5a874e52c6ec586e93393dcd9456eb35d3e9fa95517ea2
2
SHA256 (ircd-ratbox-3.0.0beta7.tar.bz2) = 5791ea30da68c4401f1427888e112679b5a96ac21654e9f1649f4ba79f19c455
3
SIZE (ircd-ratbox-3.0.0beta5.tar.bz2) = 1966643
3
SIZE (ircd-ratbox-3.0.0beta7.tar.bz2) = 1982786
(-)ircd-ratbox-devel/files/patch-contrib_ircd-shortcut.pl (+11 lines)
Line 0 Link Here
1
--- ./contrib/ircd-shortcut.pl.orig	2008-06-29 14:05:58.000000000 +0100
2
+++ ./contrib/ircd-shortcut.pl	2008-06-29 14:07:11.000000000 +0100
3
@@ -36,7 +36,7 @@
4
 ######################################
5
 
6
 
7
-open(FILE, '>', 'm_rsshortcut.c');
8
+open(FILE, '>', '%%WRKSRC%%/contrib/m_rsshortcut.c');
9
 
10
 print FILE <<".EOF.";
11
 /* m_rsshortcut.c
(-)ircd-ratbox-devel/files/patch-doc_Makefile.in (-1 / +1 lines)
Lines 1-5 Link Here
1
--- ./doc/Makefile.in.orig	2008-04-23 20:59:46.000000000 +0100
1
--- ./doc/Makefile.in.orig	2008-04-23 20:59:46.000000000 +0100
2
+++ ./doc/Makefile.in	2008-06-18 14:31:34.000000000 +0100
2
+++ ./doc/Makefile.in	2008-06-29 14:29:39.000000000 +0100
3
@@ -43,24 +43,6 @@
3
@@ -43,24 +43,6 @@
4
 	fi
4
 	fi
5
 
5
 
(-)ircd-ratbox-devel/files/patch-doc_example.conf (-10 / +10 lines)
Lines 1-23 Link Here
1
--- ./doc/example.conf.orig	Mon Mar 10 20:28:36 2008
1
--- ./doc/example.conf.orig	2008-06-18 18:49:53.000000000 +0100
2
+++ ./doc/example.conf	Tue Apr 22 02:23:42 2008
2
+++ ./doc/example.conf	2008-06-29 14:39:37.000000000 +0100
3
@@ -93,13 +93,13 @@
3
@@ -88,13 +88,13 @@
4
 	default_max_clients = 10000;
4
 	default_max_clients = 10000;
5
 
5
 
6
 	/* ssl_private_key: our ssl private key */
6
 	/* ssl_private_key: our ssl private key */
7
-        ssl_private_key = "etc/test.key";
7
-        ssl_private_key = "etc/test.key";
8
+        ssl_private_key = "/usr/local/etc/ssl/test.key";
8
+        ssl_private_key = "%%PREFIX%%/etc/ssl/test.key";
9
 
9
 
10
 	/* ssl_cert: certificate for our ssl server */
10
 	/* ssl_cert: certificate for our ssl server */
11
-        ssl_cert = "etc/test.cert";
11
-        ssl_cert = "etc/test.cert";
12
+        ssl_cert = "/usr/local/etc/ssl/test.cert";
12
+        ssl_cert = "%%PREFIX%%/etc/ssl/test.cert";
13
 
13
 
14
 	/* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
14
 	/* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
15
-        ssl_dh_params = "etc/dh.pem";
15
-        ssl_dh_params = "etc/dh.pem";
16
+        ssl_dh_params = "/usr/local/etc/ssl/dh.pem";
16
+        ssl_dh_params = "%%PREFIX%%/etc/ssl/dh.pem";
17
 
17
 
18
 	/* ssld_count: number of ssld processes you want to start, if you have a really busy 
18
 	/* ssld_count: number of ssld processes you want to start, if you have a really busy 
19
 	 * server, using N-1 where N is the number of cpu/cpu cores you have might be useful
19
 	 * server, using N-1 where N is the number of cpu/cpu cores you have might be useful
20
@@ -132,16 +132,16 @@
20
@@ -127,16 +127,16 @@
21
 	 * - operspylog: operspy usage
21
 	 * - operspylog: operspy usage
22
 	 * - ioerrorlog: IO errors
22
 	 * - ioerrorlog: IO errors
23
 	 */
23
 	 */
Lines 44-50 Link Here
44
 };
44
 };
45
 
45
 
46
 /* class {}: contain information about classes for users (OLD Y:) */
46
 /* class {}: contain information about classes for users (OLD Y:) */
47
@@ -337,7 +337,7 @@
47
@@ -332,7 +332,7 @@
48
 	 * A password should not be defined when this is used, see 
48
 	 * A password should not be defined when this is used, see 
49
 	 * doc/challenge.txt for more information.
49
 	 * doc/challenge.txt for more information.
50
 	 */
50
 	 */
Lines 53-59 Link Here
53
 
53
 
54
 	/* umodes: the specific umodes this oper gets when they oper.
54
 	/* umodes: the specific umodes this oper gets when they oper.
55
 	 * If this is specified an oper will not be given oper_umodes
55
 	 * If this is specified an oper will not be given oper_umodes
56
@@ -946,7 +946,7 @@
56
@@ -942,7 +942,7 @@
57
 	 *
57
 	 *
58
 	 * only define if servlink is not in same directory as ircd itself.
58
 	 * only define if servlink is not in same directory as ircd itself.
59
 	 */
59
 	 */
Lines 62-68 Link Here
62
 
62
 
63
 	/* use egd: if your system does not have *random devices yet you
63
 	/* use egd: if your system does not have *random devices yet you
64
 	 * want to use OpenSSL and encrypted links, enable this.  Beware -
64
 	 * want to use OpenSSL and encrypted links, enable this.  Beware -
65
@@ -999,8 +999,9 @@
65
@@ -995,8 +995,9 @@
66
 	/* module path: paths to search for modules specified below and 
66
 	/* module path: paths to search for modules specified below and 
67
 	 * in /modload.
67
 	 * in /modload.
68
 	 */
68
 	 */
(-)ircd-ratbox-devel/files/patch-doc_example.efnet.conf (-59 lines)
Lines 1-59 Link Here
1
--- ./doc/example.efnet.conf.orig	Wed Sep  5 20:00:42 2007
2
+++ ./doc/example.efnet.conf	Tue Apr 22 02:26:59 2008
3
@@ -119,16 +119,16 @@
4
 	 * - operspylog: operspy usage
5
 	 * - ioerrorlog: IO errors
6
 	 */
7
-	fname_userlog = "logs/userlog";
8
-	#fname_fuserlog = "logs/fuserlog";
9
-	fname_operlog = "logs/operlog";
10
-	#fname_foperlog = "logs/foperlog";
11
-	fname_serverlog = "logs/serverlog";
12
-	fname_glinelog = "logs/glinelog";
13
-	#fname_klinelog = "logs/klinelog";
14
-	fname_killlog = "logs/killlog";
15
-	fname_operspylog = "logs/operspylog";
16
-	#fname_ioerrorlog = "logs/ioerror";
17
+	fname_userlog = "%%LOGDIR%%/userlog";
18
+	#fname_fuserlog = "%%LOGDIR%%/fuserlog";
19
+	fname_operlog = "%%LOGDIR%%/operlog";
20
+	#fname_foperlog = "%%LOGDIR%%/foperlog";
21
+	fname_serverlog = "%%LOGDIR%%/serverlog";
22
+	fname_glinelog = "%%LOGDIR%%/glinelog";
23
+	#fname_klinelog = "%%LOGDIR%%/klinelog";
24
+	fname_killlog = "%%LOGDIR%%/killlog";
25
+	fname_operspylog = "%%LOGDIR%%/operspylog";
26
+	#fname_ioerrorlog = "%%LOGDIR%%/ioerror";
27
 };
28
 
29
 /* class {}: contain information about classes for users (OLD Y:) */
30
@@ -316,7 +316,7 @@
31
 	 * A password should not be defined when this is used, see 
32
 	 * doc/challenge.txt for more information.
33
 	 */
34
-	#rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
35
+	#rsa_public_key_file = "%%PREFIX%%/etc/oper.pub";
36
 
37
 	/* umodes: the specific umodes this oper gets when they oper.
38
 	 * If this is specified an oper will not be given oper_umodes
39
@@ -906,7 +906,7 @@
40
 	 *
41
 	 * only define if servlink is not in same directory as ircd itself.
42
 	 */
43
-	#servlink_path = "/usr/local/ircd/bin/servlink";
44
+	#servlink_path = "%%PREFIX%%/bin/servlink";
45
 
46
 	/* use egd: if your system does not have *random devices yet you
47
 	 * want to use OpenSSL and encrypted links, enable this.  Beware -
48
@@ -956,8 +956,9 @@
49
 	/* module path: paths to search for modules specified below and 
50
 	 * in /modload.
51
 	 */
52
-	path = "/usr/local/ircd/modules";
53
-	path = "/usr/local/ircd/modules/autoload";
54
+	path = "%%PREFIX%%/lib/ircd-ratbox/modules/";
55
+	path = "%%PREFIX%%/lib/ircd-ratbox/autoload/";
56
+	path = "%%PREFIX%%/lib/ircd-ratbox/modules/contrib/";
57
 
58
 	/* module: the name of a module to load on startup/rehash */
59
 	#module = "some_module.so";
(-)ircd-ratbox-devel/files/patch-include_config.h (-5 / +5 lines)
Lines 1-11 Link Here
1
--- ./include/config.h.orig	Wed Sep  5 20:08:21 2007
1
--- ./include/config.h.orig	2008-06-09 19:32:50.000000000 +0100
2
+++ ./include/config.h	Tue Apr 22 02:20:19 2008
2
+++ ./include/config.h	2008-06-29 14:51:42.000000000 +0100
3
@@ -54,15 +54,17 @@
3
@@ -54,15 +54,17 @@
4
 #define LOGPATH LOG_DIR
4
 #define LOGPATH LOG_DIR
5
 #define UHPATH   HELP_DIR "/users"
5
 #define UHPATH   HELP_DIR "/users"
6
 #define HPATH  HELP_DIR "/opers"
6
 #define HPATH  HELP_DIR "/opers"
7
+#define RUNPATH	"/var/run/ircd-ratbox"
7
+#define RUNPATH	"%%RUNDIR%%"
8
+#define DBPTH "/var/db/ircd-ratbox"
8
+#define DBPTH "%%DBDIR%%"
9
 
9
 
10
 /* files */
10
 /* files */
11
 #define SPATH    BINPATH "/ircd"	/* ircd executable */
11
 #define SPATH    BINPATH "/ircd"	/* ircd executable */
Lines 19-22 Link Here
19
+#define PPATH    RUNPATH "/ircd.pid"	/* pid file */
19
+#define PPATH    RUNPATH "/ircd.pid"	/* pid file */
20
 #define OPATH    ETCPATH "/opers.motd"	/* oper MOTD file */
20
 #define OPATH    ETCPATH "/opers.motd"	/* oper MOTD file */
21
 
21
 
22
 /* TS6_ONLY
22
 /* HANGONGOODLINK and HANGONGOODLINK
(-)ircd-ratbox-devel/files/pkg-message.in (-3 / +5 lines)
Lines 17-25 Link Here
17
17
18
	%%PREFIX%%/etc/rc.d/ircd-ratbox conftest
18
	%%PREFIX%%/etc/rc.d/ircd-ratbox conftest
19
19
20
An update of the ban.db database may be necessary when upgrading between
20
An update of the ban.db database will be necessary if upgrading from a
21
ircd versions. You must perform this update manually using 'bantool -u'
21
pre-beta5 release. Those upgrading from 3.0.0-beta5 to this version
22
while no ircd is running and before starting the newer version.
22
should be able to omit this step. Though it doesn't do any harm to check
23
anyway. Database updates must be performed using 'bantool -u' while no
24
ircd is running and before starting the newer version.
23
25
24
	%%PREFIX%%/bin/bantool -u
26
	%%PREFIX%%/bin/bantool -u
25
27
(-)ircd-ratbox-devel/pkg-plist (-3 / +6 lines)
Lines 1-9 Link Here
1
bin/ircd
1
bin/ircd
2
bin/ratbox-mkpasswd
2
bin/ratbox-mkpasswd
3
bin/bantool
3
bin/bantool
4
bin/ratbox-sqlite3
5
libexec/ircd-ratbox/bandb
4
libexec/ircd-ratbox/bandb
6
libexec/ircd-ratbox/ident
7
libexec/ircd-ratbox/resolver
5
libexec/ircd-ratbox/resolver
8
libexec/ircd-ratbox/ssld
6
libexec/ircd-ratbox/ssld
9
%%DATADIR%%/help/opers/accept
7
%%DATADIR%%/help/opers/accept
Lines 51-56 Link Here
51
%%DATADIR%%/help/opers/oper
49
%%DATADIR%%/help/opers/oper
52
%%DATADIR%%/help/opers/operspy
50
%%DATADIR%%/help/opers/operspy
53
%%DATADIR%%/help/opers/operwall
51
%%DATADIR%%/help/opers/operwall
52
%%DATADIR%%/help/opers/adminwall
54
%%DATADIR%%/help/opers/part
53
%%DATADIR%%/help/opers/part
55
%%DATADIR%%/help/opers/pass
54
%%DATADIR%%/help/opers/pass
56
%%DATADIR%%/help/opers/ping
55
%%DATADIR%%/help/opers/ping
Lines 85-90 Link Here
85
%%DATADIR%%/help/opers/userhost
84
%%DATADIR%%/help/opers/userhost
86
%%DATADIR%%/help/opers/users
85
%%DATADIR%%/help/opers/users
87
%%DATADIR%%/help/opers/version
86
%%DATADIR%%/help/opers/version
87
%%DATADIR%%/help/opers/admindline
88
%%DATADIR%%/help/opers/adminkline
89
%%DATADIR%%/help/opers/adminresv
90
%%DATADIR%%/help/opers/adminxline
88
%%DATADIR%%/help/opers/wallops
91
%%DATADIR%%/help/opers/wallops
89
%%DATADIR%%/help/opers/who
92
%%DATADIR%%/help/opers/who
90
%%DATADIR%%/help/opers/whois
93
%%DATADIR%%/help/opers/whois
Lines 211-216 Link Here
211
lib/ircd-ratbox/modules/contrib/spy_stats_p_notice.so
214
lib/ircd-ratbox/modules/contrib/spy_stats_p_notice.so
212
lib/ircd-ratbox/modules/contrib/spy_whois_notice.so
215
lib/ircd-ratbox/modules/contrib/spy_whois_notice.so
213
lib/ircd-ratbox/modules/contrib/spy_whois_notice_global.so
216
lib/ircd-ratbox/modules/contrib/spy_whois_notice_global.so
217
lib/ircd-ratbox/modules/contrib/m_rsshortcut.so
214
lib/ircd-ratbox/modules/m_die.so
218
lib/ircd-ratbox/modules/m_die.so
215
lib/ircd-ratbox/modules/m_error.so
219
lib/ircd-ratbox/modules/m_error.so
216
lib/ircd-ratbox/modules/m_join.so
220
lib/ircd-ratbox/modules/m_join.so
Lines 233-239 Link Here
233
@dirrm %%DATADIR%%/help
237
@dirrm %%DATADIR%%/help
234
@dirrm %%DATADIR%%
238
@dirrm %%DATADIR%%
235
etc/ircd-ratbox/genssl.sh
239
etc/ircd-ratbox/genssl.sh
236
etc/ircd-ratbox/ircd-efnet.conf.sample
237
@unexec if cmp -s %D/etc/ircd-ratbox/ircd.conf.sample %D/etc/ircd-ratbox/ircd.conf; then rm -f %D/etc/ircd-ratbox/ircd.conf; fi
240
@unexec if cmp -s %D/etc/ircd-ratbox/ircd.conf.sample %D/etc/ircd-ratbox/ircd.conf; then rm -f %D/etc/ircd-ratbox/ircd.conf; fi
238
etc/ircd-ratbox/ircd.conf.sample
241
etc/ircd-ratbox/ircd.conf.sample
239
@exec if [ ! -f %D/etc/ircd-ratbox/ircd.conf ] ; then cp -p %D/%F %B/ircd.conf; fi
242
@exec if [ ! -f %D/etc/ircd-ratbox/ircd.conf ] ; then cp -p %D/%F %B/ircd.conf; fi

Return to bug 125106