8d9ec39430
Mew 2.1 release candidate 1 (2001/10/24) * mew-auto-flush-queue works for mbox. * Workaround for mew-image-inline-p on Emacs 21.1. * Implementing mew-text/html-detect-cs and mew-text/xml-detect-cs. * Process status is well displayed on the mode line. * A bug fix for mew-demo-picture. * Defining mew-use-charset-sanity-check. * A patch for refile. * mew-input-folders hack. * Defining mew-syntax-treat-filename-function. * Defining mew-input-draft-buffer. * No sanity check if charset is specified. * C-cC-i for mew-summary-find-file.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.39 2001/10/25 19:23:42 jun Exp $
|
|
|
|
DISTNAME= mew-2.1rc1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.mew.org/pub/Mew/beta/
|
|
|
|
MAINTAINER= tech-pkg-ja@jp.netbsd.org
|
|
HOMEPAGE= http://www.mew.org/
|
|
COMMENT= Messaging in the Emacs World
|
|
|
|
DEPENDS+= emacs-20.*:../../editors/emacs
|
|
|
|
MEW_CONTRIB_DIR= ${PREFIX}/share/emacs/site-lisp/mew/contrib
|
|
MEW_CONTRIB= 00readme 00readme-namazu.jis README-mewinc.jis \
|
|
mew-browse.el mew-caesar.el mew-fancy-summary.el mew-gnus.el \
|
|
mew-nmz-fixer.el mew-nmz.el mew-refile-view.el mew-smime-ja.texi \
|
|
mew-toolbar-frame.el
|
|
MEW_CONTRIB_SCRIPT= incdir incmbox mewinc
|
|
|
|
pre-configure:
|
|
for f in `find ${WRKSRC}/contrib -type f -print| \
|
|
xargs grep -l '#!/usr/local'`; do \
|
|
${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone \
|
|
&& ${MV} $$f.pdone $$f; \
|
|
done
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${MEW_CONTRIB_DIR}
|
|
.for f in ${MEW_CONTRIB}
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/$f ${MEW_CONTRIB_DIR}
|
|
.endfor
|
|
.for f in ${MEW_CONTRIB_SCRIPT}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/$f ${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|