diff options
author | mjl <mjl@pkgsrc.org> | 2001-10-31 00:03:16 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2001-10-31 00:03:16 +0000 |
commit | 01fc879287c5ac9fe60255dc5aa1a20672ffa012 (patch) | |
tree | 2fe072f9898a3c03baacddc95e9c2b931ad5e003 /editors/nedit/Makefile | |
parent | 5f35ce12614a29dd720b0a2716ece02f8dd61562 (diff) | |
download | pkgsrc-01fc879287c5ac9fe60255dc5aa1a20672ffa012.tar.gz |
Update to 5.2. Notable changes and bug fixes include:
- Added built-in patterns for CSS, XML, and regular expressions (Regex).
Many other pattern updates.
- Support for high- and true-color systems. NEdit now will automatically
select the best visual from your X server. This reduces the chance of
running out of colors.
- New features in the Find and Replace dialogs:
o Replacement across multiple windows in a session.
o Case sensitivity may be set independently of regular expressions.
o Add "Replace and Find" command, which saves keystrokes when doing
a large-scale find & replace.
- ClearCase version-extended pathnames.
- Many new macro subroutines and variables, array support in macros.
- Range highlighting of matching delimiters.
- Undo and Redo highlights the text that has changed, when visible.
- Support for wheel mouse scrolling on servers that support it (XFree86).
- Improved accelerator key handling.
- Insert Control Code dialog accepts value in any valid C notation
- Optional beeping when search operations wrap.
- Additional default search styles.
- Optional displaying of path names in the window list menu.
- Fix a crash when entering an invalid line number in "Goto Line".
- Fix problems when running NEdit on 64-bit platforms like Alpha
- NEdit failed to open files if some directories above were not "readable"
- Fix potential crashes if some system calls fail
- When no colors are left, attempt to reuse the closest matching color. This
allows NEdit's syntax highlighting to better coexist with Netscape, which
unfortuntely takes all available colors.
- Accelerators now available in confirmation dialogs, and may be invoked
without the Alt key.
- Don't even try to open a directory for editing
- Fix a couple of memory corruption problems
Diffstat (limited to 'editors/nedit/Makefile')
-rw-r--r-- | editors/nedit/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/editors/nedit/Makefile b/editors/nedit/Makefile index 5efb6c5d335..43fc34f52a4 100644 --- a/editors/nedit/Makefile +++ b/editors/nedit/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.18 2001/10/24 22:10:53 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2001/10/31 00:03:16 mjl Exp $ -DISTNAME= nedit-5.1.1-src -PKGNAME= nedit-5.1.1 +VERS= 5.2 +DISTNAME= nedit-${VERS}-src +PKGNAME= nedit-${VERS} CATEGORIES= editors -MASTER_SITES= http://ftp.nedit.org/ftp/v5_1_1/ +MASTER_SITES= http://ftp.nedit.org/ftp/v${VERS:S/./_/g}/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.nedit.org/ @@ -17,10 +18,13 @@ WRKSRC= ${WRKDIR}/${PKGNAME} do-install: .for PROGRAM in nc nedit ${INSTALL_PROGRAM} ${WRKSRC}/source/${PROGRAM} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PROGRAM}.man ${PREFIX}/man/man1/${PROGRAM}.1 + ${INSTALL_MAN} ${WRKSRC}/doc/${PROGRAM}.man ${PREFIX}/man/man1/${PROGRAM}.1 .endfor ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/nedit ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/nedit + ${INSTALL_DATA} ${WRKSRC}/ReleaseNotes ${PREFIX}/share/doc/nedit + ${INSTALL_DATA} ${WRKSRC}/doc/faq.txt ${PREFIX}/share/doc/nedit + ${INSTALL_DATA} ${WRKSRC}/doc/NEdit.ad ${PREFIX}/lib/X11/app-defaults/NEdit .include "../../graphics/xpm/buildlink.mk" .include "../../mk/motif.buildlink.mk" |