1ec03bbaea
2005/07/27 (2.6.15) * Removed debugging statement introduced during v2.6.14 development which caused the filename of each message to be printed to stderr when processing MH-style folders. * Fixed META.yml for CPAN: YAML is picky about tab characters, and there was a couple of tab characters causing CPAN's YAML parser to abort with an error. ============================================================================ 2005/07/23 (2.6.14) * Bug Fixes: Bug ID Summary ------ ------------------------------------------------------------ 2641 Additional Callbacks 3225 CHARSETCONVERTERS not reset across multi-archive process 11759 email address exposed in subject line ------ ------------------------------------------------------------ <https://savannah.nongnu.org/bugs/?group=mhonarc> * New resources: PRINTXCOMMENTS Print <!--X-...--> comments in generated pages. * Added "Performance Tips" document: Provides configuration tips to improve the execution performance of mhonarc. ============================================================================ 2005/07/06 (2.6.13) * Bug Fixes: Bug ID Summary ------ ------------------------------------------------------------ 12314 linebreak not utf-8 aware ------ ------------------------------------------------------------ <https://savannah.nongnu.org/bugs/?group=mhonarc> * mha-preview example script changes: - If preview data not available for message, the empty string is used. Before, undef was returned to mhonarc, causing warning messages and $X-MSG-PREVIEW$ to show up on index pages. - Beefed up preview text extraction to skip past quoted text. Someday, mha-preview functionality will be intrinisic to mhonarc. ============================================================================ 2005/06/08 (2.6.12) * Bug Fixes: Bug ID Summary ------ ------------------------------------------------------------ 11761 spammode causes broken mailto: links in message body 13316 No warning generated when RCFILE set to non-existent file 13317 POSIX::setlocale() not invoked with LANG resource setting ------ ------------------------------------------------------------ <https://savannah.nongnu.org/bugs/?group=mhonarc> * New resources: MIMEINCS Content-types to allow. * Beefed up filtering of UTF-8 messages: "Malformed UTF-8 ..." warnings are now suppressed with such sequences being converted to U+FFFD (�), which should normally cause an HTML viewer to render a question-mark-like glyph. Earlier version passed malformed utf-8 sequences through. No bug/security problems have been reported against this, but it was a bad practice that has now been corrected. * The return value for $mhonarc::CBMessageBodyRead and $mhonarc::CBRawMessageBodyRead is no longer N/A. If the return value evaluates to false, the current message will be excluded from the archive and further processing. A true value must be returned if the message is to not be excluded.
28 lines
678 B
Makefile
28 lines
678 B
Makefile
# $NetBSD: Makefile,v 1.24 2005/08/17 03:29:27 jwise Exp $
|
|
|
|
DISTNAME= MHonArc-2.6.15
|
|
PKGNAME= mhonarc-2.6.15
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.mhonarc.org/release/MHonArc/tar/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jwise@NetBSD.org
|
|
HOMEPAGE= http://www.mhonarc.org/
|
|
COMMENT= Mailbox to HTML converter, suitable for list archives
|
|
|
|
USE_TOOLS+= perl:run
|
|
NO_BUILD= YES
|
|
|
|
INSTALLATION_DIRS= bin lib man share/doc
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${PERL5} ./install.me \
|
|
-prefix ${PREFIX} \
|
|
-perl ${PERL5} \
|
|
-binpath ${PREFIX}/bin \
|
|
-libpath ${PREFIX}/lib/mhonarc \
|
|
-docpath ${PREFIX}/share/doc/mhonarc \
|
|
-manpath ${PREFIX}/man \
|
|
-batch
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|