summaryrefslogtreecommitdiff
path: root/editors/beav
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2005-12-09 13:56:51 +0000
committerjoerg <joerg@pkgsrc.org>2005-12-09 13:56:51 +0000
commita99eaa10dd11d390f615d6c8d5c315086af55d9b (patch)
tree957f283bf24102b9c7f4f3fefa63c75f6e2be66a /editors/beav
parent5f6f895ac4621e7b7efc909d27c845752df86faf (diff)
downloadpkgsrc-a99eaa10dd11d390f615d6c8d5c315086af55d9b.tar.gz
Fix errno. Remove "prototypes", which confused GCC 3.4. Add DragonFly.
Diffstat (limited to 'editors/beav')
-rw-r--r--editors/beav/distinfo8
-rw-r--r--editors/beav/patches/patch-ab39
-rw-r--r--editors/beav/patches/patch-ae15
-rw-r--r--editors/beav/patches/patch-af12
-rw-r--r--editors/beav/patches/patch-ag12
-rw-r--r--editors/beav/patches/patch-ai12
6 files changed, 81 insertions, 17 deletions
diff --git a/editors/beav/distinfo b/editors/beav/distinfo
index 070eaab85d1..40dbc52143a 100644
--- a/editors/beav/distinfo
+++ b/editors/beav/distinfo
@@ -1,9 +1,13 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 17:15:10 agc Exp $
+$NetBSD: distinfo,v 1.4 2005/12/09 13:56:51 joerg Exp $
SHA1 (beav_1.40-11.tar.gz) = 2d15f44fcb1988c90b2803ad52c2488862505c1a
RMD160 (beav_1.40-11.tar.gz) = 7ccd25dedea314e923dad0c54f859025ddf25a19
Size (beav_1.40-11.tar.gz) = 131116 bytes
SHA1 (patch-aa) = f41e723c0ec5e1dcdd2160e0c71fb960af5d0ca7
-SHA1 (patch-ab) = dabe0bab94b556d8abe327e65da287a52892d2aa
+SHA1 (patch-ab) = 080d2fd3f0ed805175b75788cc7be1e4e38a6719
SHA1 (patch-ac) = 44c1414034a8515701d37e7f35e1563eca41f1ab
SHA1 (patch-ad) = a3f54c403af9fca03fe492d8a92441f1d266933e
+SHA1 (patch-ae) = 7ef6ade28bc4861c680f75e27ba5968f1f1b8eed
+SHA1 (patch-af) = 7990538e06f8cf08785cc512243d8609480d5727
+SHA1 (patch-ag) = 27788a78334a83abb48b964f219dfbffce4ccc79
+SHA1 (patch-ai) = 83071e6e15bd3875c278660db9038b249ec2f64d
diff --git a/editors/beav/patches/patch-ab b/editors/beav/patches/patch-ab
index 0aa7bd92d7d..4cb19130321 100644
--- a/editors/beav/patches/patch-ab
+++ b/editors/beav/patches/patch-ab
@@ -1,16 +1,25 @@
-$NetBSD: patch-ab,v 1.1 1998/12/20 21:12:58 bad Exp $
+$NetBSD: patch-ab,v 1.2 2005/12/09 13:56:51 joerg Exp $
-*** beav-140.orig/termio.c Wed Nov 30 18:43:35 1994
---- termio.c Sat Jul 1 17:56:09 1995
-***************
-*** 12,17 ****
---- 12,20 ----
- #include <signal.h>
- #ifdef BSD
- #include <sys/ioctl.h>
-+ #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
-+ #include <sys/ioctl_compat.h>
-+ #endif
- #else
- #ifdef OS2
- #ifndef __EMX__
+--- termio.c.orig 1995-08-20 18:05:21.000000000 +0000
++++ termio.c
+@@ -12,6 +12,9 @@
+ #include <signal.h>
+ #ifdef BSD
+ #include <sys/ioctl.h>
++#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
++#include <sys/ioctl_compat.h>
++#endif
+ #else
+ #ifdef OS2
+ #ifndef __EMX__
+@@ -58,10 +61,6 @@ struct termio ntermio; /* charactoristi
+ #endif /* OS2 */
+ #endif /* BSD */
+
+-#ifndef OS2
+-extern errno; /* System error number -- Necessary when compiling in BSD 1.13 */
+-#endif
+-
+ int nrow; /* Terminal size, rows. */
+ int ncol; /* Terminal size, columns. */
+
diff --git a/editors/beav/patches/patch-ae b/editors/beav/patches/patch-ae
new file mode 100644
index 00000000000..5a7dcf63235
--- /dev/null
+++ b/editors/beav/patches/patch-ae
@@ -0,0 +1,15 @@
+$NetBSD: patch-ae,v 1.1 2005/12/09 13:56:51 joerg Exp $
+
+--- symbol.c.orig 2005-12-09 13:51:59.000000000 +0000
++++ symbol.c
+@@ -6,10 +6,6 @@
+ */
+ #include "def.h"
+
+-void keyadd ();
+-void keydup ();
+-
+-
+ extern char MSG_byte_shift[];
+ extern char MSG_back_char[];
+ extern char MSG_quit[];
diff --git a/editors/beav/patches/patch-af b/editors/beav/patches/patch-af
new file mode 100644
index 00000000000..64534317173
--- /dev/null
+++ b/editors/beav/patches/patch-af
@@ -0,0 +1,12 @@
+$NetBSD: patch-af,v 1.1 2005/12/09 13:56:51 joerg Exp $
+
+--- random.c.orig 2005-12-09 13:51:09.000000000 +0000
++++ random.c
+@@ -72,7 +72,6 @@ extern bool read_pat_mode;
+ extern bool dont_repeat;
+ extern BUFFER sav_buf;
+
+-char dec_chr_ok ();
+ ulong get_long ();
+ void wind_on_dot_all ();
+
diff --git a/editors/beav/patches/patch-ag b/editors/beav/patches/patch-ag
new file mode 100644
index 00000000000..915db662f30
--- /dev/null
+++ b/editors/beav/patches/patch-ag
@@ -0,0 +1,12 @@
+$NetBSD: patch-ag,v 1.1 2005/12/09 13:56:51 joerg Exp $
+
+--- file.c.orig 2005-12-09 13:50:30.000000000 +0000
++++ file.c
+@@ -9,7 +9,6 @@
+ char load_file ();
+ char readin ();
+ void makename ();
+-bool writeout ();
+ bool parse_f_name ();
+ A32 ffseek ();
+ A32 file_len ();
diff --git a/editors/beav/patches/patch-ai b/editors/beav/patches/patch-ai
new file mode 100644
index 00000000000..eb3588a35b7
--- /dev/null
+++ b/editors/beav/patches/patch-ai
@@ -0,0 +1,12 @@
+$NetBSD: patch-ai,v 1.1 2005/12/09 13:56:51 joerg Exp $
+
+--- basic.c.orig 2005-12-09 13:48:37.000000000 +0000
++++ basic.c
+@@ -9,7 +9,6 @@
+
+ #include "def.h"
+
+-bool move_ptr ();
+ bool forwchar ();
+ bool wind_on_dot ();
+ bool backline ();