diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-03-05 12:11:28 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-03-05 12:11:28 +0000 |
commit | 213e5dbb84705540043ef56eba683b923efa1235 (patch) | |
tree | a943ab815a7868758f65fc29106c1f4ae082d35b /mail/sylpheed3 | |
parent | 571a051735a60384e81a38904572826c56ba3738 (diff) | |
download | ports-213e5dbb84705540043ef56eba683b923efa1235.tar.gz ports-213e5dbb84705540043ef56eba683b923efa1235.zip |
Notes
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 230a3cdeda5a..e4bdb93396ae 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 85a95928124a..5138537ba1c9 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 5946301287bf..000000000000 --- 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 |