? editors/emacs-snapshot/work Index: editors/emacs-snapshot/Makefile.common =================================================================== RCS file: /cvs/cvsroot/pkgsrc/editors/emacs-snapshot/Makefile.common,v retrieving revision 1.59 diff -u -r1.59 Makefile.common --- editors/emacs-snapshot/Makefile.common 31 May 2013 23:20:18 -0000 1.59 +++ editors/emacs-snapshot/Makefile.common 6 Jun 2013 14:33:27 -0000 @@ -1,6 +1,6 @@ # $NetBSD: Makefile.common,v 1.59 2013/05/31 23:20:18 minskim Exp $ -DISTNAME= emacs-snapshot_20130527.orig +DISTNAME= emacs-snapshot_20130603.orig SNAPDATE= ${DISTNAME:S/emacs-snapshot_//:S/.orig//} PKGNAME= emacs${_EMACS_VERSION_MAJOR}-${EMACS_VERSION}.${SNAPDATE} CATEGORIES= editors Index: editors/emacs-snapshot/PLIST =================================================================== RCS file: /cvs/cvsroot/pkgsrc/editors/emacs-snapshot/PLIST,v retrieving revision 1.31 diff -u -r1.31 PLIST --- editors/emacs-snapshot/PLIST 31 May 2013 23:20:18 -0000 1.31 +++ editors/emacs-snapshot/PLIST 6 Jun 2013 14:33:27 -0000 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.31 2013/05/31 23:20:18 minskim Exp $ +@comment $NetBSD$ bin/ctags bin/ebrowse bin/emacs @@ -1695,6 +1695,8 @@ share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/edebug.elc share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-base.el.gz share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-base.elc +share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-core.el.gz +share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-core.elc share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-custom.el.gz share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-custom.elc share/emacs/${EMACS_VERSION}/lisp/emacs-lisp/eieio-datadebug.el.gz Index: editors/emacs-snapshot/patches/patch-ad =================================================================== RCS file: /cvs/cvsroot/pkgsrc/editors/emacs-snapshot/patches/patch-ad,v retrieving revision 1.3 diff -u -r1.3 patch-ad --- editors/emacs-snapshot/patches/patch-ad 31 May 2013 23:20:18 -0000 1.3 +++ editors/emacs-snapshot/patches/patch-ad 6 Jun 2013 14:33:27 -0000 @@ -1,9 +1,9 @@ -$NetBSD: patch-ad,v 1.3 2013/05/31 23:20:18 minskim Exp $ +$NetBSD: patch-ad,v 1.2 2013/02/12 04:47:32 minskim Exp $ Magic line to avoid segmentation fault during build (not always happen). ---- lisp/cus-dep.el.orig 2013-05-27 05:08:04.000000000 +0000 -+++ lisp/cus-dep.el +--- lisp/cus-dep.el.orig 2013-06-03 15:34:21.000000000 +0900 ++++ lisp/cus-dep.el 2013-06-06 20:24:24.000000000 +0900 @@ -70,6 +70,7 @@ Usage: emacs -batch -l ./cus-dep.el -f c (unless (or (string-match custom-dependencies-no-scan-regexp file) (string-match preloaded (format "%s/%s" subdir file)) Index: editors/emacs-snapshot/patches/patch-src_process.c =================================================================== RCS file: editors/emacs-snapshot/patches/patch-src_process.c diff -N editors/emacs-snapshot/patches/patch-src_process.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ editors/emacs-snapshot/patches/patch-src_process.c 6 Jun 2013 14:33:27 -0000 @@ -0,0 +1,24 @@ +$NetBSD$ + +Avoid WCONTINUED is undefined. It would probably be the same as following +part in in : ++---- +| #define WALLSIG 0x00000008 /* wait for processes that exit +| with any signal, i.e. SIGCHLD +| and alternates */ ++---- + +--- src/process.c.orig 2013-06-06 21:19:28.000000000 +0900 ++++ src/process.c 2013-06-06 21:20:14.000000000 +0900 +@@ -32,6 +32,11 @@ along with GNU Emacs. If not, see + + #include "lisp.h" ++ ++/* see include/sys/wait.h (and also emacsclient.c) */ ++# ifndef WCONTINUED ++# define WCONTINUED 8 ++# endif + + /* Only MS-DOS does not define `subprocesses'. */ + #ifdef subprocesses