summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorhauke <hauke>2010-06-08 15:59:50 +0000
committerhauke <hauke>2010-06-08 15:59:50 +0000
commit8a662cc289d1afcaa38339e86d444005c123e58f (patch)
treee696a5c19a18a590f36a755bdd1157a15c3f9c70 /editors
parentf6739785396fb926654503fb5e4d43a76819b5d4 (diff)
downloadpkgsrc-8a662cc289d1afcaa38339e86d444005c123e58f.tar.gz
Update editors/zile to 2.3.17, fixing PR pkg/43070
Release 2.3.17 This release fixes a crash in undo introduced in 2.3.16 as well as some small bugs in delete-window, and contains some code cleanup. Release 2.3.16 This release fixes a potential buffer overrun, and a long-standing bug in the handling of the key string "C-_", and cleans up the code a little more. Release 2.3.15 This release fixes the default universal argument, which should be 4 but was 16, and also some cosmetic errors with the display of universal arguments in the minibuffer. Some fixes to the build system were also made (thanks to Giuseppe Scrivano). Release 2.3.14 This release fixes a minor bug in filename tab expansion, which resulted in `/' being expanded to `~/'. Release 2.3.13 This release fixes bugs in `kill-line`, `scroll-up' and `scroll-down', squashes some space leaks found by Valgrind, and fixes some build problems reported by the indefatigable Nelson Beebe. Release 2.3.12 This release fixes the +LINE command-line action, which was broken a few releases ago, and makes a cosmetic fix to temporary buffers. Release 2.3.11 This release fixes a crash in `find-alternate-file', a build system bug, and various cosmetic bugs, and cleans up the code a little. Release 2.3.10 This release runs the test suite on Emacs as well as Zile (currently, requires Emacs 23 or later), and contains many small fixes to both the test suite and to Zile to improve Emacs compatibility. Various other bug fixes, improvements and tidy-ups have also been made. Note in particular that the commands `suspend-zile', `save-buffers-kill-zile' and `view-zile-FAQ' are now called `suspend-emacs', `save-buffers-kill-emacs' and `view-emacs-FAQ' respectively, and `kill-line' now works with non-positive arguments. Portability has been improved, in particular to DOS systems.
Diffstat (limited to 'editors')
-rw-r--r--editors/zile/Makefile8
-rw-r--r--editors/zile/distinfo9
-rw-r--r--editors/zile/patches/patch-ab12
3 files changed, 21 insertions, 8 deletions
diff --git a/editors/zile/Makefile b/editors/zile/Makefile
index 7acc6ccd858..3d58a49e844 100644
--- a/editors/zile/Makefile
+++ b/editors/zile/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.25 2009/10/21 16:51:46 tnn Exp $
+# $NetBSD: Makefile,v 1.26 2010/06/08 15:59:50 hauke Exp $
-DISTNAME= zile-2.3.9
-PKGREVISION= 1
+DISTNAME= zile-2.3.17
+#PKGREVISION= 1
CATEGORIES= editors
MASTER_SITES= http://ftp.gnu.org/gnu/zile/
@@ -16,7 +16,7 @@ USE_TOOLS+= makeinfo
USE_NCURSES= yes # uses stdscr->_delay directly
GNU_CONFIGURE= yes
-INFO_FILES= # PLIST
+INFO_FILES= yes
# we only want the charset.alias file, so no buildlinkery for libiconv
DEPENDS+= libiconv-[0-9]*:../../converters/libiconv
diff --git a/editors/zile/distinfo b/editors/zile/distinfo
index 478b23b6c8d..0787314fc21 100644
--- a/editors/zile/distinfo
+++ b/editors/zile/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.9 2009/10/21 16:51:46 tnn Exp $
+$NetBSD: distinfo,v 1.10 2010/06/08 15:59:50 hauke Exp $
-SHA1 (zile-2.3.9.tar.gz) = e3d90bcdfd40ce8ad31e2154fe78a9abf679796b
-RMD160 (zile-2.3.9.tar.gz) = 2d15bc0cd7d58fe75779f9adf5152de646dd7373
-Size (zile-2.3.9.tar.gz) = 706848 bytes
+SHA1 (zile-2.3.17.tar.gz) = 989193c41b2c97bd15f747c5cf4bca32fc95c48e
+RMD160 (zile-2.3.17.tar.gz) = 8335cd6430a185c439c40e35e7e46139755558e9
+Size (zile-2.3.17.tar.gz) = 810814 bytes
SHA1 (patch-aa) = 7a955b340c77b4c539b3d5ea7880c06d777dc424
+SHA1 (patch-ab) = 672f861c6372fac7ae7d394a581d13bf0c607115
diff --git a/editors/zile/patches/patch-ab b/editors/zile/patches/patch-ab
new file mode 100644
index 00000000000..f54ee70e1f3
--- /dev/null
+++ b/editors/zile/patches/patch-ab
@@ -0,0 +1,12 @@
+$NetBSD: patch-ab,v 1.5 2010/06/08 15:59:50 hauke Exp $
+
+--- lib/wchar.in.h.orig 2010-05-09 18:10:04.000000000 +0000
++++ lib/wchar.in.h
+@@ -59,6 +59,7 @@
+ But avoid namespace pollution on glibc systems. */
+ #ifndef __GLIBC__
+ # include <stddef.h>
++# include <stdlib.h> /* NetBSD */
+ # include <stdio.h>
+ # include <time.h>
+ #endif