pkgsrc/editors
agc 663235f956 Update xvile from 9.5r to 9.6.
Changes from the previous version:

Changes for vile 9.6 (released Thu Dec 27 2007)

	> Tom Dickey:
	+ update makefile.blc, adding charsets.c, eightbit.c and wcwidth.c
	+ build-fix for OS/2 IBM CSet (define a delay function for catnap).
	+ minor build-fixes for VMS:
	  + modify vmsbuild.com to simplify workaround for broken MMS 3.8
	  + provide dummy variables for xvile to reflect modularization changes
	    with respect to vmsvt.c
	+ documentation updates.
	+ minor fix to manfilt.c to pass-through UTF-8 codes by testing with
	  both iswprint() and isprint().

 20071224 (u)
	> Tom Dickey:
	+ separate vile's ttputc from termcap prototype to pass integer param
	  rather than just a char on Solaris.
	+ fix computation of columns needed to show UTF-8 codes in POSIX
	  locale.
	+ modify manfilt.c to provide UTF-8 output in a UTF-8 locale.
	+ minor fix to CF_FUNC_ICONV to link iconv on cygwin (noting that
	  cygwin has no useful locale support, it may someday).

 20071202 (t)
	> Tom Dickey:
	+ modify filters makefile "clean" rule to accommodate OSF/1 4.0D
	  whose make program leaves intermediate ".c" files for each lexer.
	+ change order of restore-flags and switch-buffer in
	  restore_buffer_state, avoiding an unnecessary prompt to discard
	  changes when attempting to read a buffer that cannot be read.
	+ increase a few table sizes to work with AIX 5.1 lex.
	+ modify check for lex version to avoid hanging on older platforms
	  where it would try to read from standard input even if it does not
	  recognize the option.

 20071125 (s)
	> Tom Dickey:
	+ several changes to provide usable Unicode support:
	  + add mode percent-utf8 to set a threshold for file-encoding mode
	    "auto" detection of UTF-16/UTF-32 files.
	  + file-encoding mode can be set to "auto", to detect UTF-16 files,
	    which are loaded as UTF-8.
	  + UTF-8 files are detected based on the file-encoding mode as well.
	  + Unicode values are displayed (where no locale controls) as "\uXXXX"
	    in 4 hexadecimal digits.
	  + add unicode-as-hex mode to override locale, forcing Unicode values
	    to display as "\uXXXX".
	  + for buffers with UTF-8 encoding, show illegal bytes as "\?XX".
	  + Unicode values can be inserted into buffers using ^VuXXXX form.
	  Limitations:
	  + terminal drivers support Unicode display in varying degrees:
	    + winvile - multicolumn characters, depends on font selection
	    + termcap/terminfo - relies on terminal emulator, knows about
	      multicolumn characters
	    + xvile - displays only single-column characters
	    + curses - depends on the curses library, e.g., ncursesw
	    + win32 console - not yet implemented
	  + combining characters are not combined.
	  + registers hold byte data, will show the UTF-8 encoding for data
	    rather than a \uXXXX (unless the file-encoding for [Registers]
	    is changed).
	  + some "characters" such as the report for yanked text is still
	    really a byte-count.
	  + inserting a \uXXXX into the minibuffer will display the UTF-8
	    encoding.
	  + regular expressions are not wide-character aware.
	  + UTF-16 and UTF-32 files are detected based on BOM and/or the
	    contents of the first line of the file.
	  + external syntax filters do not handle BOM or UTF-16, UTF-32.
	+ improve name-completion by saving/restoring the original window and
	  buffer when [Completions] closes, rather than the closest window.
	+ add output from rcshist to diffmode.
	+ add ".vbp" files to inimode.
	+ modify configure script to omit lex-filt.l from build if lex is not
	  really flex, since the tables are too large for the older program.
	+ modify spell.pm to use a temporary file to work with newer Perl's
	  that do not handle tied variables exactly as filehandles.
	+ update Kevin Buettner's email address.
	+ add -class option to xvile.
	+ remove a redundant XtDestroyWidget() from x_close() to quiet a
	  warning from XtRemoveGrab() when doing a ":q" from Xm-vile
	  (report by Chris Green).
	+ use va_copy() in dofmt() to work with Linux on powerpc
	  (report by Paul van Tilburg).
	+ add docbookmode
	+ improve 9.5m/9.5q check for file ownership, adding a warning message
	  for files which are ignored (report by Chris Green).
	+ change default for --with-locale configure option to mesh with
	  --disable-extensions.
	+ improve paste-performance in winvile by passing whole-line chunks
	  to the insert-function.
	+ improved cppmode's identifier-expr (report by Gerry Fredette).
	+ correct order of evaluation from 9.4w when setting record-separator,
	  which was setting "crlf" ending temporarily when computing the buffer
	  size, even when "lf" was intended.  That would cause an immediate
	  write from winvile (without change) for a buffer to write too many
	  characters.
	+ add syntax filter conffilt.l, for "ordinary" config-files.
	+ add "rectangle-insert-mode".
	+ fill in several omitted items in init_mode_value().
	+ add "describe-&functions" and "describe-$variables" commands.
	  (The latter is a stub for later).
	+ improve repainting in winvile while processing external command.
	  also modify keyboard handling to provide type-ahead while processing
	  external command.
	+ remove obsolete $tpause variable.
	+ modify majormode inferencing to check preamble for [Standard Input]
	  and [Output] buffers.
	+ add "&gtmotion" function for scripts.
	+ improve handling of enumerated values by forcing all to lowercase,
	  e.g., to eliminate the need for the special case in 9.1x to handle
	  "TRUE" and "true".
	+ revise lstrinsert() and associated logic which implements changes
	  to rectangles, e.g., with c^Aq, to ensure that it pads the change
	  with blanks rather than nulls (report by Paul van Tilburg).
	+ improve modeline support by ignoring strict "vi" modeline options
	  that are not recognized by vile, rather than reporting an error.
	+ use new module blist (binary search of lists) to reduce linear
	  searches in the places where btree is not already used.
	+ change rename-other-buffer command to other-buffer-rename, to avoid
	  name-completion conflict with rename-command (feedback from Steve
	  Lembark).
	+ remove obsolete check for ANSI qsort.
	+ improve vilefilt.l, highlighting mode names and displaying error
	  for unknown mode, function and state variables.
	+ fix typo in manpage.rc which broke use of pod2man in 9.5m
	+ add &pquote in manpage.rc, to allow it to format html output when
	  vile-manfilt, etc., reside in directories containing spaces in their
	  name.
	+ add ".reg" filetypes to inimode.
	+ add several package-related suffixes to sqlmode.
	+ add xpmmode
