aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1998-01-30 03:53:08 +0800
committerache <ache@FreeBSD.org>1998-01-30 03:53:08 +0800
commit550867422e080a1f1efc9574a62cc8b53920d7aa (patch)
tree0fac471b991a529d598000d0a95982568ba44ce3 /mail
parent36bec4f7f4983452e934f7f266de3b72e5804bc8 (diff)
downloadfreebsd-ports-gnome-550867422e080a1f1efc9574a62cc8b53920d7aa.tar.gz
freebsd-ports-gnome-550867422e080a1f1efc9574a62cc8b53920d7aa.tar.zst
freebsd-ports-gnome-550867422e080a1f1efc9574a62cc8b53920d7aa.zip
Teach pine/pico about End key
Set proper directory for pico mail check Trust termcap more then built-in defaults
Diffstat (limited to 'mail')
-rw-r--r--mail/pine4/files/patch-an32
-rw-r--r--mail/pine4/files/patch-ap20
2 files changed, 52 insertions, 0 deletions
diff --git a/mail/pine4/files/patch-an b/mail/pine4/files/patch-an
new file mode 100644
index 000000000000..c0b69d687620
--- /dev/null
+++ b/mail/pine4/files/patch-an
@@ -0,0 +1,32 @@
+*** pico/os_unix.h.orig Thu Jun 13 00:47:23 1996
+--- pico/os_unix.h Thu Jan 29 21:29:51 1998
+***************
+*** 122,133 ****
+ /*
+ * Place where mail gets delivered (for pico's new mail checking)
+ */
+ #if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
+ #define MAILDIR "/usr/mail"
+ #else
+ #define MAILDIR "/usr/spool/mail"
+ #endif
+!
+
+ /*
+ * What and where the tool that checks spelling is located. If this is
+--- 122,136 ----
+ /*
+ * Place where mail gets delivered (for pico's new mail checking)
+ */
++ #ifdef __FreeBSD__
++ #define MAILDIR "/var/mail"
++ #else
+ #if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
+ #define MAILDIR "/usr/mail"
+ #else
+ #define MAILDIR "/usr/spool/mail"
+ #endif
+! #endif
+
+ /*
+ * What and where the tool that checks spelling is located. If this is
diff --git a/mail/pine4/files/patch-ap b/mail/pine4/files/patch-ap
new file mode 100644
index 000000000000..4a7155a3732d
--- /dev/null
+++ b/mail/pine4/files/patch-ap
@@ -0,0 +1,20 @@
+*** pine/ttyout.c.bak Thu Jul 11 05:45:56 1996
+--- pine/ttyout.c Thu Jan 29 22:17:48 1998
+***************
+*** 289,295 ****
+ _kppu = tgetstr("kP", &ptr);
+ _kppd = tgetstr("kN", &ptr);
+ _kphome = tgetstr("kh", &ptr);
+! _kpend = tgetstr("kE", &ptr);
+ _kpdel = tgetstr("kD", &ptr);
+ _kf1 = tgetstr("k1", &ptr);
+ _kf2 = tgetstr("k2", &ptr);
+--- 289,296 ----
+ _kppu = tgetstr("kP", &ptr);
+ _kppd = tgetstr("kN", &ptr);
+ _kphome = tgetstr("kh", &ptr);
+! if((_kpend = tgetstr("@7", &ptr)) == NULL)
+! _kpend = tgetstr("kE", &ptr);
+ _kpdel = tgetstr("kD", &ptr);
+ _kf1 = tgetstr("k1", &ptr);
+ _kf2 = tgetstr("k2", &ptr);