summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authorwiz <wiz>2000-12-15 00:36:25 +0000
committerwiz <wiz>2000-12-15 00:36:25 +0000
commit8ef40bc8b7a42d79b2a5317d54883bae254bb92c (patch)
tree9efd46171d88d283a1dcc676d340dae7e3a2606c /chat/ircII/patches
parent58aeeec992a7ec192b99c11dacc0f517503132b2 (diff)
downloadpkgsrc-8ef40bc8b7a42d79b2a5317d54883bae254bb92c.tar.gz
Create new 'chat' category, featuring chat clients and servers of all kinds.
Move some packages from 'net' here.
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-aa13
-rw-r--r--chat/ircII/patches/patch-ab12
-rw-r--r--chat/ircII/patches/patch-ac29
-rw-r--r--chat/ircII/patches/patch-ad34
-rw-r--r--chat/ircII/patches/patch-ae35
-rw-r--r--chat/ircII/patches/patch-af34
6 files changed, 157 insertions, 0 deletions
diff --git a/chat/ircII/patches/patch-aa b/chat/ircII/patches/patch-aa
new file mode 100644
index 00000000000..705b22d5296
--- /dev/null
+++ b/chat/ircII/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/12/15 00:36:32 wiz Exp $
+
+--- configure.orig Sun Apr 9 09:11:08 2000
++++ configure Thu Aug 3 07:43:46 2000
+@@ -5241,7 +5241,7 @@
+ fi
+ if test "x$COPY_DIRECTORY" = "xpax";
+ then
+- INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/\.?CVS$$;;" -s ";.*/\.?CVS/.*;;" . $(HELP_DIR)'
++ INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/\.CVS$$;;" -s ";.*/\.CVS/.*;;" . $(HELP_DIR)'
+ else
+ if test "x$COPY_DIRECTORY" = "xtar";
+ then
diff --git a/chat/ircII/patches/patch-ab b/chat/ircII/patches/patch-ab
new file mode 100644
index 00000000000..9e7c73449be
--- /dev/null
+++ b/chat/ircII/patches/patch-ab
@@ -0,0 +1,12 @@
+$NetBSD: patch-ab,v 1.1.1.1 2000/12/15 00:36:32 wiz Exp $
+
+--- include/irc.h.orig Tue Jul 18 19:12:16 2000
++++ include/irc.h Mon Sep 18 00:12:27 2000
+@@ -334,6 +334,7 @@
+ extern int current_numeric;
+ extern int qflag;
+ extern int bflag;
++extern int tflag;
+ extern struct in_addr local_ip_address;
+ extern int client_default_icb;
+
diff --git a/chat/ircII/patches/patch-ac b/chat/ircII/patches/patch-ac
new file mode 100644
index 00000000000..42582cdfbc6
--- /dev/null
+++ b/chat/ircII/patches/patch-ac
@@ -0,0 +1,29 @@
+$NetBSD: patch-ac,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
+
+--- Makefile.in.orig Sun Apr 16 02:04:02 2000
++++ Makefile.in Thu May 11 13:56:05 2000
+@@ -158,8 +158,8 @@
+ CP = cp
+ MV = mv
+ SED = sed
+-INSTALL = $(topdir)/bsdinstall -c -m 755
+-INSTALL_DATA = $(topdir)/bsdinstall -c -m 644
++INSTALL = $(BSD_INSTALL_PROGRAM)
++INSTALL_DATA = $(BSD_INSTALL_DATA)
+
+ VERSION = @VERSION@
+
+@@ -178,11 +178,9 @@
+
+ installirc: irc installdirs
+ $(INSTALL) irc $(INSTALL_IRC)-$(VERSION)
+- $(INSTALL) ircbug $(bindir)/ircbug
+- @if test -f $(INSTALL_IRC).old; then $(RM) $(INSTALL_IRC).old; fi
+- @if test -f $(INSTALL_IRC); then $(MV) $(INSTALL_IRC) $(INSTALL_IRC).old; fi
++ $(BSD_INSTALL_SCRIPT) ircbug $(bindir)/ircbug
+ $(RM) $(INSTALL_IRC)
+- $(LN) $(INSTALL_IRC_NAME)-$(VERSION) $(INSTALL_IRC)
++ cd ${bindir}; $(LN) irc-$(VERSION) irc
+
+ installscript: installdirs
+ ( \
diff --git a/chat/ircII/patches/patch-ad b/chat/ircII/patches/patch-ad
new file mode 100644
index 00000000000..5ebfe693f18
--- /dev/null
+++ b/chat/ircII/patches/patch-ad
@@ -0,0 +1,34 @@
+$NetBSD: patch-ad,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
+
+--- source/irc.c.orig Thu Aug 31 13:52:49 2000
++++ source/irc.c Mon Sep 18 00:12:27 2000
+@@ -154,6 +154,7 @@
+ * message anywhere */
+ int qflag; /* set if we ignore .ircrc */
+ int bflag; /* set if we load .ircrc before connecting */
++int tflag; /* don't use termcap ti/te sequences */
+ time_t idle_time; /* last time the user hit a key */
+ time_t start_time; /* epoch time we started */
+
+@@ -207,6 +208,8 @@
+ -b\t\tload .ircrc before connecting to a server\n\
+ -l <file>\tloads <file> in place of your .ircrc\n\
+ -I <file>\tloads <file> in place of your .ircquick\n\
++ -t\t\tdo not use termcap ti and te sequences at startup\n\
++ -T\t\tuse termcap ti and te sequences at startup (default)\n\
+ -icb\t\tuse ICB connections by default\n\
+ -irc\t\tuse IRC connections by default\n\
+ icb [same switches] (default to -icb)\n";
+@@ -538,6 +541,12 @@
+ break;
+ case 'S':
+ using_server_process = 1;
++ break;
++ case 't':
++ tflag = 1;
++ break;
++ case 'T':
++ tflag = 0;
+ break;
+ case 'q':
+ if (bflag)
diff --git a/chat/ircII/patches/patch-ae b/chat/ircII/patches/patch-ae
new file mode 100644
index 00000000000..cc3a26b187a
--- /dev/null
+++ b/chat/ircII/patches/patch-ae
@@ -0,0 +1,35 @@
+$NetBSD: patch-ae,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
+
+--- source/term.c.orig Sun Jun 11 09:04:56 2000
++++ source/term.c Mon Sep 18 00:12:27 2000
+@@ -339,7 +339,7 @@
+
+ if (CS)
+ tputs_x(tgoto(CS, LI - 1, 0));
+- if (TE)
++ if (!tflag && TE)
+ tputs_x(TE);
+ term_move_cursor(0, LI - 1);
+ term_reset_flag = 1;
+@@ -381,7 +381,7 @@
+ # endif /* mips */
+ #endif /* SIGSTOP && SIGTSTP */
+
+- if (TI)
++ if (!tflag && TI)
+ tputs_x(TI);
+ }
+
+@@ -461,10 +461,10 @@
+ term_clear_to_eol = term_null_function;
+
+ TE = tgetstr("te", &ptr);
+- if (TE && (TI = tgetstr("ti", &ptr)) != (char *) 0)
++ if (!tflag && TE && (TI = tgetstr("ti", &ptr)) != (char *) 0 )
+ tputs_x(TI);
+ else
+- TI = (char *) 0;
++ TE = TI = (char *) 0;
+
+ /* if ((ND = tgetstr("nd", &ptr)) || (ND = tgetstr("kr", &ptr))) */
+ if ((ND = tgetstr("nd", &ptr)) != NULL)
diff --git a/chat/ircII/patches/patch-af b/chat/ircII/patches/patch-af
new file mode 100644
index 00000000000..c90d635108d
--- /dev/null
+++ b/chat/ircII/patches/patch-af
@@ -0,0 +1,34 @@
+$NetBSD: patch-af,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
+
+--- doc/ircII.1.orig Thu Jul 13 06:57:30 2000
++++ doc/ircII.1 Mon Sep 18 16:41:29 2000
+@@ -14,6 +14,8 @@
+ .RB [ \-F ]
+ .RB [ \-s ]
+ .RB [ \-S ]
++.RB [ \-t ]
++.RB [ \-T ]
+ .RB [ \-d ]
+ .IR [ nickname
+ .IR [ "server list" ]]
+@@ -76,6 +78,20 @@
+ Start up the ircio process to connect to the
+ .I IRC
+ server.
++.TP
++.B \-t
++Don't use the termcap
++.I ti
++and
++.I te
++sequences when starting and exiting.
++.TP
++.B \-T
++Do use the termcap
++.I ti
++and
++.I te
++sequences when starting and exiting if they exist (default).
+ .TP
+ .B \-d
+ Start in "dumb" mode.