diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2006-12-28 12:41:42 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2006-12-28 12:41:42 +0000 |
commit | ca4b38be3fbbaab7fac733fcf3ba67a805298150 (patch) | |
tree | 8a80f587dbef658c954599bc102af629461d21e4 /mail/sylpheed2 | |
parent | da63055064117e1ca1b18a786140cc97196dbaaf (diff) | |
download | ports-ca4b38be3fbbaab7fac733fcf3ba67a805298150.tar.gz ports-ca4b38be3fbbaab7fac733fcf3ba67a805298150.zip |
Notes
Diffstat (limited to 'mail/sylpheed2')
-rw-r--r-- | mail/sylpheed2/Makefile | 2 | ||||
-rw-r--r-- | mail/sylpheed2/files/patch-src-printing.c | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/mail/sylpheed2/Makefile b/mail/sylpheed2/Makefile index c4044f7424dd..a269375786ef 100644 --- a/mail/sylpheed2/Makefile +++ b/mail/sylpheed2/Makefile @@ -7,7 +7,7 @@ PORTNAME= sylpheed PORTVERSION= 2.3.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.sraoss.jp/sylpheed/v${PORTVERSION:C/\.[^\.]*$//}/ diff --git a/mail/sylpheed2/files/patch-src-printing.c b/mail/sylpheed2/files/patch-src-printing.c new file mode 100644 index 000000000000..f13f0b756bfd --- /dev/null +++ b/mail/sylpheed2/files/patch-src-printing.c @@ -0,0 +1,22 @@ +--- src/printing.c.orig Wed Dec 27 15:50:14 2006 ++++ src/printing.c Wed Dec 27 16:28:28 2006 +@@ -149,8 +149,6 @@ + + desc = pango_font_description_from_string(prefs_common_get()->textfont); + size = pango_font_description_get_size(desc); +- pango_font_description_free(desc); +- desc = gtkut_get_default_font_desc(); + pango_font_description_set_size(desc, size); + pango_layout_set_font_description(layout, desc); + pango_font_description_free(desc); +@@ -406,10 +404,6 @@ + } + g_print("count = %d\n", count); + +- desc = gtkut_get_default_font_desc(); +- pango_font_description_set_size(desc, font_size); +- pango_layout_set_font_description(layout, desc); +- pango_font_description_free(desc); + g_snprintf(buf, sizeof(buf), "- %d -", pinfo->page_nr_per_msg + 1); + pango_layout_set_text(layout, buf, -1); + pango_layout_set_alignment(layout, PANGO_ALIGN_CENTER); |