diff options
author | tnn <tnn@pkgsrc.org> | 2007-08-17 23:24:11 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-08-17 23:24:11 +0000 |
commit | 72cb3624d02248b32a45dc0cc1e62ad2c8bf521d (patch) | |
tree | 735094186f07e640dc33d14be198f0e9a0eb0d5e /editors | |
parent | 8e663da3b0be90d88f2712f86417f7cdaaf6d3d2 (diff) | |
download | pkgsrc-72cb3624d02248b32a45dc0cc1e62ad2c8bf521d.tar.gz |
Update to mined-2000.14; requested by upstream. Pick up maintainership.
While here add DESTDIR support.
Changes in 2000.14:
Text editing features:
* Case-insensitive search (except when searching for an identifier).
* New command Alt-x toggles preceding character and its hexadecimal code.
Character encoding support enhancements:
* Additional option -E? just determines and displays text file encoding(s).
* Additional option +E? just determines and displays terminal encoding.
* Separated display of "isolated" combining characters (e.g. after TAB).
* Improved text encoding auto-detection:
* Improved detection of CJK encodings vs. 8-bit encodings.
* Added auto-detection of Windows-"ANSI" (CP1252), PC-Latin (CP850), MacRoman.
* Improved configuration of auto-detection.
Character input enhancements:
* New shortcuts for input of plain quote marks (in smart quotes mode).
Interworking enhancements: Terminal encoding handling:
* Added options -f / -F to indicate limited font coverage of special characters.
* Detecting and handling non-Unicode terminal with Arabic ligature joining.
* Detecting and handling special width behaviour of rxvt, mlterm, konsole
concerning unassigned characters, non-BMP, or non-Unicode characters.
* Applying display replacement for illegal Unicode characters by default
(codes ending with FFFE/FFFF, surrogates, non-Unicode code points).
* Fixed a lot of other remaining width display inconsistencies.
* Making use of window focus out/in reports (xterm 224).
* Workaround for xterm 224 bug which could lock up the terminal.
* Adjusting display details to properties of gnome-terminal, konsole.
* Considering termcap information of function key escape sequences.
Miscellaneous changes:
* Increased speed of some UTF-8 search operations by a factor of ~ 40.
* Colour highlighting of DOS/Mac line end indications.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/mined/Makefile | 9 | ||||
-rw-r--r-- | editors/mined/distinfo | 10 | ||||
-rw-r--r-- | editors/mined/patches/patch-ac | 4 |
3 files changed, 12 insertions, 11 deletions
diff --git a/editors/mined/Makefile b/editors/mined/Makefile index c4927586d9e..4151e0a3312 100644 --- a/editors/mined/Makefile +++ b/editors/mined/Makefile @@ -1,19 +1,20 @@ -# $NetBSD: Makefile,v 1.17 2007/06/28 19:44:09 joerg Exp $ +# $NetBSD: Makefile,v 1.18 2007/08/17 23:24:11 tnn Exp $ # -DISTNAME= mined-2000.13.2 +DISTNAME= mined-2000.14 CATEGORIES= editors MASTER_SITES= http://towo.net/mined/ -MAINTAINER= pkgsrc-users@NetBSD.org +MAINTAINER= tnn@NetBSD.org HOMEPAGE= http://towo.net/mined/ COMMENT= Html-aware editor +PKG_DESTDIR_SUPPORT= user-destdir MAKE_FILE= makefile USE_TOOLS+= gmake post-install: - ${CHMOD} -x ${PREFIX}/share/mined/conf_user/xinitrc.mined + ${CHMOD} -x ${DESTDIR}${PREFIX}/share/mined/conf_user/xinitrc.mined .include "../../devel/ncurses/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/editors/mined/distinfo b/editors/mined/distinfo index ed9269289d8..26c6a478c1f 100644 --- a/editors/mined/distinfo +++ b/editors/mined/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2007/06/21 13:48:25 tnn Exp $ +$NetBSD: distinfo,v 1.8 2007/08/17 23:24:12 tnn Exp $ -SHA1 (mined-2000.13.2.tar.gz) = 603ba089b4499ffede7b3397c94ae1fd655438e9 -RMD160 (mined-2000.13.2.tar.gz) = a0a6f70fd48551c071d47fe18d0e395f5b74ccbc -Size (mined-2000.13.2.tar.gz) = 3915266 bytes -SHA1 (patch-ac) = 143b4589cac371b18c8e1670202bcd8b1f253cba +SHA1 (mined-2000.14.tar.gz) = 1357e21b4ed05c605d2a28a2b18e94bb772c1feb +RMD160 (mined-2000.14.tar.gz) = bc9d5f7038bef3c11d11e66e2c8ae5e0c227c9e9 +Size (mined-2000.14.tar.gz) = 3952865 bytes +SHA1 (patch-ac) = a9eef90ff05b633129aacf5b58fa75b9c785ceeb SHA1 (patch-ad) = ad901718e77a44fb1bd3f2165b4b1e6c4994a884 SHA1 (patch-ae) = d842d09a248557dda9a5976b40e0adaae631fcb8 diff --git a/editors/mined/patches/patch-ac b/editors/mined/patches/patch-ac index f6e6f4e0622..464132cbf36 100644 --- a/editors/mined/patches/patch-ac +++ b/editors/mined/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.2 2007/06/21 13:48:27 tnn Exp $ +$NetBSD: patch-ac,v 1.3 2007/08/17 23:24:12 tnn Exp $ --- src/makefile.bsd.orig 2006-10-18 00:00:00.000000000 +0200 +++ src/makefile.bsd @@ -7,7 +7,7 @@ $NetBSD: patch-ac,v 1.2 2007/06/21 13:48:27 tnn Exp $ # directories for target "make install" -prefix = $(root)/usr -+prefix = ${PREFIX} ++prefix = ${DESTDIR}${PREFIX} bindir = $(prefix)/bin -mandir = $(prefix)/share/man +mandir = $(prefix)/${PKGMANDIR} |