head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.30 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.28 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.26 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.24 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.22 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.20 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.18 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.16 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.14 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.12 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.10 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.8 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.6 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.4 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.2 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.4.0.6 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.4.0.4 pkgsrc-2006Q2-base:1.4 pkgsrc-2006Q1:1.4.0.2 pkgsrc-2006Q1-base:1.4 pkgsrc-2005Q4:1.3.0.10 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.8 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.6 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.4 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.2 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.2.0.6 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.4 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.2 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.1.0.2 pkgsrc-2003Q4-base:1.1; locks; strict; comment @# @; 1.5 date 2006.10.16.13.06.09; author reed; state dead; branches; next 1.4; 1.4 date 2006.01.22.02.26.54; author joerg; state Exp; branches; next 1.3; 1.3 date 2004.12.14.19.53.49; author xtraeme; state Exp; branches; next 1.2; 1.2 date 2003.12.11.15.22.28; author adam; state dead; branches; next 1.1; 1.1 date 2003.10.22.16.49.26; author cube; state Exp; branches; next ; desc @@ 1.5 log @Update to version 2.5.5. Thank you to Martin Wilke for PR 34302 and also to George Michaelson for patches. Note that I had already had updated mine before I saw these, so some things are different. At this time libetpan is not enabled -- we can make an option for it. Added more items to disable: libetpan, gnomeprint, bogofiloter and pgp* plugins. Set OPENSSL_CFLAGS and OPENSSL_LIBS for SSL support -- so patch is not needed. (cipher issue for DragonFly was already in upstream.) Changed config and example directories to sylpheed-claws (instead of sylpheed). Specifically make sure jpilot and ldap are disabled if not selected. Changed includes for gpgme03 to gpgme and gtk to gtk2. Executable is called "sylpheed-claws" now. Updated BUILDLINK_API_DEPENDS.sylpheed-claws. Patch patch-ab is for a problem with installing po files. NOTE: The plugins needs to be updated. And sylpheed-claws-image-viewer can be removed. Changes for sylpheed-claws itself are many: o bug 1034, 'Incorrect display of size field in message view * Make node expanding in the Folder List non-recursive * Bug fixes: o bug 1024, 'Array index out of range in sylpheed-claws-2.5.2' o Fix "Check for new folders" on folders with accented characters o Fix filtering "copy" rules o Fix "goto next unread" after collapsing/expanding a node Many more but too many to list here. cvs: ---------------------------------------------------------------------- @ text @$NetBSD: patch-aa,v 1.4 2006/01/22 02:26:54 joerg Exp $ --- configure.ac.orig 2005-03-24 10:55:19.000000000 +0000 +++ configure.ac @@@@ -238,19 +238,28 @@@@ dnl Check for OpenSSL AC_ARG_ENABLE(openssl, [ --enable-openssl Attempt to use OpenSSL for SSL support.], [ac_cv_enable_openssl=$enableval], [ac_cv_enable_openssl=yes]) -if test x"$ac_cv_enable_openssl" = xyes; then - PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no) - if test x$ac_cv_enable_openssl = xyes; then - AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support) - fi +if test $ac_cv_enable_openssl = yes; then + AC_MSG_CHECKING([if openssl is available]) + OPENSSL_LIBS="$LIBS -lssl -lcrypto" + AC_TRY_LINK([ +#include +], [ return OPENSSL_VERSION_NUMBER; ], + [ AC_MSG_RESULT(yes) + AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support.) ], + [ AC_MSG_RESULT(no) + OPENSSL_LIBS="$ac_save_LIBS" + ac_cv_enable_openssl=no ]) +else + AC_MSG_RESULT(no) fi + AC_SUBST(OPENSSL_CFLAGS) AC_SUBST(OPENSSL_LIBS) dnl password encryption OLDLIBS=$LIBS LIBS= -AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.])) +AC_SEARCH_LIBS(encrypt, crypt cipher, [], AC_MSG_ERROR(['encrypt'-function not found.])) CRYPT_LIBS=$LIBS AC_SUBST(CRYPT_LIBS) LIBS=$OLDLIBS @ 1.4 log @DES crypt is in libcipher on DragonFly, so check that one as well. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Apply patches for the configure script to detect OpenSSL without using the pkgconfig file, otherwise it's not able to do SMTP-AUTH, same patch was sent to the tech-pkg@@ mailing list some weeks ago. While here convert this package to use bsd.options.mk, available options are: ldap jpilot inet6. Bump PKGREVISION. @ text @d3 3 a5 3 --- configure.ac.orig 2004-09-27 10:01:49.000000000 +0200 +++ configure.ac 2004-11-30 00:30:27.000000000 +0100 @@@@ -238,12 +238,21 @@@@ d32 8 @ 1.2 log @Changes 0.9.7: * the MIME parser has been rewritten * GnuPG/GPGME: the method of checking signed messages has been improved and the reporting of signed messages has been modified. * GnuPG/GPGME: decrypted messages are no longer saved and the user will now be prompted to decrypt each time the message is selected. * new icons have been added for MIME types * Filtering: 3 new actions have been added. * IMAP: UIDPLUS support for COPY and EXPUNGE has been added * Folder Properties: 'Procesing on startup' has been added. * LDAP: it is possible to browse an entry that was retrieved using an explicit LDAP search * LDAP: a 'contains' query is now possible * SpamAssassin plugin: updated spamc to version 2.60. Support for new libspamc transports has been added * updated translations: Croatian, French, German, Japanese, Polish, Spanish, Serbian, Simpilified Chinese, and Slovak * Bug fixes @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.1 2003/10/22 16:49:26 cube Exp $ d3 29 a31 11 --- src/send_message.c.orig 2003-07-22 13:16:26.000000000 +0200 +++ src/send_message.c @@@@ -614,7 +614,7 @@@@ static void send_put_error(Session *sess if (log_msg) log_warning("%s\n", log_msg); if (err_msg) { - alertpanel_error_log(err_msg); + alertpanel_error_log("%s", err_msg); g_free(err_msg); } } @ 1.1 log @Pull-up security patch from CVS. Bump PKGREVISION. Fixes a format string error leading to a crash from malicious SMTP servers. http://www.guninski.com/sylph.html @ text @d1 1 a1 1 $NetBSD$ @