summaryrefslogtreecommitdiffstats
path: root/x11-toolkits
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-07-30 13:00:27 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-07-30 13:00:27 +0800
commita9a05b8f1342957bf3b5ac4fae70fa95d683914a (patch)
tree563a9bc00faf34d40bc81c61fc397d7de925d6c7 /x11-toolkits
parent147cbe046104ac06070827ec74cd080e3d6dc0c9 (diff)
downloadmarcuscom-ports-a9a05b8f1342957bf3b5ac4fae70fa95d683914a.tar.gz
marcuscom-ports-a9a05b8f1342957bf3b5ac4fae70fa95d683914a.tar.zst
marcuscom-ports-a9a05b8f1342957bf3b5ac4fae70fa95d683914a.zip
Sync with FreeBSD ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12544 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/gtk20/Makefile4
-rw-r--r--x11-toolkits/gtk20/files/patch-gdk-pixbuf_io-jpeg.c11
2 files changed, 13 insertions, 2 deletions
diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile
index b20ebec34..954af9683 100644
--- a/x11-toolkits/gtk20/Makefile
+++ b/x11-toolkits/gtk20/Makefile
@@ -3,12 +3,12 @@
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $FreeBSD$
-# $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.163 2009/07/20 11:17:29 kwm Exp $
+# $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.164 2009/07/25 19:33:02 kwm Exp $
#
PORTNAME= gtk
PORTVERSION= 2.17.6
-PORTREVISION?= 0
+PORTREVISION?= 1
CATEGORIES= x11-toolkits
MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/,} \
ftp://ftp.gtk.org/pub/gtk/%SUBDIR%/ \
diff --git a/x11-toolkits/gtk20/files/patch-gdk-pixbuf_io-jpeg.c b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_io-jpeg.c
new file mode 100644
index 000000000..1701b054b
--- /dev/null
+++ b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_io-jpeg.c
@@ -0,0 +1,11 @@
+--- gdk-pixbuf/io-jpeg.c.orig 2009-07-30 00:54:14.000000000 -0400
++++ gdk-pixbuf/io-jpeg.c 2009-07-30 00:54:27.000000000 -0400
+@@ -922,7 +922,7 @@ gdk_pixbuf__jpeg_image_load_increment (g
+ }
+ }
+
+- for (cinfo->scale_denom = 2; cinfo->scale_denom <= 8; cinfo->scale_denom *= 2) {
++ for (cinfo->scale_denom = 2; cinfo->scale_denom <= 16; cinfo->scale_denom *= 2) {
+ jpeg_calc_output_dimensions (cinfo);
+ if (cinfo->output_width < width || cinfo->output_height < height) {
+ cinfo->scale_denom /= 2;