pkgsrc/mail/sylpheed-claws/Makefile

68 lines
1.9 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.30 2004/02/26 14:07:23 minskim Exp $
#
.include "Makefile.common"
PKGNAME= sylpheed-claws-${SYLPHEED_VERSION}
2003-07-17 23:41:05 +02:00
MAINTAINER= chris@NetBSD.org
COMMENT= X based e-mail and netnews client
CONFLICTS= sylpheed-[0-9]* sylpheed-gtk2-[0-9]*
BUILD_USES_MSGFMT= YES
USE_PKGINSTALL= YES
PKGCONFIG_OVERRIDE+= sylpheed-claws.pc.in
Updated to 0.9.4. Please review ChangeLog.claws to see the changes between 0.9.2 to 0.9.4, mostly those are bugfixes. * 0.9.2 * The bug that removed messages from server if "Don't receive" action is specified by the filter rule has been fixed. * The bug that caused abort when a button is double-clicked on some dialogs has been fixed. * A warning that was displayed when address book was empty has been fixed. * 0.9.1 * The bug in handling folder names which include '+' in IMAP4 modified UTF-7 conversion has been fixed. * The parsing of message/rfc822 parts in multipart messages has been fixed. * Several bugs of auto signature replacement has been fixed. * A bug that didn't hide user string in the Action dialog has been fixed. * Socket I/O timeout interval is now configurable. * 0.9.0 * The multi-process network I/O has been implemented for POP3 and SMTP. * The Action feature has been improved. * The automatic signature replacement on account change has been implemented. * Hyperlinks of HTML messages are now correctly handled. * The separated message view now has a menubar. * Original messages' headers are now included as the preset keywords on automatic filter creation. * The verbose error messages are now displayed on POP3 and SMTP. * The lines of the log window is now restricted to reduce the memory usage. * The Shift_JIS locale has been supported. * The internal MIME structure has been cleaned up. * Address names which have special characters are now correctly quoted. * Slovak message catalog has been added. * The header corruption bug on reediting has been fixed. * The bug of UTF-7 encoding conversion has been fixed. * A workaround for unknown timezones has been made. * A workaround for wrapping problem on UTF-8 locale has been made. * More workaround for crashes by illegal characters has been made. * The crash bug in IMAP4 parser has been fixed. * The crash bug of the composition window has been fixed. * The colormap / visual problem on Solaris has been fixed. * Other bugfixes have been made.
2003-09-03 20:19:42 +02:00
CONFIGURE_ARGS+= --enable-aspell
CONFIGURE_ARGS+= --enable-nls
CONFIGURE_ARGS+= --enable-openssl
CONFIGURE_ARGS+= --enable-gpgme
CONFIGURE_ARGS+= --enable-compface
Updated to 0.9.4. Please review ChangeLog.claws to see the changes between 0.9.2 to 0.9.4, mostly those are bugfixes. * 0.9.2 * The bug that removed messages from server if "Don't receive" action is specified by the filter rule has been fixed. * The bug that caused abort when a button is double-clicked on some dialogs has been fixed. * A warning that was displayed when address book was empty has been fixed. * 0.9.1 * The bug in handling folder names which include '+' in IMAP4 modified UTF-7 conversion has been fixed. * The parsing of message/rfc822 parts in multipart messages has been fixed. * Several bugs of auto signature replacement has been fixed. * A bug that didn't hide user string in the Action dialog has been fixed. * Socket I/O timeout interval is now configurable. * 0.9.0 * The multi-process network I/O has been implemented for POP3 and SMTP. * The Action feature has been improved. * The automatic signature replacement on account change has been implemented. * Hyperlinks of HTML messages are now correctly handled. * The separated message view now has a menubar. * Original messages' headers are now included as the preset keywords on automatic filter creation. * The verbose error messages are now displayed on POP3 and SMTP. * The lines of the log window is now restricted to reduce the memory usage. * The Shift_JIS locale has been supported. * The internal MIME structure has been cleaned up. * Address names which have special characters are now correctly quoted. * Slovak message catalog has been added. * The header corruption bug on reediting has been fixed. * The bug of UTF-7 encoding conversion has been fixed. * A workaround for unknown timezones has been made. * A workaround for wrapping problem on UTF-8 locale has been made. * More workaround for crashes by illegal characters has been made. * The crash bug in IMAP4 parser has been fixed. * The crash bug of the composition window has been fixed. * The colormap / visual problem on Solaris has been fixed. * Other bugfixes have been made.
2003-09-03 20:19:42 +02:00
CONFIGURE_ARGS+= --disable-trayicon-plugin
CONFIGURE_ARGS+= --disable-image-viewer-plugin
CONFIGURE_ARGS+= --disable-clamav-plugin
CONFIGURE_ARGS+= --disable-dillo-viewer-plugin
CONFIGURE_ARGS+= --disable-spamassassin-plugin
CONFIGURE_ARGS+= --disable-mathml-viewer-plugin
PKG_SYSCONFSUBDIR= sylpheed
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
.include "../../mk/bsd.prefs.mk"
BUILD_DEFS+= USE_INET6 USE_OPENLDAP
.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
FACES_IS_INSTALLED!= ${PKG_INFO} -e faces || ${ECHO}
.if empty(FACES_IS_INSTALLED)
. include "../../graphics/compface/buildlink2.mk"
.else
. include "../../mail/faces/buildlink2.mk"
.endif
.if defined(USE_OPENLDAP) && ${USE_OPENLDAP} == YES
CONFIGURE_ARGS+= --enable-ldap
.include "../../databases/openldap/buildlink2.mk"
.endif
EGDIR= ${PREFIX}/share/examples/sylpheed
CONF_FILES= ${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${FILESDIR}/mime.types ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/sylpheed*.png ${PREFIX}/share/sylpheed
.include "../../converters/libiconv/buildlink2.mk"
.include "../../security/gpgme03/buildlink2.mk"
.include "../../security/openssl/buildlink2.mk"
.include "../../textproc/aspell/buildlink2.mk"
.include "../../x11/gtk/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"