summaryrefslogtreecommitdiff
path: root/irc/ircservices/files
diff options
context:
space:
mode:
Diffstat (limited to 'irc/ircservices/files')
-rw-r--r--irc/ircservices/files/ircservices.in23
-rw-r--r--irc/ircservices/files/patch-lang_langcomp.c20
-rw-r--r--irc/ircservices/files/pkg-message.in8
3 files changed, 0 insertions, 51 deletions
diff --git a/irc/ircservices/files/ircservices.in b/irc/ircservices/files/ircservices.in
deleted file mode 100644
index 5e4c84aaf802..000000000000
--- a/irc/ircservices/files/ircservices.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-# PROVIDE: ircservices
-# REQUIRE: LOGIN
-# KEYWORDS: nojail shutdown
-
-. /etc/rc.subr
-
-name=ircservices
-rcvar=ircservices_enable
-
-command="%%PREFIX%%/sbin/${name}"
-command_args="-dir=%%PREFIX%%/etc/ircservices"
-pidfile="/var/run/${name}.pid"
-required_files="%%PREFIX%%/etc/ircservices/ircservices.conf \
- %%PREFIX%%/etc/ircservices/modules.conf"
-
-load_rc_config ${name}
-
-: ${ircservices_enable="NO"}
-
-run_rc_command "$1"
diff --git a/irc/ircservices/files/patch-lang_langcomp.c b/irc/ircservices/files/patch-lang_langcomp.c
deleted file mode 100644
index c9ae5f265edc..000000000000
--- a/irc/ircservices/files/patch-lang_langcomp.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- lang/langcomp.c.orig 2009-07-11 14:53:19 UTC
-+++ lang/langcomp.c
-@@ -115,7 +115,7 @@ static int stringnum(const char *name)
- /* Read a non-comment, non-blank line from the input file. Return NULL at
- * end of file. */
-
--static char *getline(FILE *f)
-+static char *get_line(FILE *f)
- {
- static char buf[1024];
- char *s;
-@@ -196,7 +196,7 @@ int main(int ac, char **av)
- return 1;
- }
-
-- while (maxerr > 0 && (line = getline(in)) != NULL) {
-+ while (maxerr > 0 && (line = get_line(in)) != NULL) {
- if (*line == '\t') {
- if (curstring == -2) {
- fprintf(stderr, "%s:%d: Junk at beginning of file\n",
diff --git a/irc/ircservices/files/pkg-message.in b/irc/ircservices/files/pkg-message.in
deleted file mode 100644
index a1c486b9bfdf..000000000000
--- a/irc/ircservices/files/pkg-message.in
+++ /dev/null
@@ -1,8 +0,0 @@
-[
-{ type: install
- message: <<EOM
-The configuration directory has changed to %%PREFIX%%/etc/ircservices
-Please copy your old config files there if updating
-EOM
-}
-]