diff options
author | uebayasi <uebayasi> | 2003-01-11 15:26:07 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2003-01-11 15:26:07 +0000 |
commit | 9429847b45b725594ca668aaf3ba897519290bbf (patch) | |
tree | baa9ce48bda9c787b0918f2e73251c91f1404a30 /mail/mew/Makefile | |
parent | d654d92815c1a8eadb7d9c73287d73ffecacbd5d (diff) | |
download | pkgsrc-9429847b45b725594ca668aaf3ba897519290bbf.tar.gz |
Update to 2.3.
Changes since 2.2 are:
* A bug fix for S/MIME's temporary file again.
* info updates.
* Catching up new warning messages of GnuPG 1.2.0.
KOIE Hidetaka <hide@koie.org>
* A bug fix for S/MIME's temporary file.
* A bug fix for PGP's marks in the attachment region.
Diffstat (limited to 'mail/mew/Makefile')
-rw-r--r-- | mail/mew/Makefile | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/mail/mew/Makefile b/mail/mew/Makefile index c0ad8e6998a..bccab5d4dc7 100644 --- a/mail/mew/Makefile +++ b/mail/mew/Makefile @@ -1,39 +1,36 @@ -# $NetBSD: Makefile,v 1.48 2002/09/15 06:24:21 uebayasi Exp $ +# $NetBSD: Makefile,v 1.49 2003/01/11 15:26:07 uebayasi Exp $ -DISTNAME= mew-2.2 +DISTNAME= mew-2.3 CATEGORIES= mail -MASTER_SITES= ftp://ftp.mew.org/pub/Mew/ +MASTER_SITES= ftp://ftp.mew.org/pub/Mew/release/ MAINTAINER= tech-pkg-ja@jp.netbsd.org HOMEPAGE= http://www.mew.org/ COMMENT= Messaging in the Emacs World -CONFLICTS=+ mew-xemacs-2.* +CONFLICTS=+ mew-xemacs-* EMACS_VERSION_ACCEPTED= emacs21 emacs20 -MEW_CONTRIB_DIR= ${EMACS_LISPPREFIX}/mew/contrib -MEW_CONTRIB= 00readme 00readme-namazu.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_DIR=${EMACS_LISPPREFIX}/mew/contrib +MAKE_FLAGS+= prefix=${PREFIX} MAKE_FLAGS+= EMACS=${EMACS_BIN} MAKE_FLAGS+= elispdir=${EMACS_LISPPREFIX}/mew MAKE_FLAGS+= etcdir=${PREFIX}/share/mew -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; \ +post-patch: + @${GREP} -lr /usr/local ${WRKSRC} | \ + while read f; do \ + ${MV} $$f $${f}.orig; \ + ${SED} -e 's|/usr/local|${PREFIX}|g' $${f}.orig >$$f; \ + ${RM} -f $$f; \ done post-install: - ${INSTALL_DATA_DIR} ${MEW_CONTRIB_DIR} -.for f in ${MEW_CONTRIB} - ${INSTALL_DATA} ${WRKSRC}/contrib/$f ${MEW_CONTRIB_DIR} -.endfor + @${INSTALL_DATA_DIR} ${MEW_CONTRIB_DIR} + @${INSTALL_DATA} ${WRKSRC}/contrib/00readme* \ + ${WRKSRC}/contrib/*.el ${MEW_CONTRIB_DIR} .include "../../mk/emacs.mk" .include "../../mk/texinfo.mk" |