diff options
author | agc <agc@pkgsrc.org> | 2003-03-27 12:56:21 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2003-03-27 12:56:21 +0000 |
commit | 01c292f0df77172bf18de985183fea27d4231541 (patch) | |
tree | 88cbb1da2bdaa4dfdb12caa002bbea9e47e991d3 | |
parent | 0ea228b0f2d0471ba3a0bdd487be9e60f60fe982 (diff) | |
download | pkgsrc-01c292f0df77172bf18de985183fea27d4231541.tar.gz |
Update mined from version 2000.5 to 2000.6
Changes from previous version:
> New features in this release:
> * bidirectional terminal support handles Arabic ligature joining
> (LAM/ALEF)
> * new command to go backward and forward along text positions
> after search and other operations
>
> Main enhancements:
> (for details see the change log)
> * Added recognition of mouse wheel control sequences and attached
> according behaviour - untested as I don't have a mouse wheel.
> * New key interpretations for shift-Return (shift-Enter) and
> control-Return (control-Enter) to insert Unicode paragraph
> separators and line separators respectively if Unicode
> line-end handling is enabled.
> * Improved coded and mnemonic character entry on prompt line.
> * Fixed display problems in separated display mode
> (for Unicode combined characters) on the status line.
> * Reviewed various commands for remaining fixes in UTF-8 handling.
and patch-aa was incorporated in the standard distribution by the author.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | editors/mined/Makefile | 4 | ||||
-rw-r--r-- | editors/mined/distinfo | 7 | ||||
-rw-r--r-- | editors/mined/patches/patch-aa | 39 |
4 files changed, 7 insertions, 46 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 65393ddcd80..e2f4142ae1c 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.1782 2003/03/27 08:44:52 zuntum Exp $ +$NetBSD: CHANGES,v 1.1783 2003/03/27 12:58:09 agc Exp $ Changes to the packages collection and infrastructure in 2003: @@ -1324,3 +1324,4 @@ Changes to the packages collection and infrastructure in 2003: Updated pkglint to 3.47 [atatat 2003-03-26] Updated rxvt to 2.7.10 [wiz 2003-03-27] Updated polsms to 1.9.1h [zuntum 2003-03-27] + Updated mined to 2000.6 [agc 2003-03-27] diff --git a/editors/mined/Makefile b/editors/mined/Makefile index ffc90948389..86f93f0e9cc 100644 --- a/editors/mined/Makefile +++ b/editors/mined/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ +# $NetBSD: Makefile,v 1.2 2003/03/27 12:56:21 agc Exp $ # -DISTNAME= mined-2000.5 +DISTNAME= mined-2000.6 CATEGORIES= editors MASTER_SITES= http://towo.net/mined/ diff --git a/editors/mined/distinfo b/editors/mined/distinfo index 920d8081e32..74b769cf82f 100644 --- a/editors/mined/distinfo +++ b/editors/mined/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ +$NetBSD: distinfo,v 1.2 2003/03/27 12:56:21 agc Exp $ -SHA1 (mined-2000.5.tar.gz) = 76e08c1ecdf0a18be48dcdf624c8652c80a4a293 -Size (mined-2000.5.tar.gz) = 620587 bytes -SHA1 (patch-aa) = b6cdd15625e8651b61d91196552a56c296132237 +SHA1 (mined-2000.6.tar.gz) = 93c17cce64fb7259f898ee0822e55ae2f9fbec95 +Size (mined-2000.6.tar.gz) = 647428 bytes diff --git a/editors/mined/patches/patch-aa b/editors/mined/patches/patch-aa deleted file mode 100644 index 229206353a1..00000000000 --- a/editors/mined/patches/patch-aa +++ /dev/null @@ -1,39 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/03/05 14:25:36 agc Exp $ - ---- makefile.bsd 2003/03/03 15:02:38 1.1 -+++ makefile.bsd 2003/03/03 15:04:03 -@@ -4,10 +4,10 @@ - - ############################################################################# - # Where and how to install --prefix = $(INSTALLROOT)/usr/local -+prefix = $(PREFIX) - bindir = $(prefix)/bin - helpdir = $(prefix)/share/help --mandir = $(prefix)/share/man -+mandir = $(prefix)/man - INSTALL = install - #INSTALL = /bin/cp -p - -@@ -16,7 +16,7 @@ - # compilation target options - - # terminal handling mode 1: termio --#SCREEN = -DTERMIO -+SCREEN = -DTERMIO - # link termcap functions: - #SLIB = -ltermcap # usual termcap library - #SLIB = -L/usr/lib/termcap -ltermcap # if deprecated (Linux) -@@ -24,10 +24,10 @@ - SLIB = -lncurses # includes termcap library (Linux) - - # terminal handling mode 2: sgtty (old, BSD) --SCREEN = -DSGTTY -+#SCREEN = -DSGTTY - #SLIB = -ltermcap - # the following was reported to compile better on some BSD system: --SLIB = -L/usr/local/lib -lncurses # includes termcap library -+#SLIB = -L/usr/local/lib -lncurses # includes termcap library - - # terminal handling mode 3: curses - # Choose curses only in case of emergency, else better leave it. |