summaryrefslogtreecommitdiff
path: root/editors/biew
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-04-22 02:06:20 +0000
committerWill Andrews <will@FreeBSD.org>2000-04-22 02:06:20 +0000
commitab660dfb528b4fa24ca2d4c806ea0ecc081ccd5d (patch)
tree53561481bf656869205391ca9392937ff5c32673 /editors/biew
parentUpdate MASTER_SITES. MD5 checksums were verified. (diff)
Update biew to 5.04.
PR: 18137 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes: svn path=/head/; revision=27875
Diffstat (limited to 'editors/biew')
-rw-r--r--editors/biew/Makefile4
-rw-r--r--editors/biew/distinfo2
-rw-r--r--editors/biew/files/patch-aa18
-rw-r--r--editors/biew/files/patch-ac26
-rw-r--r--editors/biew/files/patch-ad17
-rw-r--r--editors/biew/files/patch-ae17
-rw-r--r--editors/biew/files/patch-af14
7 files changed, 57 insertions, 41 deletions
diff --git a/editors/biew/Makefile b/editors/biew/Makefile
index 6c5d06413ab1..794d72762354 100644
--- a/editors/biew/Makefile
+++ b/editors/biew/Makefile
@@ -6,11 +6,11 @@
#
PORTNAME= biew
-PORTVERSION= 5.01
+PORTVERSION= 5.04
CATEGORIES= editors
MASTER_SITES= ftp://biew.sourceforge.net/pub/biew/5.x/src/ \
http://download.sourceforge.net/biew/
-DISTNAME= ${PORTNAME}-501
+DISTNAME= ${PORTNAME}-504
MAINTAINER= ports@FreeBSD.org
diff --git a/editors/biew/distinfo b/editors/biew/distinfo
index 263469feb6e3..31beea94fef0 100644
--- a/editors/biew/distinfo
+++ b/editors/biew/distinfo
@@ -1 +1 @@
-MD5 (biew-501.tar.bz2) = b2ce070901ee1e0b2949a595bf3c087f
+MD5 (biew-504.tar.bz2) = 0be88c8ec6182834c6a3e84ad4279bfe
diff --git a/editors/biew/files/patch-aa b/editors/biew/files/patch-aa
index 17fd9b7dcc8a..f208be07b225 100644
--- a/editors/biew/files/patch-aa
+++ b/editors/biew/files/patch-aa
@@ -1,11 +1,11 @@
---- lib/sysdep/generic/unix/os_dep.c.orig Fri Mar 3 11:08:20 2000
-+++ lib/sysdep/generic/unix/os_dep.c Sat Mar 4 14:35:49 2000
-@@ -46,7 +46,7 @@
+--- lib/sysdep/generic/unix/os_dep.c.orig Fri Apr 14 15:02:21 2000
++++ lib/sysdep/generic/unix/os_dep.c Mon Apr 17 23:40:15 2000
+@@ -29,7 +29,7 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
- char * __get_help_name(void)
- {
-- return "/usr/lib/biew/biew.hlp";
-+ return "%%PREFIX%%/share/biew/biew.hlp";
- }
+-#define LIBDIR "/usr/lib"
++#define LIBDIR "%%PREFIX%%/share/biew"
- static void cleanup(int sig)
+ static char _ini_name[FILENAME_MAX + 1];
+ static char _rc_dir_name[FILENAME_MAX + 1];
diff --git a/editors/biew/files/patch-ac b/editors/biew/files/patch-ac
index bca4e4867457..566dcd91e9fa 100644
--- a/editors/biew/files/patch-ac
+++ b/editors/biew/files/patch-ac
@@ -1,6 +1,24 @@
---- makefile.inc.orig Fri Mar 3 04:02:14 2000
-+++ makefile.inc Mon Mar 20 18:43:11 2000
-@@ -121,7 +121,7 @@
+--- makefile.inc.orig Fri Apr 14 15:02:39 2000
++++ makefile.inc Tue Apr 18 00:26:11 2000
+@@ -78,14 +78,14 @@
+ # screen library to use: SLANG/CURSES/VT100
+ #
+
+-USE_SLANG = y
+-#USE_CURSES = y
++#USE_SLANG = y
++USE_CURSES = y
+ #USE_VT100 = y
+
+ #
+
+ USE_SELECT = y # system has select() call?
+-#USE_MOUSE = y # try to use mouse (doesnot work yet)
++USE_MOUSE = y # try to use mouse (doesnot work yet)
+
+
+ HOST=unix
+@@ -130,7 +130,7 @@
##############################################################################
ifdef CONFIG_I386
MACHINE=i386
@@ -9,7 +27,7 @@
endif
ifdef CONFIG_I486
MACHINE=i386
-@@ -151,14 +151,14 @@
+@@ -160,14 +160,14 @@
# If you do not have GNU development system, modify RM CC LD variables #
##############################################################################
RM=rm -f
diff --git a/editors/biew/files/patch-ad b/editors/biew/files/patch-ad
index 91bd51fc9b4d..dd42656fdf73 100644
--- a/editors/biew/files/patch-ad
+++ b/editors/biew/files/patch-ad
@@ -1,15 +1,14 @@
---- lib/sysdep/generic/unix/vio.c Fri Mar 3 11:08:20 2000
-+++ lib/sysdep/generic/unix/vio.c Sat Mar 4 15:36:46 2000
-@@ -32,8 +32,11 @@
- #define VMAX_Y 100
+--- lib/sysdep/generic/unix/vio.c.orig Fri Apr 14 15:02:21 2000
++++ lib/sysdep/generic/unix/vio.c Mon Apr 17 23:49:05 2000
+@@ -71,7 +71,11 @@
+ #endif
- #ifdef HAVE_NCURSES
--
+ #ifdef _CURSES_
+#if defined(__FreeBSD_version) && __FreeBSD_version < 400010
+#include <ncurses/curses.h>
+#else
#include <curses.h>
+#endif
-
- const static int __ncurses_color[8] = {
- COLOR_BLACK,
+ #define _bg(x) (((x) >> 4) & 7)
+ #define _fg(x) ((x) & 7)
+ #define _2cpair(x) (_bg(x) * 010 + _fg(x))
diff --git a/editors/biew/files/patch-ae b/editors/biew/files/patch-ae
index 0f146734e9d9..9914bf2a19d1 100644
--- a/editors/biew/files/patch-ae
+++ b/editors/biew/files/patch-ae
@@ -1,15 +1,14 @@
---- lib/sysdep/generic/unix/kbd_code.h Fri Mar 3 11:02:00 2000
-+++ lib/sysdep/generic/unix/kbd_code.h Sat Mar 4 15:59:28 2000
-@@ -58,8 +58,11 @@
- */
+--- lib/sysdep/generic/unix/kbd_code.h.orig Fri Apr 14 15:02:31 2000
++++ lib/sysdep/generic/unix/kbd_code.h Mon Apr 17 23:48:22 2000
+@@ -78,7 +78,11 @@
- #ifdef HAVE_NCURSES
--
+
+ #ifdef _CURSES_
+#if defined(__FreeBSD_version) && __FreeBSD_version < 400010
+#include <ncurses/curses.h>
+#else
#include <curses.h>
+#endif
-
- /*
- All non-symbol keys (function keys, arrows, etc) must be xx00
+ #define _2B(x) (((x) & 0xff) << 8)
+ /* #define KE_ENTER _2B(KEY_ENTER) */
+ #define KE_BKSPACE _2B(KEY_BACKSPACE)
diff --git a/editors/biew/files/patch-af b/editors/biew/files/patch-af
index f8ca7a7d94ed..14e13f189e65 100644
--- a/editors/biew/files/patch-af
+++ b/editors/biew/files/patch-af
@@ -1,14 +1,14 @@
---- lib/sysdep/generic/unix/keyboard.c Fri Mar 3 11:08:20 2000
-+++ lib/sysdep/generic/unix/keyboard.c Sat Mar 4 15:36:23 2000
-@@ -25,7 +25,11 @@
-
- #ifdef HAVE_NCURSES
+--- lib/sysdep/generic/unix/keyboard.c.orig Fri Apr 14 15:02:21 2000
++++ lib/sysdep/generic/unix/keyboard.c Tue Apr 18 00:15:50 2000
+@@ -30,7 +30,11 @@
+ #endif
+ #ifdef _CURSES_
+#if defined(__FreeBSD_version) && __FreeBSD_version < 400010
+#include <ncurses/curses.h>
+#else
#include <curses.h>
+#endif
-
#ifdef HAVE_MOUSE
- #include <limits.h>
+ MEVENT me;
+ #endif