View | Details | Raw Unified | Return to bug 125035 | Differences between
and this patch

Collapse All | Expand All

(-)ratbox-services/Makefile (-26 / +29 lines)
Lines 5-12 Link Here
5
# $FreeBSD: ports/irc/ratbox-services/Makefile,v 1.7 2008/04/07 02:40:05 mnag Exp $
5
# $FreeBSD: ports/irc/ratbox-services/Makefile,v 1.7 2008/04/07 02:40:05 mnag Exp $
6
6
7
PORTNAME=	ratbox-services
7
PORTNAME=	ratbox-services
8
PORTVERSION=	1.1.2
8
PORTVERSION=	1.2.0
9
PORTREVISION=	2
10
CATEGORIES=	irc
9
CATEGORIES=	irc
11
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/${PORTNAME}/	\
10
MASTER_SITES=	ftp://ftp.ircd-ratbox.org/pub/ircd-ratbox/${PORTNAME}/	\
12
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/${PORTNAME}/ \
11
		ftp://ftp.demon.co.uk/pub/mirrors/ircd-ratbox/${PORTNAME}/ \
Lines 15-26 Link Here
15
		http://services.ircd-ratbox.org/download/old/
14
		http://services.ircd-ratbox.org/download/old/
16
EXTRACT_SUFX=	.tgz
15
EXTRACT_SUFX=	.tgz
17
16
18
PATCH_SITES=	http://www.elasticmind.net/freebsd/ports/distfiles/	\
19
		http://jsreedinc.com/freebsd/ports/patches/		\
20
		http://www.atarininja.org/~wxs/distfiles/
21
PATCHFILES=	patch-autoconf_configure.in.gz patch-configure.gz	\
22
		patch-include_setup.h.in.gz
23
24
MAINTAINER=	moggie@elasticmind.net
17
MAINTAINER=	moggie@elasticmind.net
25
COMMENT=	A highly configurable services package for use with ircd-ratbox
18
COMMENT=	A highly configurable services package for use with ircd-ratbox
26
19
Lines 35-49 Link Here
35
PLIST_SUB=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
28
PLIST_SUB=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
36
SUB_LIST=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
29
SUB_LIST=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
37
30
31
USE_PERL5_BUILD=	yes
38
GNU_CONFIGURE=	yes
32
GNU_CONFIGURE=	yes
33
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
34
		LDFLAGS="-L${LOCALBASE}/lib"
35
LIB_DEPENDS+=	pcre.0:${PORTSDIR}/devel/pcre
39
CONFIGURE_ARGS+=--prefix=${PREFIX}		\
36
CONFIGURE_ARGS+=--prefix=${PREFIX}		\
40
		--sysconfdir=${PREFIX}/etc/	\
37
		--sysconfdir=${PREFIX}/etc/	\
41
		--with-logdir=${LOGDIR}		\
38
		--with-logdir=${LOGDIR}		\
42
		--with-rundir=${RUNDIR}		\
39
		--with-rundir=${RUNDIR}		\
43
		--with-helpdir=${DATADIR}/help	\
40
		--without-sqlitebuild		\
44
		--without-sqlitebuild
41
		--enable-pcre=${PREFIX}
45
42
46
PORTDOCS=	operguide.txt
43
PORTDOCS=	operguide.txt userintro.txt whats-new-1.2.txt
47
44
48
#-- Options ------------------------------------------------------------
45
#-- Options ------------------------------------------------------------
49
46
Lines 57-63 Link Here
57
		GLOBALMSG	"Enable global messaging service"		on \
54
		GLOBALMSG	"Enable global messaging service"		on \
58
		BANSERV		"Enable ban service"				on \
55
		BANSERV		"Enable ban service"				on \
59
		WATCHSERV	"Enable command watching service"		on \
56
		WATCHSERV	"Enable command watching service"		on \
57
		MEMOSERV	"Enable memo services"				on \
60
		SQLITE		"Enable sqlite3 support (default)"		on \
58
		SQLITE		"Enable sqlite3 support (default)"		on \
59
		MYSQL		"Enable mysql support"				off \
61
		PGSQL		"Enable pgsql backend support"			off
60
		PGSQL		"Enable pgsql backend support"			off
62
61
63
#----------------------------------------------------------------------
62
#----------------------------------------------------------------------
Lines 104-111 Link Here
104
CONFIGURE_ARGS+=	--disable-watchserv
103
CONFIGURE_ARGS+=	--disable-watchserv
105
.endif
104
.endif
106
105
107
.if !defined(WITH_SQLITE) && !defined(WITH_PGSQL)
106
.if defined(WITHOUT_MEMOSERV)
108
IGNORE=			requires either an sqlite or pgsql backend
107
CONFIGURE_ARGS+=	--disable-memoserv
108
.endif
109
110
.if !defined(WITH_SQLITE) && !defined(WITH_MYSQL) && !defined(WITH_PGSQL)
111
IGNORE=			requires either an sqlite, mysql or pgsql backend
109
.endif
112
.endif
110
113
111
.if defined(WITH_SQLITE)
114
.if defined(WITH_SQLITE)
Lines 113-124 Link Here
113
CONFIGURE_ARGS+=	--enable-sqlite3=${LOCALBASE}
116
CONFIGURE_ARGS+=	--enable-sqlite3=${LOCALBASE}
114
.endif
117
.endif
115
118
116
# This ratbox-services version has known problems when integrating
119
.if defined(WITH_MYSQL)
117
# with MySQL and should be avoided until it is fixed in version 1.1.3
120
USE_MYSQL=		yes
118
#.if defined(WITH_MYSQL)
121
CONFIGURE_ARGS+=	--enable-mysql=${LOCALBASE}
119
#USE_MYSQL=		yes
122
.endif
120
#CONFIGURE_ARGS+=	--enable-mysql=${LOCALBASE}
121
#.endif
122
123
123
.if defined(WITH_PGSQL)
124
.if defined(WITH_PGSQL)
124
USE_PGSQL=		yes
125
USE_PGSQL=		yes
Lines 173-192 Link Here
173
.if !defined(NOPORTDOCS)
174
.if !defined(NOPORTDOCS)
174
	@${MKDIR} ${DOCSDIR}
175
	@${MKDIR} ${DOCSDIR}
175
	cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
176
	cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
177
	${INSTALL_DATA} ${WRKSRC}/INSTALL.mysql ${DOCSDIR}/INSTALL.mysql
178
	${INSTALL_DATA} ${WRKSRC}/INSTALL.pgsql ${DOCSDIR}/INSTALL.pgsql
179
	${INSTALL_DATA} ${WRKSRC}/INSTALL.sqlite ${DOCSDIR}/INSTALL.sqlite
180
	${INSTALL_DATA} ${WRKSRC}/UPGRADING ${DOCSDIR}/UPGRADING
181
	${INSTALL_DATA} ${WRKSRC}/DBMOVE ${DOCSDIR}/DBMOVE
176
.endif
182
.endif
177
	${INSTALL_PROGRAM} ${WRKSRC}/src/ratbox-services ${PREFIX}/sbin/
183
178
	${INSTALL_DATA} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/ratbox-services.conf.sample
179
	${MKDIR} ${DATADIR}
184
	${MKDIR} ${DATADIR}