2008-01-05 14:59:47 +00:00
..
abiword There is no obvious reason for USE_GNU_ICONV, and I haven't found one by 2007-12-17 22:05:59 +00:00
abiword-plugins Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
beav Make this build on Darwin. 2007-12-16 15:53:44 +00:00
beaver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
biew Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
bvi Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
ce Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
ce-doc Moved the pkgsrc substitutions before the configure stage, so they 2006-10-03 05:30:04 +00:00
ce-x11 Modular Xorg support. 2007-01-30 22:52:07 +00:00
conglomerate Fix comment (GConf2 -> GConf). 2007-09-25 10:54:09 +00:00
cooledit - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
dasher No lldiv on DragonFly, just compute it directly 2007-12-27 14:55:36 +00:00
easyedit Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
ed Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
elvis Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
elvis-x11 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
emacs Whoops, use ${MACHINE_GNU_PLATFORM} rather than i386 2007-12-06 12:25:48 +00:00
emacs-nox11 Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
emacs-packages Somewhat overdue, add devel/doxymacs. Bump to 0.9. 2007-10-30 12:46:01 +00:00
emacs20 Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
emacs21 Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
emacs21-nox11 Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
ex Adjust the valloc return value on Darwin not to conflict with the one 2006-07-22 04:23:29 +00:00
fe Use BROKEN_GETTEXT_DETECTION=yes instead of doing the work manually. 2007-11-20 11:08:50 +00:00
gate Remove conflicting prototype for malloc. 2005-12-09 14:33:34 +00:00
gconf-editor update to 2.20.0 2007-11-03 15:54:30 +00:00
gedit update to 2.20.4 2007-11-29 20:33:01 +00:00
gice Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gnuserv Modular Xorg support. 2007-10-13 21:20:54 +00:00
gobby Needs msgfmt. 2007-12-08 10:41:47 +00:00
gtranslator Fix build with scrollkeeper-config related changes. 2008-01-01 15:44:55 +00:00
heme Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
hexedit MASTER_SITE updates from Zafer Aydogan. 2007-11-25 11:46:59 +00:00
hnb Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
jave Fixed pkglint warnings. 2006-03-10 23:39:24 +00:00
jde cjones@ is no longer a developer 2007-07-05 18:20:07 +00:00
jed Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
joe Changes 3.5: 2006-07-24 07:50:12 +00:00
jove Update to jove 4.16.0.70. 2007-02-16 18:28:25 +00:00
kdissert Bump PKGREVISION because openexr now depends on ilmbase. 2007-11-30 21:55:01 +00:00
kile Bump PKGREVISION because openexr now depends on ilmbase. 2007-11-30 21:55:01 +00:00
leafpad Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
leim20 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
leim21 Move editors/leim to editors/leim21 as it's only for emacs21. 2007-10-29 13:41:26 +00:00
lpe Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
lyx-qt make sure the configure.py script finds the right Python interpreter, 2007-08-13 12:03:21 +00:00
lyx-xforms Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
manedit Added support for installation to DESTDIR. 2008-01-04 23:20:56 +00:00
matlab-mode Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mflteco pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
mg2a Now it even works with gcc on Solaris. 2007-01-07 01:55:52 +00:00
mined Update to mined-2000.14; requested by upstream. Pick up maintainership. 2007-08-17 23:24:11 +00:00
mlview Fix comment (GConf2 -> GConf). 2007-09-25 10:54:09 +00:00
mule Modular Xorg support. 2007-02-19 18:40:44 +00:00
mule-ucs Fix our lisp patch. I've checked building this package with both emacs20 2008-01-01 19:54:27 +00:00
nano Mark as GPLv3 (commented out). 2007-12-23 10:00:09 +00:00
ne Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
nedit Need to update MASTER_SITES, noticed by Zafer by private mail. 2007-12-30 14:21:00 +00:00
ng Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
notecase update to 1.7.4 2007-12-17 19:06:55 +00:00
nvi share/vi may also be used by devel/meld; just try removing it. 2007-11-03 13:23:53 +00:00
nvi-m17n Fixes typo in wapper script. 2007-11-28 11:40:35 +00:00
obby Imported obby. 2007-11-04 10:06:06 +00:00
pico Since I'm more-or-less actively maintaining pine, might as well take its 2007-03-21 19:39:08 +00:00
poedit PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
rox-edit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sam Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
speedbar Initial addition of buildlink3.mk fragments for EmacsLisp packages. 2007-10-29 12:41:16 +00:00
ssam Add DESTDIR support 2007-08-17 23:10:19 +00:00
tamago Use ${EMACS_FLAVOR} instead of ${_EMACS_TYPE}. 2007-11-12 15:29:49 +00:00
tea GConf2 -> GConf. 2007-09-25 10:16:08 +00:00
ted Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-cs Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-da Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-de Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-en-gb Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-en-us Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-es Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-fr Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-it Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-nl Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-no Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-pl Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-pt Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
ted-sv Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:41:20 +00:00
TeXmacs -update to 1.0.6.12 2008-01-04 15:26:17 +00:00
texmaker Update to texmaker-1.5. 2007-03-23 15:07:21 +00:00
uemacs Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ve Fix errno. 2005-12-09 16:22:28 +00:00
vigor Needs libXt for configure. 2007-01-08 17:54:46 +00:00
vile Update vile from 9.5r to 9.6. 2008-01-05 14:58:42 +00:00
vilearn MASTER_SITE updates from Zafer Aydogan. 2007-11-25 11:46:59 +00:00
vim Added support for installation to DESTDIR. 2008-01-03 23:18:07 +00:00
vim-gtk - Added support for installation to DESTDIR. 2007-05-18 22:49:01 +00:00
vim-gtk2 - Added support for installation to DESTDIR. 2007-05-19 00:11:59 +00:00
vim-kde Remove Ex-MASTER_SITEs. From Zafer Aydogan. 2007-12-02 11:58:59 +00:00
vim-lang Updated editors/vim-share to 7.1.18 2007-07-02 07:47:59 +00:00
vim-motif - Added support for installation to DESTDIR. 2007-05-18 23:46:31 +00:00
vim-share Updated editors/vim-share to 7.1.175 2007-12-18 08:15:03 +00:00
vim-xaw - Added support for installation to DESTDIR. 2007-05-18 23:46:31 +00:00
wily Add DESTDIR support 2007-08-17 23:46:17 +00:00
xcoral Modular Xorg support. 2007-01-30 23:06:18 +00:00
xemacs Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
xemacs-current long-overdue commit of an option to enable xft anti-aliased fonts 2007-11-13 04:10:09 +00:00
xemacs-current-nox11 Support XEmacs 21.5.x without X too. 2007-11-12 01:48:47 +00:00
xemacs-nox11 Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs. 2007-10-29 12:40:02 +00:00
xemacs-packages Make this package pass the check-interpreters part of the installation 2008-01-01 20:22:36 +00:00
xfce4-mousepad Updated Xfce to 4.4.2 2007-12-07 19:43:19 +00:00
xjed Modular Xorg support. 2007-01-30 22:52:07 +00:00
xvile Update xvile from 9.5r to 9.6. 2008-01-05 14:59:47 +00:00
xwpe Modular Xorg support. 2007-01-30 23:06:18 +00:00
yudit Install only mo files. Use msgmerge and not msgfmt as dependency. 2007-06-29 22:53:21 +00:00
zile Update zile to 2.2.50. 2007-11-19 07:12:45 +00:00
Makefile +notecase 2007-11-22 21:05:21 +00:00