diff options
author | jedgar <jedgar@FreeBSD.org> | 2002-02-19 20:17:09 +0800 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2002-02-19 20:17:09 +0800 |
commit | 611a4da3580a1c44cdd916b398e981d46245675c (patch) | |
tree | 18db3f1eb9c38239072282ae52149ba9e2c10324 /editors | |
parent | da6a14cea2283cde135c3c29400a6f6f52e933c1 (diff) | |
download | freebsd-ports-gnome-611a4da3580a1c44cdd916b398e981d46245675c.tar.gz freebsd-ports-gnome-611a4da3580a1c44cdd916b398e981d46245675c.tar.zst freebsd-ports-gnome-611a4da3580a1c44cdd916b398e981d46245675c.zip |
Update port to 1.3.1.
Submitted by: naddy
Diffstat (limited to 'editors')
-rw-r--r-- | editors/bvi/Makefile | 2 | ||||
-rw-r--r-- | editors/bvi/distinfo | 2 | ||||
-rw-r--r-- | editors/bvi/files/patch-ac | 20 | ||||
-rw-r--r-- | editors/bvi/files/patch-bmore.h | 14 |
4 files changed, 16 insertions, 22 deletions
diff --git a/editors/bvi/Makefile b/editors/bvi/Makefile index daec6e42b331..dd52e5abef97 100644 --- a/editors/bvi/Makefile +++ b/editors/bvi/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bvi -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.1 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bvi diff --git a/editors/bvi/distinfo b/editors/bvi/distinfo index 11a8d8e0932f..095aaadbfaef 100644 --- a/editors/bvi/distinfo +++ b/editors/bvi/distinfo @@ -1 +1 @@ -MD5 (bvi-1.3.0.src.tar.gz) = af5e019e4e4ba9fcf1ffb9c24977b41b +MD5 (bvi-1.3.1.src.tar.gz) = b9d77c57bda2e019207a1874d9bb4dea diff --git a/editors/bvi/files/patch-ac b/editors/bvi/files/patch-ac deleted file mode 100644 index 12dab0f0015a..000000000000 --- a/editors/bvi/files/patch-ac +++ /dev/null @@ -1,20 +0,0 @@ ---- bvi.c.orig Tue Oct 24 09:09:08 2000 -+++ bvi.c Wed Oct 25 18:42:07 2000 -@@ -619,7 +619,7 @@ - if (count > 0) - do_delete((off_t)count, current); - else if (count < 0) -- do_back(-count, current); -+ do_back((off_t)-count, current); - if (ch == 'c') { - precount = 1; - undo_count = edit('i'); -@@ -637,7 +637,7 @@ - break; - case 'X': - sprintf(rep_buf, "%ldX", precount); -- do_back(precount, current); -+ do_back((off_t)precount, current); - break; - default: - flushinp(); diff --git a/editors/bvi/files/patch-bmore.h b/editors/bvi/files/patch-bmore.h new file mode 100644 index 000000000000..e1a5556421ef --- /dev/null +++ b/editors/bvi/files/patch-bmore.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- bmore.h.orig Tue Feb 19 00:41:05 2002 ++++ bmore.h Tue Feb 19 00:41:22 2002 +@@ -48,7 +48,7 @@ + # include <unistd.h> + #if HAVE_NCURSES_H + # include <ncurses.h> +-# include <ncurses/term.h> ++# include <term.h> + #else + # include <curses.h> + # include <term.h> |