summaryrefslogtreecommitdiff
path: root/graphics/gimp/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2006-07-10 22:06:32 +0000
committeradam <adam@pkgsrc.org>2006-07-10 22:06:32 +0000
commit84c6d9c0af711bf1d3421545cd2d349d4d0e6d37 (patch)
treee17f61f54e66a4b0ed0194acafd470020bfdea0d /graphics/gimp/patches
parent769f28f09f987f37588de26086db66a5a22709ac (diff)
downloadpkgsrc-84c6d9c0af711bf1d3421545cd2d349d4d0e6d37.tar.gz
Changes 2.2.12:
- fixed display problem in the Animation Playback plug-in - fixed misbehaviour of the user installation dialog - make sure that session-managed windows are mapped completely inside a monitor - don't use long deprecated libpng API - fixed possible segfault when closing image while saving it - halt tools when the image mode changes - fixed problem in Scale and Resize widgets - fixed wrong offset in transform PDB functions - fixed bugs in the Dicom load plug-in - make sure text widgets get all key events first - fixed problems with default values in the PNG save plug-in - fixed Save As dialog not displaying the filename - fixed compilation problem with gcc 4.1 - plugged a possible buffer overrun in the XCF parser - don't save image parasites twice in XCF files
Diffstat (limited to 'graphics/gimp/patches')
-rw-r--r--graphics/gimp/patches/patch-aa6
-rw-r--r--graphics/gimp/patches/patch-ab20
-rw-r--r--graphics/gimp/patches/patch-ac28
-rw-r--r--graphics/gimp/patches/patch-ae41
-rw-r--r--graphics/gimp/patches/patch-af22
-rw-r--r--graphics/gimp/patches/patch-ag12
-rw-r--r--graphics/gimp/patches/patch-ah12
7 files changed, 13 insertions, 128 deletions
diff --git a/graphics/gimp/patches/patch-aa b/graphics/gimp/patches/patch-aa
index ee869068773..46234890e47 100644
--- a/graphics/gimp/patches/patch-aa
+++ b/graphics/gimp/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.15 2006/04/14 10:02:31 adam Exp $
+$NetBSD: patch-aa,v 1.16 2006/07/10 22:06:32 adam Exp $
---- etc/Makefile.in.orig 2006-04-13 13:34:47.000000000 +0200
+--- etc/Makefile.in.orig 2006-06-22 12:52:52.000000000 +0200
+++ etc/Makefile.in
-@@ -368,7 +368,7 @@ exec_prefix = @exec_prefix@
+@@ -366,7 +366,7 @@ exec_prefix = @exec_prefix@
gimpdatadir = @gimpdatadir@
gimpdir = @gimpdir@
gimpplugindir = @gimpplugindir@
diff --git a/graphics/gimp/patches/patch-ab b/graphics/gimp/patches/patch-ab
index 9a6f9c99907..a78f0d4fdfc 100644
--- a/graphics/gimp/patches/patch-ab
+++ b/graphics/gimp/patches/patch-ab
@@ -1,10 +1,10 @@
-$NetBSD: patch-ab,v 1.16 2006/04/14 10:02:31 adam Exp $
+$NetBSD: patch-ab,v 1.17 2006/07/10 22:06:32 adam Exp $
---- configure.orig 2006-04-13 13:35:11.000000000 +0200
+--- configure.orig 2006-06-22 12:53:13.000000000 +0200
+++ configure
-@@ -28438,8 +28438,16 @@ if test "x$enable_altivec" = xyes; then
- echo "$as_me:$LINENO: checking whether we can compile Altivec code" >&5
- echo $ECHO_N "checking whether we can compile Altivec code... $ECHO_C" >&6
+@@ -30835,8 +30835,16 @@ if test "x$enable_altivec" = xyes; then
+ { echo "$as_me:$LINENO: checking whether we can compile Altivec code" >&5
+ echo $ECHO_N "checking whether we can compile Altivec code... $ECHO_C" >&6; }
+ gimp_save_CFLAGS=$CFLAGS
+ case `uname` in
@@ -19,17 +19,17 @@ $NetBSD: patch-ab,v 1.16 2006/04/14 10:02:31 adam Exp $
+asm ("vand v0, v0, v0");
_ACEOF
rm -f conftest.$ac_objext
- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
-@@ -28479,7 +28487,7 @@ enable_altivec=no
- echo "${ECHO_T}no" >&6
+ if { (ac_try="$ac_compile"
+@@ -30889,7 +30897,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
+ echo "${ECHO_T}no" >&6; }
{ echo "$as_me:$LINENO: WARNING: The assembler does not support the Altivec command set." >&5
echo "$as_me: WARNING: The assembler does not support the Altivec command set." >&2;}
-
+ CFLAGS=$gimp_save_CFLAGS
fi
- rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-@@ -34436,7 +34444,7 @@ fi;
+ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+@@ -37474,7 +37482,7 @@ fi
gimpdatadir="$datadir/$PACKAGE/2.0"
gimpplugindir="$libdir/$PACKAGE/2.0"
diff --git a/graphics/gimp/patches/patch-ac b/graphics/gimp/patches/patch-ac
deleted file mode 100644
index 8d9961135c8..00000000000
--- a/graphics/gimp/patches/patch-ac
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-ac,v 1.12 2006/04/18 20:24:48 tron Exp $
-
---- plug-ins/common/png.c.orig 2004-11-23 14:28:43.000000000 +0000
-+++ plug-ins/common/png.c 2006-04-18 21:20:36.000000000 +0100
-@@ -1012,7 +1012,11 @@
- * Done with the file...
- */
-
-+#if PNG_LIBPNG_VER > 88
-+ png_destroy_read_struct(&pp, &info, NULL);
-+#else
- png_read_destroy (pp, info, NULL);
-+#endif
-
- g_free (pixel);
- g_free (pixels);
-@@ -1441,7 +1445,11 @@
- };
-
- png_write_end (pp, info);
-+#if PNG_LIBPNG_VER > 88
-+ png_destroy_write_struct(&pp, &info);
-+#else
- png_write_destroy (pp);
-+#endif
-
- g_free (pixel);
- g_free (pixels);
diff --git a/graphics/gimp/patches/patch-ae b/graphics/gimp/patches/patch-ae
deleted file mode 100644
index fb14aac1f32..00000000000
--- a/graphics/gimp/patches/patch-ae
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-ae,v 1.5 2006/06/26 21:12:53 wiz Exp $
-
---- app/composite/gimp-composite-mmx.c.orig 2006-04-13 11:20:13.000000000 +0000
-+++ app/composite/gimp-composite-mmx.c
-@@ -135,6 +135,7 @@ gimp_composite_addition_rgba8_rgba8_rgba
- asm("emms");
- }
-
-+#if 0
- void
- gimp_composite_burn_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *_op)
- {
-@@ -250,7 +251,7 @@ gimp_composite_burn_rgba8_rgba8_rgba8_mm
-
- asm("emms");
- }
--
-+#endif
-
- void
- gimp_composite_darken_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *_op)
-@@ -1267,8 +1268,8 @@ gimp_composite_swap_rgba8_rgba8_rgba8_mm
- "\tmovq %%mm3,%0\n"
- "\tmovq %%mm2,%1\n"
- : "+m" (*a), "+m" (*b)
-- :
-- : "%mm1", "%mm2", "%mm3", "%mm4");
-+ :
-+ : "%mm2", "%mm3");
- a++;
- b++;
- }
-@@ -1281,7 +1282,7 @@ gimp_composite_swap_rgba8_rgba8_rgba8_mm
- "\tmovd %%mm2,%1\n"
- : "+m" (*a), "+m" (*b)
- :
-- : "%mm1", "%mm2", "%mm3", "%mm4");
-+ : "%mm2", "%mm3");
- }
-
- asm("emms");
diff --git a/graphics/gimp/patches/patch-af b/graphics/gimp/patches/patch-af
deleted file mode 100644
index f174fa00974..00000000000
--- a/graphics/gimp/patches/patch-af
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-af,v 1.3 2006/06/26 21:12:53 wiz Exp $
-
---- app/composite/gimp-composite-sse.c.orig 2005-08-15 10:07:03.000000000 +0000
-+++ app/composite/gimp-composite-sse.c
-@@ -113,7 +113,7 @@ gimp_composite_addition_rgba8_rgba8_rgba
- asm("emms");
- }
-
--
-+#if 0
- void
- gimp_composite_burn_rgba8_rgba8_rgba8_sse (GimpCompositeContext *_op)
- {
-@@ -229,7 +229,7 @@ gimp_composite_burn_rgba8_rgba8_rgba8_ss
-
- asm("emms");
- }
--
-+#endif
-
- void
- gimp_composite_darken_rgba8_rgba8_rgba8_sse (GimpCompositeContext *_op)
diff --git a/graphics/gimp/patches/patch-ag b/graphics/gimp/patches/patch-ag
deleted file mode 100644
index 81e507a2bb5..00000000000
--- a/graphics/gimp/patches/patch-ag
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ag,v 1.3 2006/06/26 21:12:53 wiz Exp $
-
---- app/composite/gimp-composite-mmx-installer.c.orig 2006-04-13 11:20:13.000000000 +0000
-+++ app/composite/gimp-composite-mmx-installer.c
-@@ -25,7 +25,6 @@ static struct install_table {
- { GIMP_COMPOSITE_SUBTRACT, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_subtract_rgba8_rgba8_rgba8_mmx },
- { GIMP_COMPOSITE_DARKEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_darken_rgba8_rgba8_rgba8_mmx },
- { GIMP_COMPOSITE_LIGHTEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_lighten_rgba8_rgba8_rgba8_mmx },
-- { GIMP_COMPOSITE_BURN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_burn_rgba8_rgba8_rgba8_mmx },
- { GIMP_COMPOSITE_GRAIN_EXTRACT, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_grain_extract_rgba8_rgba8_rgba8_mmx },
- { GIMP_COMPOSITE_GRAIN_MERGE, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_grain_merge_rgba8_rgba8_rgba8_mmx },
- { GIMP_COMPOSITE_SWAP, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_swap_rgba8_rgba8_rgba8_mmx },
diff --git a/graphics/gimp/patches/patch-ah b/graphics/gimp/patches/patch-ah
deleted file mode 100644
index 720586dd10d..00000000000
--- a/graphics/gimp/patches/patch-ah
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ah,v 1.3 2006/06/26 21:12:53 wiz Exp $
-
---- app/composite/gimp-composite-sse-installer.c.orig 2005-08-15 10:07:03.000000000 +0000
-+++ app/composite/gimp-composite-sse-installer.c
-@@ -25,7 +25,6 @@ static struct install_table {
- { GIMP_COMPOSITE_SUBTRACT, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_subtract_rgba8_rgba8_rgba8_sse },
- { GIMP_COMPOSITE_DARKEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_darken_rgba8_rgba8_rgba8_sse },
- { GIMP_COMPOSITE_LIGHTEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_lighten_rgba8_rgba8_rgba8_sse },
-- { GIMP_COMPOSITE_BURN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_burn_rgba8_rgba8_rgba8_sse },
- { GIMP_COMPOSITE_GRAIN_EXTRACT, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_grain_extract_rgba8_rgba8_rgba8_sse },
- { GIMP_COMPOSITE_GRAIN_MERGE, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_grain_merge_rgba8_rgba8_rgba8_sse },
- { GIMP_COMPOSITE_SWAP, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_swap_rgba8_rgba8_rgba8_sse },