180
		(cd ${WRKSRC}/tools/ &&	\
185
		(cd ${WRKSRC}/tools/ &&	\
181
		${COPYTREE_SHARE} \* ${DATADIR} "! -name dbupgrade.pl.bak	\
186
		${COPYTREE_SHARE} \* ${DATADIR} "! -name dbupgrade.pl.bak	\
182
						! -name dbupgrade.pl.orig	\
187
						! -name dbupgrade.pl.orig	\
183
						! -name generate-schema.pl.bak	\
188
						! -name generate-schema.pl.bak	\
184
						! -name generate-schema.pl.orig")
189
						! -name generate-schema.pl.orig")
185
	${INSTALL_DATA} ${WRKSRC}/INSTALL.mysql ${DOCSDIR}/INSTALL.mysql
190
186
	${INSTALL_DATA} ${WRKSRC}/INSTALL.pgsql ${DOCSDIR}/INSTALL.pgsql
191
	${INSTALL_PROGRAM} ${WRKSRC}/src/ratbox-services ${PREFIX}/sbin/
187
	${INSTALL_DATA} ${WRKSRC}/INSTALL.sqlite ${DOCSDIR}/INSTALL.sqlite
192
	${INSTALL_DATA} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/ratbox-services.conf.sample
188
	${INSTALL_DATA} ${WRKSRC}/UPGRADING ${DOCSDIR}/UPGRADING
189
	${INSTALL_DATA} ${WRKSRC}/DBMOVE ${DOCSDIR}/DBMOVE
190
193
191
	@if [ ! -f ${PREFIX}/etc/ratbox-services.conf ]; then \
194
	@if [ ! -f ${PREFIX}/etc/ratbox-services.conf ]; then \
192
		${ECHO} "Installing default configuration file."; \
195
		${ECHO} "Installing default configuration file."; \
(-)ratbox-services/distinfo (-12 / +3 lines)
Lines 1-12 Link Here
1
MD5 (ratbox-services-1.1.2.tgz) = 45fb80a0cddd98763bb27543172927bc
1
MD5 (ratbox-services-1.2.0.tgz) = 7a77de9f91299b847de2588e60b8196a
2
SHA256 (ratbox-services-1.1.2.tgz) = cc4562474eda23ccee95185f6c634d91667643f2144abc6bbf0d0ddfe5838d20
2
SHA256 (ratbox-services-1.2.0.tgz) = 77e532b326f3ba30c6ba89015b7c77ee60b65e53e6efcdca5dd62883c7af74ea
3
SIZE (ratbox-services-1.1.2.tgz) = 1015493
3
SIZE (ratbox-services-1.2.0.tgz) = 2000384
4
MD5 (patch-autoconf_configure.in.gz) = c19461a35f7b593a79465bbeae06d216
5
SHA256 (patch-autoconf_configure.in.gz) = 3df14d86ba7a8a3f490ca7be4baf09e6e749d01bfeedd9f05074a04fac61eb55
6
SIZE (patch-autoconf_configure.in.gz) = 4797
7
MD5 (patch-configure.gz) = 96f38c1c14856cf085bd1bb68774750c
8
SHA256 (patch-configure.gz) = 4062f5feb29d2871e421eef50dd43fb2ecea1645db0fd42ae7d8e60e7ddcf2a5
9
SIZE (patch-configure.gz) = 54528
10
MD5 (patch-include_setup.h.in.gz) = 563a37ef659e607e7ca8015fa3356e8b
11
SHA256 (patch-include_setup.h.in.gz) = cdd563ea75766f421c3cd86f53112c44d77d831fde3e5e5a44ea440b7ed1d67f
12
SIZE (patch-include_setup.h.in.gz) = 1449
(-)ratbox-services/files/patch-Makefile.in (-6 / +8 lines)
Lines 1-15 Link Here
1
--- ./Makefile.in.orig	Mon Apr 10 19:53:23 2006
1
--- ./Makefile.in.orig	2008-02-17 15:33:40.000000000 +0000
2
+++ ./Makefile.in	Wed Sep  5 04:08:35 2007
2
+++ ./Makefile.in	2008-06-26 15:48:13.000000000 +0100
3
@@ -6,7 +6,7 @@
3
@@ -6,8 +6,8 @@
4
 LIBS=@LIBS@
4
 LIBS=@LIBS@
5
 LDFLAGS=@LDFLAGS@
5
 LDFLAGS=@LDFLAGS@
6
 
6
 
7
-SUBDIRS=@SQLITE_SUBDIR@ src help
7
-SUBDIRS=@SQLITE_SUBDIR@ @PCRE_SUBDIR@ src help langs
8
+SUBDIRS=src help
8
-SUBDIRS_NOINSTALL=@SQLITE_SUBDIR@ src help langs
9
+SUBDIRS=src help langs
10
+SUBDIRS_NOINSTALL=src help langs
9
 
11
 
10
 prefix=@prefix@
12
 prefix=@prefix@
11
 exec_prefix=@prefix@
13
 exec_prefix=@prefix@
12
@@ -37,20 +37,6 @@
14
@@ -38,20 +38,6 @@
13
 	done
15
 	done
14
 
16
 
15
 install: build
17
 install: build
(-)ratbox-services/files/patch-help_Makefile.in (-12 / +24 lines)
Lines 1-15 Link Here
1
--- ./help/Makefile.in.orig	Fri Aug 24 12:32:24 2007
1
--- ./help/Makefile.in.orig	2007-09-08 14:36:57.000000000 +0100
2
+++ ./help/Makefile.in	Fri Aug 24 12:15:25 2007
2
+++ ./help/Makefile.in	2008-06-26 13:29:10.000000000 +0100
3
@@ -10,10 +10,10 @@
3
@@ -13,22 +13,12 @@
4
 SUBDIRS=alis main operbot chanserv userserv jupeserv operserv nickserv global banserv watchserv
4
 SERVICES=alis main operbot chanserv userserv jupeserv operserv nickserv global banserv watchserv memoserv
5
 
5
 
6
 install: 
6
 install: 
7
-	$(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)
7
-	@if [ -d $(DESTDIR)$(helpdir)-old ]; then \
8
+	$(INSTALL) -d $(DESTDIR)$(helpdir)
8
-		echo "Removing old helpfiles"; \
9
-		$(RM) -rf $(DESTDIR)$(helpdir)-old; \
10
-	fi
11
-	@if [ -d $(DESTDIR)$(helpdir) ]; then \
12
-		echo "Backing up current helpfiles"; \
13
-		$(MV) $(DESTDIR)$(helpdir) $(DESTDIR)$(helpdir)-old; \
14
-	fi
15
-
16
 	@echo "Installing new helpfiles"
17
-	@$(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)
9
 
18
 
10
 	@for i in $(SUBDIRS); do \
19
 	@for k in $(LANGS); do \
11
-		$(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)/$$i; \
20
-		$(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)/$$k; \
12
+		$(INSTALL) -d $(DESTDIR)$(helpdir)/$$i; \
21
+		$(INSTALL) -d $(DESTDIR)$(helpdir)/$$k; \
13
 		for j in $$i/*; do \
22
 		for i in $(SERVICES); do \
14
 			if [ -f $$j ]; then \
23
-			$(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)/$$k/$$i; \
15
 				$(INSTALL_DATA) $$j $(DESTDIR)$(helpdir)/$$i; \
24
+			$(INSTALL) -d $(DESTDIR)$(helpdir)/$$k/$$i; \
25
 			for j in $$k/$$i/*; do \
26
 				if [ -f $$j ]; then \
27
 					$(INSTALL_DATA) $$j $(DESTDIR)$(helpdir)/$$k/$$i; \
(-)ratbox-services/files/patch-include_config.h (-4 / +3 lines)
Lines 1-11 Link Here
1
--- include/config.h.orig	Tue Aug 23 20:41:19 2005
1
--- ./include/config.h.orig	2008-05-20 20:11:01.000000000 +0100
2
+++ include/config.h	Sat Jan 28 22:08:14 2006
2
+++ ./include/config.h	2008-06-26 15:50:19.000000000 +0100
3
@@ -5,11 +5,13 @@
3
@@ -5,11 +5,12 @@
4
  * IMPORTANT: if you alter the directories these files go to,
4
  * IMPORTANT: if you alter the directories these files go to,
5
  *            you must create those paths yourself.
5
  *            you must create those paths yourself.
6
  */
6
  */
7
+#define DBDIR		"%%DBDIR%%"
7
+#define DBDIR		"%%DBDIR%%"
8
+
9
 #define CONF_PATH	SYSCONFDIR "/ratbox-services.conf"
8
 #define CONF_PATH	SYSCONFDIR "/ratbox-services.conf"
10
 #define PID_PATH	RUNDIR "/ratbox-services.pid"
9
 #define PID_PATH	RUNDIR "/ratbox-services.pid"
11
 #define LOG_PATH	LOGDIR "/ratbox-services.log"
10
 #define LOG_PATH	LOGDIR "/ratbox-services.log"
(-)ratbox-services/files/patch-langs_Makefile.in (+21 lines)
Line 0 Link Here
1
--- ./langs/Makefile.in.orig	2008-06-26 13:29:27.000000000 +0100
2
+++ ./langs/Makefile.in	2008-06-26 13:30:48.000000000 +0100
3
@@ -12,17 +12,8 @@
4
 LANGS=bg.lang ru.lang
5
 
6
 install: 
7
-	@if [ -d $(DESTDIR)$(langdir)-old ]; then \
8
-		echo "Removing old translations"; \
9
-		$(RM) -rf $(DESTDIR)$(langdir)-old; \
10
-	fi
11
-	@if [ -d $(DESTDIR)$(langdir) ]; then \
12
-		echo "Backing up current translations"; \
13
-		$(MV) $(DESTDIR)$(langdir) $(DESTDIR)$(langdir)-old; \
14
-	fi
15
-
16
 	@echo "Installing new translations"
17
-	@$(INSTALL) -m 750 -d $(DESTDIR)$(langdir)
18
+	@$(INSTALL) -d $(DESTDIR)$(langdir)
19
 
20
 	@for k in $(LANGS); do \
21
 		$(INSTALL_DATA) $$k $(DESTDIR)$(langdir)/$$k; \
(-)ratbox-services/files/patch-tools_dbupgrade.pl (-3 / +3 lines)
Lines 1-5 Link Here
1
--- ./tools/dbupgrade.pl.orig	Fri Aug 24 13:01:39 2007
1
--- ./tools/dbupgrade.pl.orig	2008-05-20 20:10:18.000000000 +0100
2
+++ ./tools/dbupgrade.pl	Fri Aug 24 13:38:23 2007
2
+++ ./tools/dbupgrade.pl	2008-06-26 15:35:29.000000000 +0100
3
@@ -27,9 +27,9 @@
3
@@ -27,9 +27,9 @@
4
 	exit;
4
 	exit;
5
 }
5
 }
