From owner-svn-ports-all@FreeBSD.ORG Wed Sep 5 15:10:14 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2D6E1065670; Wed, 5 Sep 2012 15:10:13 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D3BF08FC17; Wed, 5 Sep 2012 15:10:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q85FADp6058348; Wed, 5 Sep 2012 15:10:13 GMT (envelope-from nobutaka@svn.freebsd.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q85FADOE058344; Wed, 5 Sep 2012 15:10:13 GMT (envelope-from nobutaka@svn.freebsd.org) Message-Id: <201209051510.q85FADOE058344@svn.freebsd.org> From: MANTANI Nobutaka Date: Wed, 5 Sep 2012 15:10:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303709 - in head/mail/wanderlust: . files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Sep 2012 15:10:14 -0000 Author: nobutaka Date: Wed Sep 5 15:10:13 2012 New Revision: 303709 URL: http://svn.freebsd.org/changeset/ports/303709 Log: Fix build error with emacs24. Submitted by: ashish Added: head/mail/wanderlust/files/patch-utils_ptexinfmt.el (contents, props changed) head/mail/wanderlust/files/wanderlust-startup.emacs24.el.tmpl (contents, props changed) head/mail/wanderlust/pkg-plist.emacs24 (contents, props changed) Added: head/mail/wanderlust/files/patch-utils_ptexinfmt.el ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/wanderlust/files/patch-utils_ptexinfmt.el Wed Sep 5 15:10:13 2012 (r303709) @@ -0,0 +1,83 @@ + +$FreeBSD$ + +--- utils/ptexinfmt.el.orig ++++ utils/ptexinfmt.el +@@ -68,50 +68,50 @@ + "Declare a symbol FACILITY is broken if ASSERTION is nil. + DOCSTRING will be printed if ASSERTION is nil and + `ptexinfmt-disable-broken-notice-flag' is nil." +- (` (let ((facility '(, facility)) +- (docstring (, docstring)) +- (assertion (eval '(, assertion)))) ++ `(let ((facility ',facility) ++ (docstring ,docstring) ++ (assertion (eval ,assertion))) + (put facility 'broken (not assertion)) + (if assertion + nil + (put facility 'broken-docstring docstring) + (if ptexinfmt-disable-broken-notice-flag + nil +- (message "BROKEN FACILITY DETECTED: %s" docstring)))))) ++ (message "BROKEN FACILITY DETECTED: %s" docstring))))) + + (put 'ptexinfmt-defun-if-broken 'lisp-indent-function 'defun) + (defmacro ptexinfmt-defun-if-broken (&rest args) + "Redefine a function just like `defun' if it is considered broken." + (let ((name (list 'quote (car args)))) + (setq args (cdr args)) +- (` (prog1 +- (, name) +- (if (get (, name) 'broken) +- (defalias (, name) +- (function (lambda (,@ args))))))))) ++ `(prog1 ++ ,name ++ (if (get ,name 'broken) ++ (defalias ,name ++ (function (lambda ,@args))))))) + + (put 'ptexinfmt-defun-if-void 'lisp-indent-function 'defun) + (defmacro ptexinfmt-defun-if-void (&rest args) + "Define a function just like `defun' unless it is already defined." + (let ((name (list 'quote (car args)))) + (setq args (cdr args)) +- (` (prog1 +- (, name) +- (if (fboundp (, name)) ++ `(prog1 ++ ,name ++ (if (fboundp ,name) + nil +- (defalias (, name) +- (function (lambda (,@ args))))))))) ++ (defalias ,name ++ (function (lambda ,@args))))))) + + (put 'ptexinfmt-defvar-if-void 'lisp-indent-function 'defun) + (defmacro ptexinfmt-defvar-if-void (&rest args) + "Define a variable just like `defvar' unless it is already defined." + (let ((name (car args))) + (setq args (cdr args)) +- (` (prog1 +- (defvar (, name)) +- (if (boundp '(, name)) ++ `(prog1 ++ (defvar ,name) ++ (if (boundp ',name) + nil +- (defvar (, name) (,@ args))))))) ++ (defvar ,name ,@args))))) + + ;; sort -fd + (ptexinfmt-broken-facility texinfo-format-printindex +@@ -509,7 +509,7 @@ + (goto-char texinfo-command-start)) + + ;; @,{c} ==> c, cedilla accent +-(put ', 'texinfo-format 'texinfo-format-cedilla-accent) ++(put '\, 'texinfo-format 'texinfo-format-cedilla-accent) + (ptexinfmt-defun-if-void texinfo-format-cedilla-accent () + (insert (texinfo-parse-arg-discard) ",") + (goto-char texinfo-command-start)) Added: head/mail/wanderlust/files/wanderlust-startup.emacs24.el.tmpl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/wanderlust/files/wanderlust-startup.emacs24.el.tmpl Wed Sep 5 15:10:13 2012 (r303709) @@ -0,0 +1,4 @@ +(autoload 'wl "wl" "Wanderlust" t) +(autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t) +(load "mime-setup") +(provide 'wanderlust-startup) Added: head/mail/wanderlust/pkg-plist.emacs24 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/wanderlust/pkg-plist.emacs24 Wed Sep 5 15:10:13 2012 (r303709) @@ -0,0 +1,266 @@ +@unexec install-info --section="%%DIRSECTION%%" --delete %D/info/wl.info %D/info/dir +info/wl.info +@exec install-info --section="%%DIRSECTION%%" %D/info/wl.info %D/info/dir +@unexec install-info --section="%%DIRSECTION%%" --delete %D/info/wl-ja.info %D/info/dir +info/wl-ja.info +@exec install-info --section="%%DIRSECTION%%" %D/info/wl-ja.info %D/info/dir +%%PORTDOCS%%share/doc/ja/wanderlust/NEWS.ja +%%PORTDOCS%%share/doc/ja/wanderlust/README.ja +%%PORTDOCS%%share/doc/ja/wanderlust/wl-ja.texi +%%PORTDOCS%%share/doc/wanderlust/NEWS +%%PORTDOCS%%share/doc/wanderlust/README +%%PORTDOCS%%share/doc/wanderlust/wl.texi +%%WL_LISPDIR%%/acap.el +%%WL_LISPDIR%%/acap.elc +%%WL_LISPDIR%%/bbdb-wl.el +@unexec rm -f %D/%%WL_LISPDIR%%/bbdb-wl.elc +%%WL_LISPDIR%%/elmo-access.el +%%WL_LISPDIR%%/elmo-access.elc +%%WL_LISPDIR%%/elmo-archive.el +%%WL_LISPDIR%%/elmo-archive.elc +%%WL_LISPDIR%%/elmo-cache.el +%%WL_LISPDIR%%/elmo-cache.elc +%%WL_LISPDIR%%/elmo-date.el +%%WL_LISPDIR%%/elmo-date.elc +%%WL_LISPDIR%%/elmo-dop.el +%%WL_LISPDIR%%/elmo-dop.elc +%%WL_LISPDIR%%/elmo-file.el +%%WL_LISPDIR%%/elmo-file.elc +%%WL_LISPDIR%%/elmo-filter.el +%%WL_LISPDIR%%/elmo-filter.elc +%%WL_LISPDIR%%/elmo-flag.el +%%WL_LISPDIR%%/elmo-flag.elc +%%WL_LISPDIR%%/elmo-imap4.el +%%WL_LISPDIR%%/elmo-imap4.elc +%%WL_LISPDIR%%/elmo-internal.el +%%WL_LISPDIR%%/elmo-internal.elc +%%WL_LISPDIR%%/elmo-localdir.el +%%WL_LISPDIR%%/elmo-localdir.elc +%%WL_LISPDIR%%/elmo-localnews.el +%%WL_LISPDIR%%/elmo-localnews.elc +%%WL_LISPDIR%%/elmo-maildir.el +%%WL_LISPDIR%%/elmo-maildir.elc +%%WL_LISPDIR%%/elmo-map.el +%%WL_LISPDIR%%/elmo-map.elc +%%WL_LISPDIR%%/elmo-mime.el +%%WL_LISPDIR%%/elmo-mime.elc +%%WL_LISPDIR%%/elmo-msgdb.el +%%WL_LISPDIR%%/elmo-msgdb.elc +%%WL_LISPDIR%%/elmo-multi.el +%%WL_LISPDIR%%/elmo-multi.elc +%%WL_LISPDIR%%/elmo-net.el +%%WL_LISPDIR%%/elmo-net.elc +%%WL_LISPDIR%%/elmo-nmz.el +%%WL_LISPDIR%%/elmo-nmz.elc +%%WL_LISPDIR%%/elmo-nntp.el +%%WL_LISPDIR%%/elmo-nntp.elc +%%WL_LISPDIR%%/elmo-null.el +%%WL_LISPDIR%%/elmo-null.elc +%%WL_LISPDIR%%/elmo-pipe.el +%%WL_LISPDIR%%/elmo-pipe.elc +%%WL_LISPDIR%%/elmo-pop3.el +%%WL_LISPDIR%%/elmo-pop3.elc +%%WL_LISPDIR%%/elmo-sendlog.el +%%WL_LISPDIR%%/elmo-sendlog.elc +%%WL_LISPDIR%%/elmo-shimbun.el +%%SHIMBUN%%%%WL_LISPDIR%%/elmo-shimbun.elc +%%WL_LISPDIR%%/elmo-signal.el +%%WL_LISPDIR%%/elmo-signal.elc +%%WL_LISPDIR%%/elmo-spam.el +%%WL_LISPDIR%%/elmo-spam.elc +%%WL_LISPDIR%%/elmo-split.el +%%WL_LISPDIR%%/elmo-split.elc +%%WL_LISPDIR%%/elmo-util.el +%%WL_LISPDIR%%/elmo-util.elc +%%WL_LISPDIR%%/elmo-vars.el +%%WL_LISPDIR%%/elmo-vars.elc +%%WL_LISPDIR%%/elmo-version.el +%%WL_LISPDIR%%/elmo-version.elc +%%WL_LISPDIR%%/elmo.el +%%WL_LISPDIR%%/elmo.elc +%%WL_LISPDIR%%/elsp-bogofilter.el +%%WL_LISPDIR%%/elsp-bogofilter.elc +%%WL_LISPDIR%%/elsp-bsfilter.el +%%WL_LISPDIR%%/elsp-bsfilter.elc +%%WL_LISPDIR%%/elsp-sa.el +%%WL_LISPDIR%%/elsp-sa.elc +%%WL_LISPDIR%%/elsp-spamoracle.el +%%WL_LISPDIR%%/elsp-spamoracle.elc +%%WL_LISPDIR%%/im-wl.el +@unexec rm -f %D/%%WL_LISPDIR%%/im-wl.elc +%%WL_LISPDIR%%/modb-entity.el +%%WL_LISPDIR%%/modb-entity.elc +%%WL_LISPDIR%%/modb-legacy.el +%%WL_LISPDIR%%/modb-legacy.elc +%%WL_LISPDIR%%/modb-standard.el +%%WL_LISPDIR%%/modb-standard.elc +%%WL_LISPDIR%%/modb.el +%%WL_LISPDIR%%/modb.elc +%%WL_LISPDIR%%/mmimap.el +%%WL_LISPDIR%%/mmimap.elc +%%WL_LISPDIR%%/pldap.el +%%WL_LISPDIR%%/pldap.elc +%%WL_LISPDIR%%/rfc2368.el +%%WL_LISPDIR%%/rfc2368.elc +%%WL_LISPDIR%%/slp.el +%%WL_LISPDIR%%/slp.elc +%%WL_LISPDIR%%/ssl.el +%%WL_LISPDIR%%/ssl.elc +%%WL_LISPDIR%%/utf7.el +%%WL_LISPDIR%%/utf7.elc +%%WL_LISPDIR%%/wl-acap.el +%%WL_LISPDIR%%/wl-acap.elc +%%WL_LISPDIR%%/wl-action.el +%%WL_LISPDIR%%/wl-action.elc +%%WL_LISPDIR%%/wl-addrbook.el +%%WL_LISPDIR%%/wl-addrbook.elc +%%WL_LISPDIR%%/wl-address.el +%%WL_LISPDIR%%/wl-address.elc +%%WL_LISPDIR%%/wl-addrmgr.el +%%WL_LISPDIR%%/wl-addrmgr.elc +%%WL_LISPDIR%%/wl-batch.el +%%WL_LISPDIR%%/wl-batch.elc +%%WL_LISPDIR%%/wl-complete.el +%%WL_LISPDIR%%/wl-complete.elc +%%WL_LISPDIR%%/wl-demo.el +%%WL_LISPDIR%%/wl-demo.elc +%%WL_LISPDIR%%/wl-draft.el +%%WL_LISPDIR%%/wl-draft.elc +%%WL_LISPDIR%%/wl-e21.el +%%WL_LISPDIR%%/wl-e21.elc +%%WL_LISPDIR%%/wl-expire.el +%%WL_LISPDIR%%/wl-expire.elc +%%WL_LISPDIR%%/wl-fldmgr.el +%%WL_LISPDIR%%/wl-fldmgr.elc +%%WL_LISPDIR%%/wl-folder.el +%%WL_LISPDIR%%/wl-folder.elc +%%WL_LISPDIR%%/wl-highlight.el +%%WL_LISPDIR%%/wl-highlight.elc +%%WL_LISPDIR%%/wl-mailto.el +%%WL_LISPDIR%%/wl-mailto.elc +%%WL_LISPDIR%%/wl-message.el +%%WL_LISPDIR%%/wl-message.elc +%%WL_LISPDIR%%/wl-mime.el +%%WL_LISPDIR%%/wl-mime.elc +%%WL_LISPDIR%%/wl-news.el +%%WL_LISPDIR%%/wl-refile.el +%%WL_LISPDIR%%/wl-refile.elc +%%WL_LISPDIR%%/wl-score.el +%%WL_LISPDIR%%/wl-score.elc +%%WL_LISPDIR%%/wl-spam.el +%%WL_LISPDIR%%/wl-spam.elc +%%WL_LISPDIR%%/wl-summary.el +%%WL_LISPDIR%%/wl-summary.elc +%%WL_LISPDIR%%/wl-template.el +%%WL_LISPDIR%%/wl-template.elc +%%WL_LISPDIR%%/wl-thread.el +%%WL_LISPDIR%%/wl-thread.elc +%%WL_LISPDIR%%/wl-util.el +%%WL_LISPDIR%%/wl-util.elc +%%WL_LISPDIR%%/wl-vars.el +%%WL_LISPDIR%%/wl-vars.elc +%%WL_LISPDIR%%/wl-version.el +%%WL_LISPDIR%%/wl-version.elc +%%WL_LISPDIR%%/wl.el +%%WL_LISPDIR%%/wl.elc +%%STARTUPDIR%%/wanderlust-startup.el +%%WL_ICONDIR%%/access.xpm +%%WL_ICONDIR%%/archive.xpm +%%WL_ICONDIR%%/closed.xpm +%%WL_ICONDIR%%/draft.xpm +%%WL_ICONDIR%%/elmo.xpm +%%WL_ICONDIR%%/file.xpm +%%WL_ICONDIR%%/filter.xpm +%%WL_ICONDIR%%/imap.xpm +%%WL_ICONDIR%%/internal.xpm +%%WL_ICONDIR%%/letter.xpm +%%WL_ICONDIR%%/local.xpm +%%WL_ICONDIR%%/localnews.xpm +%%WL_ICONDIR%%/maildir.xpm +%%WL_ICONDIR%%/multi.xpm +%%WL_ICONDIR%%/news.xpm +%%WL_ICONDIR%%/nmz.xpm +%%WL_ICONDIR%%/no-letter.xpm +%%WL_ICONDIR%%/opened.xpm +%%WL_ICONDIR%%/pipe.xpm +%%WL_ICONDIR%%/plugged.xpm +%%WL_ICONDIR%%/pop.xpm +%%WL_ICONDIR%%/queue.xpm +%%WL_ICONDIR%%/shimbun.xpm +%%WL_ICONDIR%%/trash-e.xpm +%%WL_ICONDIR%%/trash.xpm +%%WL_ICONDIR%%/unplugged.xpm +%%WL_ICONDIR%%/wl-alpha-logo.img +%%WL_ICONDIR%%/wl-alpha-logo.xbm +%%WL_ICONDIR%%/wl-alpha-logo.xpm +%%WL_ICONDIR%%/wl-alpha-xmas-logo.img +%%WL_ICONDIR%%/wl-alpha-xmas-logo.xbm +%%WL_ICONDIR%%/wl-alpha-xmas-logo.xpm +%%WL_ICONDIR%%/wl-beta-logo.img +%%WL_ICONDIR%%/wl-beta-logo.xbm +%%WL_ICONDIR%%/wl-beta-logo.xpm +%%WL_ICONDIR%%/wl-beta-xmas-logo.img +%%WL_ICONDIR%%/wl-beta-xmas-logo.xbm +%%WL_ICONDIR%%/wl-beta-xmas-logo.xpm +%%WL_ICONDIR%%/wl-draft-insert-signature-up.xpm +%%WL_ICONDIR%%/wl-draft-kill-up.xpm +%%WL_ICONDIR%%/wl-draft-save-and-exit-up.xpm +%%WL_ICONDIR%%/wl-draft-send-from-toolbar-down.xpm +%%WL_ICONDIR%%/wl-draft-send-from-toolbar-up.xpm +%%WL_ICONDIR%%/wl-draft-up.xpm +%%WL_ICONDIR%%/wl-draft-yank-original-up.xpm +%%WL_ICONDIR%%/wl-exit-up.xpm +%%WL_ICONDIR%%/wl-folder-check-current-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-empty-trash-up.xpm +%%WL_ICONDIR%%/wl-folder-goto-draft-folder-up.xpm +%%WL_ICONDIR%%/wl-folder-jump-to-current-entity-no-sync-up.xpm +%%WL_ICONDIR%%/wl-folder-jump-to-current-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-next-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-prev-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-read-up.xpm +%%WL_ICONDIR%%/wl-folder-select-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-sync-current-entity-up.xpm +%%WL_ICONDIR%%/wl-folder-zoom-entity-up.xpm +%%WL_ICONDIR%%/wl-message-extract-content-up.xpm +%%WL_ICONDIR%%/wl-message-next-content-up.xpm +%%WL_ICONDIR%%/wl-message-play-content-up.xpm +%%WL_ICONDIR%%/wl-message-prev-content-up.xpm +%%WL_ICONDIR%%/wl-message-quit-up.xpm +%%WL_ICONDIR%%/wl-message-read-up.xpm +%%WL_ICONDIR%%/wl-stable-logo.img +%%WL_ICONDIR%%/wl-stable-logo.xbm +%%WL_ICONDIR%%/wl-stable-logo.xpm +%%WL_ICONDIR%%/wl-stable-xmas-logo.img +%%WL_ICONDIR%%/wl-stable-xmas-logo.xbm +%%WL_ICONDIR%%/wl-stable-xmas-logo.xpm +%%WL_ICONDIR%%/wl-summary-delete-up.xpm +%%WL_ICONDIR%%/wl-summary-dispose-up.xpm +%%WL_ICONDIR%%/wl-summary-exit-up.xpm +%%WL_ICONDIR%%/wl-summary-forward-up.xpm +%%WL_ICONDIR%%/wl-summary-jump-to-current-message-up.xpm +%%WL_ICONDIR%%/wl-summary-next-page-up.xpm +%%WL_ICONDIR%%/wl-summary-next-up.xpm +%%WL_ICONDIR%%/wl-summary-prev-page-up.xpm +%%WL_ICONDIR%%/wl-summary-prev-up.xpm +%%WL_ICONDIR%%/wl-summary-read-up.xpm +%%WL_ICONDIR%%/wl-summary-reply-up.xpm +%%WL_ICONDIR%%/wl-summary-reply-with-citation-up.xpm +%%WL_ICONDIR%%/wl-summary-set-flags-up.xpm +%%WL_ICONDIR%%/wl-summary-sync-force-update-up.xpm +%%WL_ICONDIR%%/wl-write-current-folder-up.xpm +share/examples/wanderlust/en/dot.addresses +share/examples/wanderlust/en/dot.folders +share/examples/wanderlust/en/dot.wl +share/examples/wanderlust/ja/dot.addresses +share/examples/wanderlust/ja/dot.folders +share/examples/wanderlust/ja/dot.wl +share/wanderlust/ja.Emacs +@dirrm %%WL_LISPDIR%% +%%PORTDOCS%%@dirrm share/doc/ja/wanderlust +%%PORTDOCS%%@dirrm share/doc/wanderlust +@dirrm %%WL_ICONDIR%% +@dirrm %%EMACS_LIBDIR_WITH_VER%%/etc/wl +@dirrm share/examples/wanderlust/en +@dirrm share/examples/wanderlust/ja +@dirrm share/examples/wanderlust +@dirrm share/wanderlust