628f8d296d
* 3.3.1 (stable) * IMAP: "INBOX" folder became case insensitive as specified in RFC 3501. * IMAP: server name for cache directory is escaped now (fixes cache creation when using IPv6 address for server name on Windows). * IMAP: the bug that double-quote (") and backslash (\) in folder/username/password were not escaped and could not be used on IMAP4 was fixed. * IMAP: parsing of folder names that contain brackets was fixed. * Config.guess and config.sub included in the tarball were updated to the latest version. * The bug that 'File - Folder - Move folder...' menu didn't work was fixed. * The bug that MIME nest level restriction was not working was fixed. * Many defects discovered by Coverity Scan were fixed: - FILE handle resource leaks - memory leaks - possible buffer overrun - strict error checks - correct null pointer checks * Win32: the tray icon is recreated when explorer.exe crashes now. * Win32: the included SSL certificates were updated (based on ca-certificates_20111211_all.deb in Ubuntu 12.04.4 LTS).
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.153 2014/03/13 13:52:09 taca Exp $
|
|
|
|
DISTNAME= sylpheed-3.3.1
|
|
CATEGORIES= mail news x11
|
|
MASTER_SITES= http://sylpheed.sraoss.jp/sylpheed/v3.3/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ahoka@NetBSD.org
|
|
HOMEPAGE= http://sylpheed.sraoss.jp/en/
|
|
COMMENT= Gtk based e-mail and netnews client
|
|
LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1
|
|
|
|
CONFLICTS= sylpheed-claws-[0-9]*
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
CONFIGURE_ARGS+= --enable-compface
|
|
|
|
PKG_SYSCONFSUBDIR= sylpheed
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/sylpheed
|
|
CONF_FILES= ${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/mime.types ${DESTDIR}${EGDIR}
|
|
|
|
.include "options.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|