summaryrefslogtreecommitdiff
path: root/editors/mined/patches
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/mined/patches
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/mined/patches')
-rw-r--r--editors/mined/patches/patch-aa39
1 files changed, 0 insertions, 39 deletions
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.