Changes since 2.10.0: * Changes in 2.10.1 from 2.10.0 Version 2.10.1 is a bug fix version of 2.10.0. ** Fixed after message buffer kill, prefetch doesn't work. ** Default value of wl-delete-folder-alist, wl-folder-hierarchy-access-folders are changed. ** Support localdir and pipe folder rename. ** Fixed message and error argument. Use %s for variable. ** Now, response from IMAP server (e.g. \Noselect, \Flagged) parse case-ignore. ** Fixed elmo-msgdb-extra-fields field are case sensitive. ** Fixed IMAP folder included ~, expand to home directory. ** Fixed the problem that msgdb be destroyed when print-length or print-level has Non-nil value. ** Fixed a problem that wl-folder-move-cur-folder doesn't work. ** Fixed a problem that wl-draft-reedit doesn't work properly on Meadow. ** Fixed a problem that wl-summary-pack-number doesn't work on Maildir, shimbun, and pipe folders. ** Fixed a problem that cache file is not protected even if it is marked as important. ** Fixed a problem that %# in wl-summary-line-format cannot handle large number. ** Fixed a problem to remove password even if SMTP AUTH failed at non-auth phase. ** Default value of wl-message-buffer-prefetch-folder-type-list, wl-message-buffer-prefetch-idle-time, and wl-message-buffer-prefetch-depth are changed. ** Fixed to compile on XEmacs without mule feature.
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.19 2004/09/19 13:41:24 wiz Exp $
|
|
|
|
DISTNAME= wl-2.10.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.ring.gr.jp/pub/text/elisp/wl/stable/
|
|
|
|
MAINTAINER= tech-pkg-ja@jp.NetBSD.org
|
|
HOMEPAGE= http://www.gohome.org/wl/
|
|
COMMENT= Mail/news management system with IMAP4rev1 support for Emacs
|
|
|
|
DEPENDS+= semi>=1.13.7:../../devel/semi
|
|
# XXX please someone adjust paths and PLIST for XEmacs...
|
|
EMACS_VERSIONS_ACCEPTED= emacs21 emacs21nox 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"
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/wl
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/wl
|
|
|
|
PLIST_SRC= ${WRKDIR}/PLIST
|
|
|
|
post-build:
|
|
@{ \
|
|
${CAT} ${PKGDIR}/PLIST.header; \
|
|
${FIND} ${WRKSRC} -name '*.elc' -print | \
|
|
while read f; do \
|
|
g=$$(basename $$f); \
|
|
echo '$${EMACS_LISPPREFIX}/wl/'$${g%.elc}.el; \
|
|
echo '$${EMACS_LISPPREFIX}/wl/'$$g; \
|
|
done | ${SORT}; \
|
|
${CAT} ${PKGDIR}/PLIST.footer; \
|
|
} >${PLIST_SRC}
|
|
|
|
post-install:
|
|
@${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/bsd.pkg.mk"
|