diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2002-02-19 12:17:09 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2002-02-19 12:17:09 +0000 |
commit | a583b7bd24dcf226ecd2b0839ffa90e71b32cf30 (patch) | |
tree | 312c3ebd093cbb8ade581e13327feb61edac2511 /editors/bvi | |
parent | 571379f50f72d2fc3f4d2cb9d6577c4112a69b25 (diff) | |
download | ports-a583b7bd24dcf226ecd2b0839ffa90e71b32cf30.tar.gz ports-a583b7bd24dcf226ecd2b0839ffa90e71b32cf30.zip |
Update port to 1.3.1.
Submitted by: naddy
Notes
Notes:
svn path=/head/; revision=54907
Diffstat (limited to 'editors/bvi')
-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> |