diff options
author | oliver <oliver@FreeBSD.org> | 2005-03-05 12:11:28 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-03-05 12:11:28 +0000 |
commit | 589e3e219ad7a7b5b5e3247c2403cda4ef6cb781 (patch) | |
tree | 0aeb41160ade69fc93e78f458c0b4607377619e6 /mail/sylpheed3 | |
parent | 310e65852b46959635255dc0a00ae722e747906a (diff) | |
download | FreeBSD-ports-589e3e219ad7a7b5b5e3247c2403cda4ef6cb781.zip FreeBSD-ports-589e3e219ad7a7b5b5e3247c2403cda4ef6cb781.tar.gz |
update to 1.9.4
Diffstat (limited to 'mail/sylpheed3')
-rw-r--r-- | mail/sylpheed3/Makefile | 6 | ||||
-rw-r--r-- | mail/sylpheed3/distinfo | 4 | ||||
-rw-r--r-- | mail/sylpheed3/files/patch-src::codeconv.c | 24 |
3 files changed, 5 insertions, 29 deletions
diff --git a/mail/sylpheed3/Makefile b/mail/sylpheed3/Makefile index 230a3cd..e4bdb93 100644 --- a/mail/sylpheed3/Makefile +++ b/mail/sylpheed3/Makefile @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 1.9.3 +PORTVERSION= 1.9.4 PORTREVISION= 0 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:mime/} \ @@ -44,11 +44,11 @@ OPTIONS= GPGME "Enable GnuPG support using GPGME." off \ COMPFACE "Enable X-Face support." off \ JPILOT "Enable JPilot support." off \ LDAP "Enable LDAP support." off \ - SSL "Enable OpenSSL support." off + SSL "Enable OpenSSL support." on .include <bsd.port.pre.mk> -.if defined(WITH_SSL) +.if !defined(WITHOUT_SSL) # we can't use USE_OPENSSL=yes after including bsd.port.pre.mk .include "${PORTSDIR}/Mk/bsd.openssl.mk" CONFIGURE_ARGS+=--enable-ssl diff --git a/mail/sylpheed3/distinfo b/mail/sylpheed3/distinfo index 85a95928..5138537 100644 --- a/mail/sylpheed3/distinfo +++ b/mail/sylpheed3/distinfo @@ -1,4 +1,4 @@ -MD5 (sylpheed/sylpheed-1.9.3.tar.bz2) = 975a6282ddbd5fe8e2d0ec7081631808 -SIZE(sylpheed/sylpheed-1.9.3.tar.bz2) = 2221199 +MD5 (sylpheed/sylpheed-1.9.4.tar.bz2) = 49f35c104a6c4e56ad76816d8140a4b4 +SIZE(sylpheed/sylpheed-1.9.4.tar.bz2) = 2219533 MD5 (sylpheed/mime.types) = 7c0563d85e2e830c0266d54517ad62e8 SIZE(sylpheed/mime.types) = 14979 diff --git a/mail/sylpheed3/files/patch-src::codeconv.c b/mail/sylpheed3/files/patch-src::codeconv.c deleted file mode 100644 index 5946301..0000000 --- a/mail/sylpheed3/files/patch-src::codeconv.c +++ /dev/null @@ -1,24 +0,0 @@ ---- src/codeconv.c.orig Mon Feb 21 12:46:21 2005 -+++ src/codeconv.c Mon Feb 21 12:46:30 2005 -@@ -1577,8 +1577,20 @@ - Xalloca(buf, buflen, return); - conv_anytodisp(buf, buflen, str); - unmime_header(outbuf, buf); -- } else -+ } else { -+ gchar *tmp; - unmime_header(outbuf, str); -+ if (outbuf && !g_utf8_validate(outbuf, -1, NULL)) { -+ tmp = conv_codeset_strdup(outbuf, -+ conv_get_locale_charset_str(), -+ CS_UTF_8); -+ if (tmp) { -+ strncpy(outbuf, tmp, outlen-1); -+ g_free(tmp); -+ } -+ } -+ } -+ - } - - #define MAX_LINELEN 76 |