summaryrefslogtreecommitdiff
path: root/mail/wl/Makefile
diff options
context:
space:
mode:
authoruebayasi <uebayasi>2003-01-25 03:49:42 +0000
committeruebayasi <uebayasi>2003-01-25 03:49:42 +0000
commit92a2a9b90f9af2bcf80496038f48511f6f9d93f3 (patch)
tree3587f92aee985a059727173862e2b540c60ddbd0 /mail/wl/Makefile
parent50a96d66b25e17521e2daecbda362a5dec3bc1ea (diff)
downloadpkgsrc-92a2a9b90f9af2bcf80496038f48511f6f9d93f3.tar.gz
Update to 2.10.0.
* Changes in 2.10.0 from 2.8.1 ** You can alter the format of summary lines. Specify format by wl-summary-line-format. If you want to change ones according to folder names, use wl-folder-summary-line-format-alist. ** Save format for the draft folder has been changed. Messages are encoded before saved by wl-draft-save. ** elmo-split is newly established. ** Buffer prefetch works fine now. Messages of the number specified by wl-message-buffer-prefetch-depth are loaded into buffer in advance. ** elmo-dop-queue-flush flushes queue that concerns plugged folder. ** Starting Wanderlust on the new frame is possible now. Set as (autoload 'wl-other-frame "wl" "Wanderlust on new frame." t) ** In Folder mode, you can go into virtual folder which consists of messages with some specified condition (wl-folder-virtual). It is binded to "V". ** In Folder mode, you can search folders containing messages with some specified condition (wl-folder-pick). It is binded to "?". ** Now you can rename access group folders. ** Temporary marks are kept when you exit from sticky summary by q or g. ** Key bindings concerning the sticky summary have been changed. By C-u g, the sticky summary is destroyed as well as C-u q. In summary or folder mode, G opens the sticky summary. ** You can go round summary buffers by C-cC-n and C-cC-p. ** Members of the list wl-folder-hierarchy-access-folders is now some REGEXP for access group names instead of exact group names. ** In header part of the draft buffer C-a brings cursor to the beginning of the line or the beginning of the header body. ** You can send encapsulated blind carbon copies. Its default field name is "Ecc:". ** C-c C-y (Draft) can cite region of the message. It affects if transient-mark-mode (Emacs) or zmacs-regions (XEmacs) is Non-nil and the region is active. ** You can delete a part from multipart message. It is binded as "D" in message buffer. ** You can easily configure server settings to post news article. Set wl-nntp-posting-config-alist appropriately. See info for an example. ** You can specify some function in wl-draft-reply-with-argument-list etc. for setting the recipients in draft by the return value of it. ** The interface of the function wl-draft has been changed. The initial set of headers are handed as an association list. ** The uses of wl-generate-mailer-string-function has been changed. Specify a function which returns some string to appear in User-Agent header. ** Many bug fixes.
Diffstat (limited to 'mail/wl/Makefile')
-rw-r--r--mail/wl/Makefile43
1 files changed, 13 insertions, 30 deletions
diff --git a/mail/wl/Makefile b/mail/wl/Makefile
index d85ef35d993..d99be00f563 100644
--- a/mail/wl/Makefile
+++ b/mail/wl/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2002/10/22 15:11:40 minoura Exp $
+# $NetBSD: Makefile,v 1.10 2003/01/25 03:49:42 uebayasi Exp $
-DISTNAME= wl-2.8.1
-PKGREVISION= 1
+DISTNAME= wl-2.10.0
CATEGORIES= mail
MASTER_SITES= ftp://ftp.ring.gr.jp/pub/text/elisp/wl/stable/
@@ -9,45 +8,29 @@ MAINTAINER= tech-pkg-ja@jp.netbsd.org
HOMEPAGE= http://www.gohome.org/wl/
COMMENT= mail/news management system with IMAP4rev1 support for Emacs
-DEPENDS+= ${PKGNAME_PREFIX}semi>=1.13.7:../../devel/semi
+DEPENDS+= semi>=1.13.7:../../devel/semi
# XXX please someone adjust paths and PLIST for XEmacs...
EMACS_VERSIONS_ACCEPTED= emacs21 emacs20
+MAKE_FLAGS+= LISPDIR=${EMACS_LISPPREFIX}
+MAKE_FLAGS+= PIXMAPDIR=${PREFIX}/share/wl
INSTALL_TARGET= install install-info
INFO_FILES= wl.info wl-ja.info
.include "../../mk/emacs.mk"
-.ifdef ${EMACS_FLAVOR} == "emacs"
-ETCDIR= share/emacs/${EMACS_VERSION}/etc/wl
-.else
-# XXX where to go?
-.endif
-ICONDIR= ${ETCDIR}/icons
-PLIST_SUBST+= ETCDIR=${ETCDIR}
-PLIST_SUBST+= ICONDIR=${ICONDIR}
-
DOCDIR= ${PREFIX}/share/doc/wl
EXAMPLESDIR= ${PREFIX}/share/examples/wl
-DOCS= BUGS NEWS README
-DOCS_JA= BUGS.ja NEWS.ja README.ja doc/TODO.ja
-EXAMPLES= dot.addresses dot.folders dot.wl
post-install:
- ${INSTALL_DATA_DIR} ${DOCDIR}/en
-.for f in ${DOCS}
- ${INSTALL_DATA} ${WRKSRC}/$f ${DOCDIR}/en
-.endfor
- ${INSTALL_DATA_DIR} ${DOCDIR}/ja
-.for f in ${DOCS_JA}
- ${INSTALL_DATA} ${WRKSRC}/$f ${DOCDIR}/ja
-.endfor
- ${INSTALL_DATA_DIR} ${EXAMPLESDIR}/en
- ${INSTALL_DATA_DIR} ${EXAMPLESDIR}/ja
-.for f in ${EXAMPLES}
- ${INSTALL_DATA} ${WRKSRC}/samples/en/$f ${EXAMPLESDIR}/en
- ${INSTALL_DATA} ${WRKSRC}/samples/ja/$f ${EXAMPLESDIR}/ja
-.endfor
+ @${INSTALL_DATA_DIR} ${DOCDIR}/en ${DOCDIR}/ja
+ @for f in BUGS NEWS README; do \
+ ${INSTALL_DATA} ${WRKSRC}/$$f ${DOCDIR}/en; \
+ ${INSTALL_DATA} ${WRKSRC}/$${f}.ja ${DOCDIR}/ja; \
+ done
+ @${INSTALL_DATA_DIR} ${EXAMPLESDIR}/en ${EXAMPLESDIR}/ja
+ @${INSTALL_DATA} ${WRKSRC}/samples/en/dot.* ${EXAMPLESDIR}/en
+ @${INSTALL_DATA} ${WRKSRC}/samples/ja/dot.* ${EXAMPLESDIR}/ja
.include "../../mk/texinfo.mk"
.include "../../mk/bsd.pkg.mk"