summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authoragc <agc>2003-03-27 12:56:21 +0000
committeragc <agc>2003-03-27 12:56:21 +0000
commitaa252d47363b4b091d1c62c05b5b2d654aaea237 (patch)
tree88cbb1da2bdaa4dfdb12caa002bbea9e47e991d3 /editors
parenta37b4ea679cd74d177a61633dc323d41d1caf3fc (diff)
downloadpkgsrc-aa252d47363b4b091d1c62c05b5b2d654aaea237.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.
Diffstat (limited to 'editors')
-rw-r--r--editors/mined/Makefile4
-rw-r--r--editors/mined/distinfo7
-rw-r--r--editors/mined/patches/patch-aa39
3 files changed, 5 insertions, 45 deletions
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.