Lines 12-18 Link Here
12
 	exit();
12
 	exit();
13
 }
13
 }
14
 
14
 
15
@@ -71,7 +71,7 @@
15
@@ -81,7 +81,7 @@
16
 }
16
 }
17
 else
17
 else
18
 {
18
 {
(-)ratbox-services/files/patch-tools_generate-schema.pl (-2 / +2 lines)
Lines 1-5 Link Here
1
--- ./tools/generate-schema.pl.orig	Fri Aug 24 12:45:51 2007
1
--- ./tools/generate-schema.pl.orig	2006-09-09 16:41:27.000000000 +0100
2
+++ ./tools/generate-schema.pl	Fri Aug 24 12:49:13 2007
2
+++ ./tools/generate-schema.pl	2008-06-26 15:36:23.000000000 +0100
3
@@ -15,11 +15,11 @@
3
@@ -15,11 +15,11 @@
4
 my @schemas = ("base/schema-mysql.txt", "base/schema-pgsql.txt");
4
 my @schemas = ("base/schema-mysql.txt", "base/schema-pgsql.txt");
5
 my @plain_schemas = ("base/schema-sqlite.txt");
5
 my @plain_schemas = ("base/schema-sqlite.txt");
(-)ratbox-services/files/pkg-message.in (-5 / +13 lines)
Lines 19-25 Link Here
19
in. For consistency, please use this location when generating your
19
in. For consistency, please use this location when generating your
20
database instead of the directory specified in the help documentation:
20
database instead of the directory specified in the help documentation:
21
21
22
	%%DBDIR%%
22
	%%DBDIR%%/
23
24
The database schemas have been generated for you by the port, so this
25
step in the documentation will not be necessary. For example, to create
26
an sqlite database, you might do something like this:
27
28
  cd %%DATADIR%%
29
  sqlite3 %%DBDIR%%/ratbox-services.db < schema-sqlite.txt
23
30
24
IRCD Server Config:
31
IRCD Server Config:
25
-------------------
32
-------------------
Lines 39-52 Link Here
39
46
40
Important UPGRADE Note:
47
Important UPGRADE Note:
41
-----------------------
48
-----------------------
42
Upgrading from the 1.0.x series to this current release will likely
49
Upgrading to this current release will require modifications to the
43
break everything. If upgrading between release versions you should
50
services configuration file and database so everything doesn't break.
44
read the UPDATING information:
51
You must check the example configuration file and read the UPDATING docs
52
for information on how to do this before starting services.
45
53
46
	%%DOCSDIR%%/UPDATING
54
	%%DOCSDIR%%/UPDATING
47
55
48
Common database update tools and scripts referenced in ratbox-services
56
Common database update tools and scripts referenced in ratbox-services
49
documentation can be found in:
57
documentation can be found in:
50
	%%DOCSDIR%%/
58
	%%DATADIR%%/
51
59
52
------------------------------------------------------------------------
60
------------------------------------------------------------------------
(-)ratbox-services/pkg-plist (-179 / +592 lines)
Lines 11-205 Link Here
11
%%DATADIR%%/base/schema-pgsql.txt
11
%%DATADIR%%/base/schema-pgsql.txt
12
%%DATADIR%%/base/schema-mysql.txt
12
%%DATADIR%%/base/schema-mysql.txt
13
@dirrm %%DATADIR%%/base
13
@dirrm %%DATADIR%%/base
14
%%DOCSDIR%%/INSTALL.mysql
14
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql
15
%%DOCSDIR%%/INSTALL.pgsql
15
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.pgsql
16
%%DOCSDIR%%/INSTALL.sqlite
16
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.sqlite
17
%%DOCSDIR%%/UPGRADING
17
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
18
%%DOCSDIR%%/DBMOVE
18
%%PORTDOCS%%%%DOCSDIR%%/DBMOVE
19
sbin/ratbox-services
19
sbin/ratbox-services
20
include/setup.h
20
include/setup.h
21
include/rserv.h
21
include/rserv.h
22
include/channel.h
22
include/channel.h
23
include/client.h
23
include/client.h
24
%%DATADIR%%/help/banserv/findxline
24
%%DATADIR%%/help/en/alis/general
25
%%DATADIR%%/help/banserv/xline
25
%%DATADIR%%/help/en/alis/index
26
%%DATADIR%%/help/banserv/resv
26
%%DATADIR%%/help/en/alis/list
27
%%DATADIR%%/help/banserv/u-findxline
27
@dirrm %%DATADIR%%/help/en/alis
28
%%DATADIR%%/help/banserv/findresv
28
%%DATADIR%%/help/en/main/u-boot
29
%%DATADIR%%/help/banserv/u-resv
29
%%DATADIR%%/help/en/main/u-chat
30
%%DATADIR%%/help/banserv/u-xline
30
%%DATADIR%%/help/en/main/u-connect
31
%%DATADIR%%/help/banserv/index-admin
31
%%DATADIR%%/help/en/main/u-events
32
%%DATADIR%%/help/banserv/u-findresv
32
%%DATADIR%%/help/en/main/u-quit
33
%%DATADIR%%/help/banserv/unresv
33
%%DATADIR%%/help/en/main/u-rehash
34
%%DATADIR%%/help/banserv/unxline
34
%%DATADIR%%/help/en/main/u-service
35
%%DATADIR%%/help/banserv/u-unresv
35
%%DATADIR%%/help/en/main/u-stats
36
%%DATADIR%%/help/banserv/u-unxline
36
%%DATADIR%%/help/en/main/u-status
37
%%DATADIR%%/help/banserv/findkline
37
@dirrm %%DATADIR%%/help/en/main
38
%%DATADIR%%/help/banserv/kline
38
%%DATADIR%%/help/en/operbot/general
39
%%DATADIR%%/help/banserv/u-findkline
39
%%DATADIR%%/help/en/operbot/index
40
%%DATADIR%%/help/banserv/u-kline
40
%%DATADIR%%/help/en/operbot/index-admin
41
%%DATADIR%%/help/banserv/unkline
41
%%DATADIR%%/help/en/operbot/invite
42
%%DATADIR%%/help/banserv/u-unkline
42
%%DATADIR%%/help/en/operbot/objoin
43
%%DATADIR%%/help/banserv/index
43
%%DATADIR%%/help/en/operbot/obpart
44
%%DATADIR%%/help/banserv/sync
44
%%DATADIR%%/help/en/operbot/op
45
%%DATADIR%%/help/banserv/general
45
%%DATADIR%%/help/en/operbot/u-objoin
46
%%DATADIR%%/help/banserv/u-sync
46
%%DATADIR%%/help/en/operbot/u-obpart
47
%%DATADIR%%/help/global/u-listwelcome
47
@dirrm %%DATADIR%%/help/en/operbot
48
%%DATADIR%%/help/global/delwelcome
48
%%DATADIR%%/help/en/chanserv/addban
49
%%DATADIR%%/help/global/u-netmsg
49
%%DATADIR%%/help/en/chanserv/adduser
50
%%DATADIR%%/help/global/u-delwelcome
50
%%DATADIR%%/help/en/chanserv/chandrop
51
%%DATADIR%%/help/global/addwelcome
51
%%DATADIR%%/help/en/chanserv/chaninfo
52
%%DATADIR%%/help/global/u-addwelcome
52
%%DATADIR%%/help/en/chanserv/chanlist
53
%%DATADIR%%/help/global/listwelcome
53
%%DATADIR%%/help/en/chanserv/chanregister
54
%%DATADIR%%/help/global/index
54
%%DATADIR%%/help/en/chanserv/chansuspend
55
%%DATADIR%%/help/global/index-admin
55
%%DATADIR%%/help/en/chanserv/chanunsuspend
56
%%DATADIR%%/help/global/general
56
%%DATADIR%%/help/en/chanserv/clearallops
57
%%DATADIR%%/help/global/netmsg
57
%%DATADIR%%/help/en/chanserv/clearbans
58
%%DATADIR%%/help/jupeserv/callunjupe
58
%%DATADIR%%/help/en/chanserv/clearmodes
59
%%DATADIR%%/help/jupeserv/calljupe
59
%%DATADIR%%/help/en/chanserv/clearops
60
%%DATADIR%%/help/jupeserv/pending
60
%%DATADIR%%/help/en/chanserv/delban
61
%%DATADIR%%/help/jupeserv/jupe
61
%%DATADIR%%/help/en/chanserv/delowner
62
%%DATADIR%%/help/jupeserv/u-unjupe
62
%%DATADIR%%/help/en/chanserv/deluser
63
%%DATADIR%%/help/jupeserv/u-jupe
63
%%DATADIR%%/help/en/chanserv/general
64
%%DATADIR%%/help/jupeserv/unjupe
64
%%DATADIR%%/help/en/chanserv/getkey
65
%%DATADIR%%/help/jupeserv/index
65
%%DATADIR%%/help/en/chanserv/index
66
%%DATADIR%%/help/jupeserv/index-admin
66
%%DATADIR%%/help/en/chanserv/index-admin
67
%%DATADIR%%/help/jupeserv/general
67
%%DATADIR%%/help/en/chanserv/info
68
%%DATADIR%%/help/main/u-service
68
%%DATADIR%%/help/en/chanserv/invite
69
%%DATADIR%%/help/main/u-chat
69
%%DATADIR%%/help/en/chanserv/listbans
70
%%DATADIR%%/help/main/u-stats
70
%%DATADIR%%/help/en/chanserv/listusers
71
%%DATADIR%%/help/main/u-connect
71
%%DATADIR%%/help/en/chanserv/modauto
72
%%DATADIR%%/help/main/u-status
72
%%DATADIR%%/help/en/chanserv/modban
73
%%DATADIR%%/help/main/u-quit
73
%%DATADIR%%/help/en/chanserv/moduser
74
%%DATADIR%%/help/main/u-boot
74
%%DATADIR%%/help/en/chanserv/op
75
%%DATADIR%%/help/main/u-events
75
%%DATADIR%%/help/en/chanserv/register
76
%%DATADIR%%/help/main/u-rehash
76
%%DATADIR%%/help/en/chanserv/set
77
%%DATADIR%%/help/nickserv/u-nickdrop
77
%%DATADIR%%/help/en/chanserv/suspend
78
%%DATADIR%%/help/nickserv/release
78
%%DATADIR%%/help/en/chanserv/u-chandrop
79
%%DATADIR%%/help/nickserv/drop
79
%%DATADIR%%/help/en/chanserv/u-chaninfo
80
%%DATADIR%%/help/nickserv/register
80
%%DATADIR%%/help/en/chanserv/u-chanregister
81
%%DATADIR%%/help/nickserv/regain
81
%%DATADIR%%/help/en/chanserv/u-chansuspend
82
%%DATADIR%%/help/nickserv/index
82
%%DATADIR%%/help/en/chanserv/u-chanunsuspend
83
%%DATADIR%%/help/nickserv/nickdrop
83
%%DATADIR%%/help/en/chanserv/unban
84
%%DATADIR%%/help/nickserv/info
84
%%DATADIR%%/help/en/chanserv/unsuspend
85
%%DATADIR%%/help/nickserv/set
85
%%DATADIR%%/help/en/chanserv/voice
86
%%DATADIR%%/help/nickserv/index-admin
86
@dirrm %%DATADIR%%/help/en/chanserv
87
%%DATADIR%%/help/nickserv/general
87
%%DATADIR%%/help/en/userserv/activate
88
%%DATADIR%%/help/operserv/u-takeover
88
%%DATADIR%%/help/en/userserv/general
89
%%DATADIR%%/help/operserv/dbsync
89
%%DATADIR%%/help/en/userserv/index
90
%%DATADIR%%/help/operserv/takeover
90
%%DATADIR%%/help/en/userserv/index-admin
91
%%DATADIR%%/help/operserv/listopers
91
%%DATADIR%%/help/en/userserv/info
92
%%DATADIR%%/help/operserv/u-dbsync
92
%%DATADIR%%/help/en/userserv/language
93
%%DATADIR%%/help/operserv/u-listopers
93
%%DATADIR%%/help/en/userserv/login
94
%%DATADIR%%/help/operserv/die
94
%%DATADIR%%/help/en/userserv/logout
95
%%DATADIR%%/help/operserv/u-osjoin
95
%%DATADIR%%/help/en/userserv/register
96
%%DATADIR%%/help/operserv/index-admin
96
%%DATADIR%%/help/en/userserv/resetemail
97
%%DATADIR%%/help/operserv/osjoin
97
%%DATADIR%%/help/en/userserv/resetpass
98
%%DATADIR%%/help/operserv/u-die
98
%%DATADIR%%/help/en/userserv/set
99
%%DATADIR%%/help/operserv/u-omode
99
%%DATADIR%%/help/en/userserv/u-userdrop
100
%%DATADIR%%/help/operserv/omode
100
%%DATADIR%%/help/en/userserv/u-userinfo
101
%%DATADIR%%/help/operserv/rehash
101
%%DATADIR%%/help/en/userserv/u-userregister
102
%%DATADIR%%/help/operserv/index
102
%%DATADIR%%/help/en/userserv/u-usersetemail
103
%%DATADIR%%/help/operserv/ospart
103
%%DATADIR%%/help/en/userserv/u-usersetpass
104
%%DATADIR%%/help/operserv/u-ospart
104
%%DATADIR%%/help/en/userserv/u-usersuspend
105
%%DATADIR%%/help/operserv/general
105
%%DATADIR%%/help/en/userserv/u-userunsuspend
106
%%DATADIR%%/help/watchserv/index-admin
106
%%DATADIR%%/help/en/userserv/userdrop
107
%%DATADIR%%/help/watchserv/watch
107
%%DATADIR%%/help/en/userserv/userinfo
108
%%DATADIR%%/help/watchserv/index
108
%%DATADIR%%/help/en/userserv/userlist
109
%%DATADIR%%/help/watchserv/u-watch
109
%%DATADIR%%/help/en/userserv/userregister
110
%%DATADIR%%/help/watchserv/general
110
%%DATADIR%%/help/en/userserv/usersetemail
111
%%DATADIR%%/help/alis/general
111
%%DATADIR%%/help/en/userserv/usersetpass
112
%%DATADIR%%/help/alis/index
112
%%DATADIR%%/help/en/userserv/usersuspend
113
%%DATADIR%%/help/alis/list
113
%%DATADIR%%/help/en/userserv/userunsuspend
114
%%DATADIR%%/help/chanserv/chanunsuspend
114
@dirrm %%DATADIR%%/help/en/userserv
115
%%DATADIR%%/help/chanserv/unsuspend
115
%%DATADIR%%/help/en/jupeserv/calljupe
116
%%DATADIR%%/help/chanserv/listbans
116
%%DATADIR%%/help/en/jupeserv/callunjupe
117
%%DATADIR%%/help/chanserv/register
117
%%DATADIR%%/help/en/jupeserv/general
118
%%DATADIR%%/help/chanserv/clearbans
118
%%DATADIR%%/help/en/jupeserv/index
119
%%DATADIR%%/help/chanserv/delban
119
%%DATADIR%%/help/en/jupeserv/index-admin
120
%%DATADIR%%/help/chanserv/getkey
120
%%DATADIR%%/help/en/jupeserv/jupe
121
%%DATADIR%%/help/chanserv/clearallops
121
%%DATADIR%%/help/en/jupeserv/pending
122
%%DATADIR%%/help/chanserv/info
122
%%DATADIR%%/help/en/jupeserv/u-jupe
123
%%DATADIR%%/help/chanserv/chanregister
123
%%DATADIR%%/help/en/jupeserv/u-unjupe
124
%%DATADIR%%/help/chanserv/deluser
124
%%DATADIR%%/help/en/jupeserv/unjupe
125
%%DATADIR%%/help/chanserv/voice
125
@dirrm %%DATADIR%%/help/en/jupeserv
126
%%DATADIR%%/help/chanserv/clearops
126
%%DATADIR%%/help/en/operserv/addignore
127
%%DATADIR%%/help/chanserv/addban
127
%%DATADIR%%/help/en/operserv/dbsync
128
%%DATADIR%%/help/chanserv/moduser
128
%%DATADIR%%/help/en/operserv/delignore
129
%%DATADIR%%/help/chanserv/u-chaninfo
129
%%DATADIR%%/help/en/operserv/die
130
%%DATADIR%%/help/chanserv/delowner
130
%%DATADIR%%/help/en/operserv/general
131
%%DATADIR%%/help/chanserv/set
131
%%DATADIR%%/help/en/operserv/index
132
%%DATADIR%%/help/chanserv/clearmodes
132
%%DATADIR%%/help/en/operserv/index-admin
133
%%DATADIR%%/help/chanserv/op
133
%%DATADIR%%/help/en/operserv/listignores
134
%%DATADIR%%/help/chanserv/u-chanunsuspend
134
%%DATADIR%%/help/en/operserv/listopers
135
%%DATADIR%%/help/chanserv/u-chanregister
135
%%DATADIR%%/help/en/operserv/omode
136
%%DATADIR%%/help/chanserv/suspend
136
%%DATADIR%%/help/en/operserv/osjoin
137
%%DATADIR%%/help/chanserv/chaninfo
137
%%DATADIR%%/help/en/operserv/ospart
138
%%DATADIR%%/help/chanserv/index-admin
138
%%DATADIR%%/help/en/operserv/rehash
139
%%DATADIR%%/help/chanserv/adduser
139
%%DATADIR%%/help/en/operserv/takeover
140
%%DATADIR%%/help/chanserv/listusers
140
%%DATADIR%%/help/en/operserv/u-addignore
141
%%DATADIR%%/help/chanserv/chandrop
141
%%DATADIR%%/help/en/operserv/u-dbsync
142
%%DATADIR%%/help/chanserv/invite
142
%%DATADIR%%/help/en/operserv/u-delignore
143
%%DATADIR%%/help/chanserv/chansuspend
143
%%DATADIR%%/help/en/operserv/u-die
144
%%DATADIR%%/help/chanserv/u-chandrop
144
%%DATADIR%%/help/en/operserv/u-listignores
145
%%DATADIR%%/help/chanserv/modban
145
%%DATADIR%%/help/en/operserv/u-listopers
146
%%DATADIR%%/help/chanserv/unban
146
%%DATADIR%%/help/en/operserv/u-omode
147
%%DATADIR%%/help/chanserv/chanlist
147
%%DATADIR%%/help/en/operserv/u-osjoin
148
%%DATADIR%%/help/chanserv/index
148
%%DATADIR%%/help/en/operserv/u-ospart
149
%%DATADIR%%/help/chanserv/modauto
149
%%DATADIR%%/help/en/operserv/u-takeover
150
%%DATADIR%%/help/chanserv/u-chansuspend
150
@dirrm %%DATADIR%%/help/en/operserv
151
%%DATADIR%%/help/chanserv/general
151
%%DATADIR%%/help/en/nickserv/drop
152
%%DATADIR%%/help/operbot/index-admin
152
%%DATADIR%%/help/en/nickserv/general
153
%%DATADIR%%/help/operbot/u-objoin
153
%%DATADIR%%/help/en/nickserv/index
154
%%DATADIR%%/help/operbot/objoin
154
%%DATADIR%%/help/en/nickserv/index-admin
155
%%DATADIR%%/help/operbot/u-obpart
155
%%DATADIR%%/help/en/nickserv/info
156
%%DATADIR%%/help/operbot/index
156
%%DATADIR%%/help/en/nickserv/nickdrop
157
%%DATADIR%%/help/operbot/obpart
157
%%DATADIR%%/help/en/nickserv/regain
158
%%DATADIR%%/help/operbot/general
158
%%DATADIR%%/help/en/nickserv/register
159
%%DATADIR%%/help/operbot/invite
159
%%DATADIR%%/help/en/nickserv/release
160
%%DATADIR%%/help/operbot/op
160
%%DATADIR%%/help/en/nickserv/set
161
%%DATADIR%%/help/userserv/activate
161
%%DATADIR%%/help/en/nickserv/u-nickdrop
162
%%DATADIR%%/help/userserv/set
162
@dirrm %%DATADIR%%/help/en/nickserv
163
%%DATADIR%%/help/userserv/u-usersuspend
163
%%DATADIR%%/help/en/global/addwelcome
164
%%DATADIR%%/help/userserv/usersuspend
164
%%DATADIR%%/help/en/global/delwelcome
165
%%DATADIR%%/help/userserv/usersetpass
165
%%DATADIR%%/help/en/global/general
166
%%DATADIR%%/help/userserv/u-userunsuspend
166
%%DATADIR%%/help/en/global/index
167
%%DATADIR%%/help/userserv/u-usersetpass
167
%%DATADIR%%/help/en/global/index-admin
168
%%DATADIR%%/help/userserv/userregister
168
%%DATADIR%%/help/en/global/listwelcome
169
%%DATADIR%%/help/userserv/userunsuspend
169
%%DATADIR%%/help/en/global/netmsg
170
%%DATADIR%%/help/userserv/register
170
%%DATADIR%%/help/en/global/u-addwelcome
171
%%DATADIR%%/help/userserv/u-userregister
171
%%DATADIR%%/help/en/global/u-delwelcome
172
%%DATADIR%%/help/userserv/resetemail
172
%%DATADIR%%/help/en/global/u-listwelcome
173
%%DATADIR%%/help/userserv/userinfo
173
%%DATADIR%%/help/en/global/u-netmsg
174
%%DATADIR%%/help/userserv/info
174
@dirrm %%DATADIR%%/help/en/global
175
%%DATADIR%%/help/userserv/index-admin
175
%%DATADIR%%/help/en/banserv/addregexp
176
%%DATADIR%%/help/userserv/u-userinfo
176
%%DATADIR%%/help/en/banserv/addregexpneg
177
%%DATADIR%%/help/userserv/resetpass
177
%%DATADIR%%/help/en/banserv/delregexp
178
%%DATADIR%%/help/userserv/userdrop
178
%%DATADIR%%/help/en/banserv/delregexpneg
179
%%DATADIR%%/help/userserv/u-userdrop
179
%%DATADIR%%/help/en/banserv/findkline
180
%%DATADIR%%/help/userserv/index
180
%%DATADIR%%/help/en/banserv/findresv
181
%%DATADIR%%/help/userserv/login
181
%%DATADIR%%/help/en/banserv/findxline
182
%%DATADIR%%/help/userserv/userlist
182
%%DATADIR%%/help/en/banserv/general
183
%%DATADIR%%/help/userserv/logout
183
%%DATADIR%%/help/en/banserv/index
184
%%DATADIR%%/help/userserv/general
184
%%DATADIR%%/help/en/banserv/index-admin
185
%%DATADIR%%/help/en/banserv/kline
186
%%DATADIR%%/help/en/banserv/listregexps
187
%%DATADIR%%/help/en/banserv/resv
188
%%DATADIR%%/help/en/banserv/sync
189
%%DATADIR%%/help/en/banserv/u-findkline
190
%%DATADIR%%/help/en/banserv/u-findresv
191
%%DATADIR%%/help/en/banserv/u-findxline
192
%%DATADIR%%/help/en/banserv/u-kline
193
%%DATADIR%%/help/en/banserv/u-resv
194
%%DATADIR%%/help/en/banserv/u-sync
195
%%DATADIR%%/help/en/banserv/u-unkline
196
%%DATADIR%%/help/en/banserv/u-unresv
197
%%DATADIR%%/help/en/banserv/u-unxline
198
%%DATADIR%%/help/en/banserv/u-xline
199
%%DATADIR%%/help/en/banserv/unkline
200
%%DATADIR%%/help/en/banserv/unresv
201
%%DATADIR%%/help/en/banserv/unxline
202
%%DATADIR%%/help/en/banserv/xline
203
@dirrm %%DATADIR%%/help/en/banserv
204
%%DATADIR%%/help/en/watchserv/general
205
%%DATADIR%%/help/en/watchserv/index
206
%%DATADIR%%/help/en/watchserv/index-admin
207
%%DATADIR%%/help/en/watchserv/u-watch
208
%%DATADIR%%/help/en/watchserv/watch
209
@dirrm %%DATADIR%%/help/en/watchserv
210
%%DATADIR%%/help/en/memoserv/delete
211
%%DATADIR%%/help/en/memoserv/general
212
%%DATADIR%%/help/en/memoserv/index
213
%%DATADIR%%/help/en/memoserv/list
214
%%DATADIR%%/help/en/memoserv/read
215
%%DATADIR%%/help/en/memoserv/send
216
@dirrm %%DATADIR%%/help/en/memoserv
217
%%DATADIR%%/help/bg/alis/general
218
%%DATADIR%%/help/bg/alis/index
219
%%DATADIR%%/help/bg/alis/list
220
@dirrm %%DATADIR%%/help/bg/alis
221
%%DATADIR%%/help/bg/main/u-boot
222
%%DATADIR%%/help/bg/main/u-chat
223
%%DATADIR%%/help/bg/main/u-connect
224
%%DATADIR%%/help/bg/main/u-events
225
%%DATADIR%%/help/bg/main/u-quit
226
%%DATADIR%%/help/bg/main/u-rehash
227
%%DATADIR%%/help/bg/main/u-service
228
%%DATADIR%%/help/bg/main/u-stats
229
%%DATADIR%%/help/bg/main/u-status
230
@dirrm %%DATADIR%%/help/bg/main
231
%%DATADIR%%/help/bg/operbot/general
232
%%DATADIR%%/help/bg/operbot/index
233
%%DATADIR%%/help/bg/operbot/index-admin
234
%%DATADIR%%/help/bg/operbot/invite
235
%%DATADIR%%/help/bg/operbot/objoin
236
%%DATADIR%%/help/bg/operbot/obpart
237
%%DATADIR%%/help/bg/operbot/op
238
%%DATADIR%%/help/bg/operbot/u-objoin
239
%%DATADIR%%/help/bg/operbot/u-obpart
240
@dirrm %%DATADIR%%/help/bg/operbot
241
%%DATADIR%%/help/bg/chanserv/addban
242
%%DATADIR%%/help/bg/chanserv/adduser
243
%%DATADIR%%/help/bg/chanserv/chandrop
244
%%DATADIR%%/help/bg/chanserv/chaninfo
245
%%DATADIR%%/help/bg/chanserv/chanlist
246
%%DATADIR%%/help/bg/chanserv/chanregister
247
%%DATADIR%%/help/bg/chanserv/chansuspend
248
%%DATADIR%%/help/bg/chanserv/chanunsuspend
249
%%DATADIR%%/help/bg/chanserv/clearallops
250
%%DATADIR%%/help/bg/chanserv/clearbans
251
%%DATADIR%%/help/bg/chanserv/clearmodes
252
%%DATADIR%%/help/bg/chanserv/clearops
253
%%DATADIR%%/help/bg/chanserv/delban
254
%%DATADIR%%/help/bg/chanserv/delowner
255
%%DATADIR%%/help/bg/chanserv/deluser
256
%%DATADIR%%/help/bg/chanserv/general
257
%%DATADIR%%/help/bg/chanserv/getkey
258
%%DATADIR%%/help/bg/chanserv/index
259
%%DATADIR%%/help/bg/chanserv/index-admin
260
%%DATADIR%%/help/bg/chanserv/info
261
%%DATADIR%%/help/bg/chanserv/invite
262
%%DATADIR%%/help/bg/chanserv/listbans
263
%%DATADIR%%/help/bg/chanserv/listusers
264
%%DATADIR%%/help/bg/chanserv/modauto
265
%%DATADIR%%/help/bg/chanserv/modban
266
%%DATADIR%%/help/bg/chanserv/moduser
267
%%DATADIR%%/help/bg/chanserv/op
268
%%DATADIR%%/help/bg/chanserv/register
269
%%DATADIR%%/help/bg/chanserv/set
270
%%DATADIR%%/help/bg/chanserv/suspend
271
%%DATADIR%%/help/bg/chanserv/u-chandrop
272
%%DATADIR%%/help/bg/chanserv/u-chaninfo
273
%%DATADIR%%/help/bg/chanserv/u-chanregister
274
%%DATADIR%%/help/bg/chanserv/u-chansuspend
275
%%DATADIR%%/help/bg/chanserv/u-chanunsuspend
276
%%DATADIR%%/help/bg/chanserv/unban
277
%%DATADIR%%/help/bg/chanserv/unsuspend
278
%%DATADIR%%/help/bg/chanserv/voice
279
@dirrm %%DATADIR%%/help/bg/chanserv
280
%%DATADIR%%/help/bg/userserv/activate
281
%%DATADIR%%/help/bg/userserv/general
282
%%DATADIR%%/help/bg/userserv/index
283
%%DATADIR%%/help/bg/userserv/index-admin
284
%%DATADIR%%/help/bg/userserv/info
285
%%DATADIR%%/help/bg/userserv/language
286
%%DATADIR%%/help/bg/userserv/login
287
%%DATADIR%%/help/bg/userserv/logout
288
%%DATADIR%%/help/bg/userserv/register
289
%%DATADIR%%/help/bg/userserv/resetemail
290
%%DATADIR%%/help/bg/userserv/resetpass
291
%%DATADIR%%/help/bg/userserv/set
292
%%DATADIR%%/help/bg/userserv/u-userdrop
293
%%DATADIR%%/help/bg/userserv/u-userinfo
294
%%DATADIR%%/help/bg/userserv/u-userregister
295
%%DATADIR%%/help/bg/userserv/u-usersetemail
296
%%DATADIR%%/help/bg/userserv/u-usersetpass
297
%%DATADIR%%/help/bg/userserv/u-usersuspend
298
%%DATADIR%%/help/bg/userserv/u-userunsuspend
299
%%DATADIR%%/help/bg/userserv/userdrop
300
%%DATADIR%%/help/bg/userserv/userinfo
301
%%DATADIR%%/help/bg/userserv/userlist
302
%%DATADIR%%/help/bg/userserv/userregister
303
%%DATADIR%%/help/bg/userserv/usersetemail
304
%%DATADIR%%/help/bg/userserv/usersetpass
305
%%DATADIR%%/help/bg/userserv/usersuspend
306
%%DATADIR%%/help/bg/userserv/userunsuspend
307
@dirrm %%DATADIR%%/help/bg/userserv
308
%%DATADIR%%/help/bg/jupeserv/calljupe
309
%%DATADIR%%/help/bg/jupeserv/callunjupe
310
%%DATADIR%%/help/bg/jupeserv/general
311
%%DATADIR%%/help/bg/jupeserv/index
312
%%DATADIR%%/help/bg/jupeserv/index-admin
313
%%DATADIR%%/help/bg/jupeserv/jupe
314
%%DATADIR%%/help/bg/jupeserv/pending
315
%%DATADIR%%/help/bg/jupeserv/u-jupe
316
%%DATADIR%%/help/bg/jupeserv/u-unjupe
317
%%DATADIR%%/help/bg/jupeserv/unjupe
318
@dirrm %%DATADIR%%/help/bg/jupeserv
319
%%DATADIR%%/help/bg/operserv/addignore
320
%%DATADIR%%/help/bg/operserv/dbsync
321
%%DATADIR%%/help/bg/operserv/delignore
322
%%DATADIR%%/help/bg/operserv/die
323
%%DATADIR%%/help/bg/operserv/general
324
%%DATADIR%%/help/bg/operserv/index
325
%%DATADIR%%/help/bg/operserv/index-admin
326
%%DATADIR%%/help/bg/operserv/listignores
327
%%DATADIR%%/help/bg/operserv/listopers
328
%%DATADIR%%/help/bg/operserv/omode
329
%%DATADIR%%/help/bg/operserv/osjoin
330
%%DATADIR%%/help/bg/operserv/ospart
331
%%DATADIR%%/help/bg/operserv/rehash
332
%%DATADIR%%/help/bg/operserv/takeover
333
%%DATADIR%%/help/bg/operserv/u-addignore
334
%%DATADIR%%/help/bg/operserv/u-dbsync
335
%%DATADIR%%/help/bg/operserv/u-delignore
336
%%DATADIR%%/help/bg/operserv/u-die
337
%%DATADIR%%/help/bg/operserv/u-listignores
338
%%DATADIR%%/help/bg/operserv/u-listopers
339
%%DATADIR%%/help/bg/operserv/u-omode
340
%%DATADIR%%/help/bg/operserv/u-osjoin
341
%%DATADIR%%/help/bg/operserv/u-ospart
342
%%DATADIR%%/help/bg/operserv/u-takeover
343
@dirrm %%DATADIR%%/help/bg/operserv
344
%%DATADIR%%/help/bg/nickserv/drop
345
%%DATADIR%%/help/bg/nickserv/general
346
%%DATADIR%%/help/bg/nickserv/index
347
%%DATADIR%%/help/bg/nickserv/index-admin
348
%%DATADIR%%/help/bg/nickserv/info
349
%%DATADIR%%/help/bg/nickserv/nickdrop
350
%%DATADIR%%/help/bg/nickserv/regain
351
%%DATADIR%%/help/bg/nickserv/register
352
%%DATADIR%%/help/bg/nickserv/release
353
%%DATADIR%%/help/bg/nickserv/set
354
%%DATADIR%%/help/bg/nickserv/u-nickdrop
355
@dirrm %%DATADIR%%/help/bg/nickserv
356
%%DATADIR%%/help/bg/global/addwelcome
357
%%DATADIR%%/help/bg/global/delwelcome
358
%%DATADIR%%/help/bg/global/general
359
%%DATADIR%%/help/bg/global/index
360
%%DATADIR%%/help/bg/global/index-admin
361
%%DATADIR%%/help/bg/global/listwelcome
362
%%DATADIR%%/help/bg/global/netmsg
363
%%DATADIR%%/help/bg/global/u-addwelcome
364
%%DATADIR%%/help/bg/global/u-delwelcome
365
%%DATADIR%%/help/bg/global/u-listwelcome
366
%%DATADIR%%/help/bg/global/u-netmsg
367
@dirrm %%DATADIR%%/help/bg/global
368
%%DATADIR%%/help/bg/banserv/addregexp
369
%%DATADIR%%/help/bg/banserv/addregexpneg
370
%%DATADIR%%/help/bg/banserv/delregexp
371
%%DATADIR%%/help/bg/banserv/delregexpneg
372
%%DATADIR%%/help/bg/banserv/findkline
373
%%DATADIR%%/help/bg/banserv/findresv
374
%%DATADIR%%/help/bg/banserv/findxline
375
%%DATADIR%%/help/bg/banserv/general
376
%%DATADIR%%/help/bg/banserv/index
377
%%DATADIR%%/help/bg/banserv/index-admin
378
%%DATADIR%%/help/bg/banserv/kline
379
%%DATADIR%%/help/bg/banserv/listregexps
380
%%DATADIR%%/help/bg/banserv/resv
381
%%DATADIR%%/help/bg/banserv/sync
382
%%DATADIR%%/help/bg/banserv/u-findkline
383
%%DATADIR%%/help/bg/banserv/u-findresv
384
%%DATADIR%%/help/bg/banserv/u-findxline
385
%%DATADIR%%/help/bg/banserv/u-kline
386
%%DATADIR%%/help/bg/banserv/u-resv
387
%%DATADIR%%/help/bg/banserv/u-sync
388
%%DATADIR%%/help/bg/banserv/u-unkline
389
%%DATADIR%%/help/bg/banserv/u-unresv
390
%%DATADIR%%/help/bg/banserv/u-unxline
391
%%DATADIR%%/help/bg/banserv/u-xline
392
%%DATADIR%%/help/bg/banserv/unkline
393
%%DATADIR%%/help/bg/banserv/unresv
394
%%DATADIR%%/help/bg/banserv/unxline
395
%%DATADIR%%/help/bg/banserv/xline
396
@dirrm %%DATADIR%%/help/bg/banserv
397
%%DATADIR%%/help/bg/watchserv/general
398
%%DATADIR%%/help/bg/watchserv/index
399
%%DATADIR%%/help/bg/watchserv/index-admin
400
%%DATADIR%%/help/bg/watchserv/u-watch
401
%%DATADIR%%/help/bg/watchserv/watch
402
@dirrm %%DATADIR%%/help/bg/watchserv
403
%%DATADIR%%/help/bg/memoserv/delete
404
%%DATADIR%%/help/bg/memoserv/general
405
%%DATADIR%%/help/bg/memoserv/index
406
%%DATADIR%%/help/bg/memoserv/list
407
%%DATADIR%%/help/bg/memoserv/read
408
%%DATADIR%%/help/bg/memoserv/send
409
@dirrm %%DATADIR%%/help/bg/memoserv
410
%%DATADIR%%/help/ru/alis/general
411
%%DATADIR%%/help/ru/alis/index
412
%%DATADIR%%/help/ru/alis/list
413
@dirrm %%DATADIR%%/help/ru/alis
414
%%DATADIR%%/help/ru/main/u-boot
415
%%DATADIR%%/help/ru/main/u-chat
416
%%DATADIR%%/help/ru/main/u-connect
417
%%DATADIR%%/help/ru/main/u-events
418
%%DATADIR%%/help/ru/main/u-quit
419
%%DATADIR%%/help/ru/main/u-rehash
420
%%DATADIR%%/help/ru/main/u-service
421
%%DATADIR%%/help/ru/main/u-stats
422
%%DATADIR%%/help/ru/main/u-status
423
@dirrm %%DATADIR%%/help/ru/main
424
%%DATADIR%%/help/ru/operbot/general
425
%%DATADIR%%/help/ru/operbot/index
426
%%DATADIR%%/help/ru/operbot/index-admin
427
%%DATADIR%%/help/ru/operbot/invite
428
%%DATADIR%%/help/ru/operbot/objoin
429
%%DATADIR%%/help/ru/operbot/obpart
430
%%DATADIR%%/help/ru/operbot/op
431
%%DATADIR%%/help/ru/operbot/u-objoin
432
%%DATADIR%%/help/ru/operbot/u-obpart
433
@dirrm %%DATADIR%%/help/ru/operbot
434
%%DATADIR%%/help/ru/chanserv/addban
435
%%DATADIR%%/help/ru/chanserv/adduser
436
%%DATADIR%%/help/ru/chanserv/chandrop
437
%%DATADIR%%/help/ru/chanserv/chaninfo
438
%%DATADIR%%/help/ru/chanserv/chanlist
439
%%DATADIR%%/help/ru/chanserv/chanregister
440
%%DATADIR%%/help/ru/chanserv/chansuspend
441
%%DATADIR%%/help/ru/chanserv/chanunsuspend
442
%%DATADIR%%/help/ru/chanserv/clearallops
443
%%DATADIR%%/help/ru/chanserv/clearbans
444
%%DATADIR%%/help/ru/chanserv/clearmodes
445
%%DATADIR%%/help/ru/chanserv/clearops
446
%%DATADIR%%/help/ru/chanserv/delban
447
%%DATADIR%%/help/ru/chanserv/delowner
448
%%DATADIR%%/help/ru/chanserv/deluser
449
%%DATADIR%%/help/ru/chanserv/general
450
%%DATADIR%%/help/ru/chanserv/getkey
451
%%DATADIR%%/help/ru/chanserv/index
452
%%DATADIR%%/help/ru/chanserv/index-admin
453
%%DATADIR%%/help/ru/chanserv/info
454
%%DATADIR%%/help/ru/chanserv/invite
455
%%DATADIR%%/help/ru/chanserv/listbans
456
%%DATADIR%%/help/ru/chanserv/listusers
457
%%DATADIR%%/help/ru/chanserv/modauto
458
%%DATADIR%%/help/ru/chanserv/modban
459
%%DATADIR%%/help/ru/chanserv/moduser
460
%%DATADIR%%/help/ru/chanserv/op
461
%%DATADIR%%/help/ru/chanserv/register
462
%%DATADIR%%/help/ru/chanserv/set
463
%%DATADIR%%/help/ru/chanserv/suspend
464
%%DATADIR%%/help/ru/chanserv/u-chandrop
465
%%DATADIR%%/help/ru/chanserv/u-chaninfo
466
%%DATADIR%%/help/ru/chanserv/u-chanregister
467
%%DATADIR%%/help/ru/chanserv/u-chansuspend
468
%%DATADIR%%/help/ru/chanserv/u-chanunsuspend
469
%%DATADIR%%/help/ru/chanserv/unban
470
%%DATADIR%%/help/ru/chanserv/unsuspend
471
%%DATADIR%%/help/ru/chanserv/voice
472
@dirrm %%DATADIR%%/help/ru/chanserv
473
%%DATADIR%%/help/ru/userserv/activate
474
%%DATADIR%%/help/ru/userserv/general
475
%%DATADIR%%/help/ru/userserv/index
476
%%DATADIR%%/help/ru/userserv/index-admin
477
%%DATADIR%%/help/ru/userserv/info
478
%%DATADIR%%/help/ru/userserv/language
479
%%DATADIR%%/help/ru/userserv/login
480
%%DATADIR%%/help/ru/userserv/logout
481
%%DATADIR%%/help/ru/userserv/register
482
%%DATADIR%%/help/ru/userserv/resetemail
483
%%DATADIR%%/help/ru/userserv/resetpass
484
%%DATADIR%%/help/ru/userserv/set
485
%%DATADIR%%/help/ru/userserv/u-userdrop
486
%%DATADIR%%/help/ru/userserv/u-userinfo
487
%%DATADIR%%/help/ru/userserv/u-userregister
488
%%DATADIR%%/help/ru/userserv/u-usersetemail
489
%%DATADIR%%/help/ru/userserv/u-usersetpass
490
%%DATADIR%%/help/ru/userserv/u-usersuspend
491
%%DATADIR%%/help/ru/userserv/u-userunsuspend
492
%%DATADIR%%/help/ru/userserv/userdrop
493
%%DATADIR%%/help/ru/userserv/userinfo
494
%%DATADIR%%/help/ru/userserv/userlist
495
%%DATADIR%%/help/ru/userserv/userregister
496
%%DATADIR%%/help/ru/userserv/usersetemail
497
%%DATADIR%%/help/ru/userserv/usersetpass
498
%%DATADIR%%/help/ru/userserv/usersuspend
499
%%DATADIR%%/help/ru/userserv/userunsuspend
500
@dirrm %%DATADIR%%/help/ru/userserv
501
%%DATADIR%%/help/ru/jupeserv/calljupe
502
%%DATADIR%%/help/ru/jupeserv/callunjupe
503
%%DATADIR%%/help/ru/jupeserv/general
504
%%DATADIR%%/help/ru/jupeserv/index
505
%%DATADIR%%/help/ru/jupeserv/index-admin
506
%%DATADIR%%/help/ru/jupeserv/jupe
507
%%DATADIR%%/help/ru/jupeserv/pending
508
%%DATADIR%%/help/ru/jupeserv/u-jupe
509
%%DATADIR%%/help/ru/jupeserv/u-unjupe
510
%%DATADIR%%/help/ru/jupeserv/unjupe
511
@dirrm %%DATADIR%%/help/ru/jupeserv
512
%%DATADIR%%/help/ru/operserv/addignore
513
%%DATADIR%%/help/ru/operserv/dbsync
514
%%DATADIR%%/help/ru/operserv/delignore
515
%%DATADIR%%/help/ru/operserv/die
516
%%DATADIR%%/help/ru/operserv/general
517
%%DATADIR%%/help/ru/operserv/index
518
%%DATADIR%%/help/ru/operserv/index-admin
519
%%DATADIR%%/help/ru/operserv/listignores
520
%%DATADIR%%/help/ru/operserv/listopers
521
%%DATADIR%%/help/ru/operserv/omode
522
%%DATADIR%%/help/ru/operserv/osjoin
523
%%DATADIR%%/help/ru/operserv/ospart
524
%%DATADIR%%/help/ru/operserv/rehash
525
%%DATADIR%%/help/ru/operserv/takeover
526
%%DATADIR%%/help/ru/operserv/u-addignore
527
%%DATADIR%%/help/ru/operserv/u-dbsync
528
%%DATADIR%%/help/ru/operserv/u-delignore
529
%%DATADIR%%/help/ru/operserv/u-die
530
%%DATADIR%%/help/ru/operserv/u-listignores
531
%%DATADIR%%/help/ru/operserv/u-listopers
532
%%DATADIR%%/help/ru/operserv/u-omode
533
%%DATADIR%%/help/ru/operserv/u-osjoin
534
%%DATADIR%%/help/ru/operserv/u-ospart
535
%%DATADIR%%/help/ru/operserv/u-takeover
536
@dirrm %%DATADIR%%/help/ru/operserv
537
%%DATADIR%%/help/ru/nickserv/drop
538
%%DATADIR%%/help/ru/nickserv/general
539
%%DATADIR%%/help/ru/nickserv/index
540
%%DATADIR%%/help/ru/nickserv/index-admin
541
%%DATADIR%%/help/ru/nickserv/info
542
%%DATADIR%%/help/ru/nickserv/nickdrop
543
%%DATADIR%%/help/ru/nickserv/regain
544
%%DATADIR%%/help/ru/nickserv/register
545
%%DATADIR%%/help/ru/nickserv/release
546
%%DATADIR%%/help/ru/nickserv/set
547
%%DATADIR%%/help/ru/nickserv/u-nickdrop
548
@dirrm %%DATADIR%%/help/ru/nickserv
549
%%DATADIR%%/help/ru/global/addwelcome
550
%%DATADIR%%/help/ru/global/delwelcome
551
%%DATADIR%%/help/ru/global/general
552
%%DATADIR%%/help/ru/global/index
553
%%DATADIR%%/help/ru/global/index-admin
554
%%DATADIR%%/help/ru/global/listwelcome
555
%%DATADIR%%/help/ru/global/netmsg
556
%%DATADIR%%/help/ru/global/u-addwelcome
557
%%DATADIR%%/help/ru/global/u-delwelcome
558
%%DATADIR%%/help/ru/global/u-listwelcome
559
%%DATADIR%%/help/ru/global/u-netmsg
560
@dirrm %%DATADIR%%/help/ru/global
561
%%DATADIR%%/help/ru/banserv/addregexp
562
%%DATADIR%%/help/ru/banserv/addregexpneg
563
%%DATADIR%%/help/ru/banserv/delregexp
564
%%DATADIR%%/help/ru/banserv/delregexpneg
565
%%DATADIR%%/help/ru/banserv/findkline
566
%%DATADIR%%/help/ru/banserv/findresv
567
%%DATADIR%%/help/ru/banserv/findxline
568
%%DATADIR%%/help/ru/banserv/general
569
%%DATADIR%%/help/ru/banserv/index
570
%%DATADIR%%/help/ru/banserv/index-admin
571
%%DATADIR%%/help/ru/banserv/kline
572
%%DATADIR%%/help/ru/banserv/listregexps
573
%%DATADIR%%/help/ru/banserv/resv
574
%%DATADIR%%/help/ru/banserv/sync
575
%%DATADIR%%/help/ru/banserv/u-findkline
576
%%DATADIR%%/help/ru/banserv/u-findresv
577
%%DATADIR%%/help/ru/banserv/u-findxline
578
%%DATADIR%%/help/ru/banserv/u-kline
579
%%DATADIR%%/help/ru/banserv/u-resv
580
%%DATADIR%%/help/ru/banserv/u-sync
581
%%DATADIR%%/help/ru/banserv/u-unkline
582
%%DATADIR%%/help/ru/banserv/u-unresv
583
%%DATADIR%%/help/ru/banserv/u-unxline
584
%%DATADIR%%/help/ru/banserv/u-xline
585
%%DATADIR%%/help/ru/banserv/unkline
586
%%DATADIR%%/help/ru/banserv/unresv
587
%%DATADIR%%/help/ru/banserv/unxline
588
%%DATADIR%%/help/ru/banserv/xline
589
@dirrm %%DATADIR%%/help/ru/banserv
590
%%DATADIR%%/help/ru/watchserv/general
591
%%DATADIR%%/help/ru/watchserv/index
592
%%DATADIR%%/help/ru/watchserv/index-admin
593
%%DATADIR%%/help/ru/watchserv/u-watch
594
%%DATADIR%%/help/ru/watchserv/watch
595
@dirrm %%DATADIR%%/help/ru/watchserv
596
%%DATADIR%%/help/ru/memoserv/delete
597
%%DATADIR%%/help/ru/memoserv/general
598
%%DATADIR%%/help/ru/memoserv/index
599
%%DATADIR%%/help/ru/memoserv/list
600
%%DATADIR%%/help/ru/memoserv/read
601
%%DATADIR%%/help/ru/memoserv/send
602
@dirrm %%DATADIR%%/help/ru/memoserv
603
@dirrm %%DATADIR%%/help/en
604
@dirrm %%DATADIR%%/help/ru
605
@dirrm %%DATADIR%%/help/bg
606
%%DATADIR%%/langs/bg.lang
607
%%DATADIR%%/langs/ru.lang
608
@dirrm %%DATADIR%%/help
609
@dirrm %%DATADIR%%/langs
185
@unexec f="/usr/local/share/ratbox-services/schema-mysql.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
610
@unexec f="/usr/local/share/ratbox-services/schema-mysql.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
186
@unexec f="/usr/local/share/ratbox-services/schema-pgsql.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
611
@unexec f="/usr/local/share/ratbox-services/schema-pgsql.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
187
@unexec f="/usr/local/share/ratbox-services/schema-sqlite.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
612
@unexec f="/usr/local/share/ratbox-services/schema-sqlite.txt"; if [ -f "$f" ]; then rm -f "$f"; fi
188
@dirrm %%DATADIR%%/help/userserv
189
@dirrm %%DATADIR%%/help/operbot
190
@dirrm %%DATADIR%%/help/chanserv
191
@dirrm %%DATADIR%%/help/alis
192
@dirrm %%DATADIR%%/help/watchserv
193
@dirrm %%DATADIR%%/help/operserv
194
@dirrm %%DATADIR%%/help/nickserv
195
@dirrm %%DATADIR%%/help/main
196
@dirrm %%DATADIR%%/help/jupeserv
197
@dirrm %%DATADIR%%/help/global
198
@dirrm %%DATADIR%%/help/banserv
199
@dirrm %%DATADIR%%/help
200
@dirrm %%DATADIR%%
613
@dirrm %%DATADIR%%
201
@dirrmtry %%DBDIR%%
614
@dirrmtry %%DBDIR%%
202
@dirrmtry %%DOCSDIR%%
615
%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
203
@unexec if cmp -s %D/etc/ratbox-services.conf.sample %D/etc/ratbox-services.conf; then rm -f %D/etc/ratbox-services.conf; fi
616
@unexec if cmp -s %D/etc/ratbox-services.conf.sample %D/etc/ratbox-services.conf; then rm -f %D/etc/ratbox-services.conf; fi
204
etc/ratbox-services.conf.sample
617
etc/ratbox-services.conf.sample
205
@exec if [ ! -f %D/etc/ratbox-services.conf ] ; then cp -p %D/%F %B/ratbox-services.conf; fi
618
@exec if [ ! -f %D/etc/ratbox-services.conf ] ; then cp -p %D/%F %B/ratbox-services.conf; fi

Return to bug 125035