summaryrefslogtreecommitdiff
path: root/graphics/gimp/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2004-06-21 19:48:41 +0000
committeradam <adam@pkgsrc.org>2004-06-21 19:48:41 +0000
commit51380c7a819c4489b051b5084c00c3c56ee35d43 (patch)
treec75c4efb790eed7b449081b23df4451454295e19 /graphics/gimp/patches
parent5ad8ca6505228731ad4186615dc52906eae0e62c (diff)
downloadpkgsrc-51380c7a819c4489b051b5084c00c3c56ee35d43.tar.gz
Changes 2.0.2:
- several build fixes (#140115, #142907, #143069) - allow plug-ins to register menu entries from within init() (#139969) - fixed focus issues with tool dialogs (#139349) - allow to load grayscale TGA files - a couple of string and i18n fixes (#140296, #140039, #137036, #142996) - fixed crash in template editor (#140315) - fixed crash in IWarp plug-in (#140554) - fixed snap to guides (#140649) - made the PNG plug-in handle empty colormaps (#142029) - fixed bug in text editor dialog (#141792) - fixed Old Photo script-fu (#142326) - fixed glitch in the Curves tool dialog (#142506) - don't allow tablet pressure to become negative (#123811) - improved range of tablet pressure values (#142808) - better defaults for tablet pressure (#143626) - fixed use of screen color picker with XInput devices (#143166) - actually return values from the run function of Python scripts (#141338) - documentation fixes (#142618) - fixed bug in the save routine of the TIFF plug-in (#143522) - don't let Curve Bend silently apply the layer mask (#134748) - fixed bug in Blur plug-in (#142318) - fixed mask offsets after crop operations (#143860) - let extensions run synchronously when called via PDB (#140112) - updated (and some new) translations
Diffstat (limited to 'graphics/gimp/patches')
-rw-r--r--graphics/gimp/patches/patch-ab33
-rw-r--r--graphics/gimp/patches/patch-ac31
-rw-r--r--graphics/gimp/patches/patch-ad14
3 files changed, 37 insertions, 41 deletions
diff --git a/graphics/gimp/patches/patch-ab b/graphics/gimp/patches/patch-ab
index d1b03165547..192985e1b3f 100644
--- a/graphics/gimp/patches/patch-ab
+++ b/graphics/gimp/patches/patch-ab
@@ -1,8 +1,35 @@
-$NetBSD: patch-ab,v 1.8 2004/04/15 08:37:38 adam Exp $
+$NetBSD: patch-ab,v 1.9 2004/06/21 19:48:41 adam Exp $
---- configure.orig 2004-04-13 21:08:57.000000000 +0000
+--- configure.orig 2004-06-16 10:03:06.000000000 +0000
+++ configure
-@@ -32586,7 +32586,7 @@ fi;
+@@ -27307,8 +27307,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
++ Darwin)
++ CFLAGS="$CFLAGS -faltivec"
++ ;;
++ *)
++ ;;
++ esac
+ cat >conftest.$ac_ext <<_ACEOF
+-asm ("vand %v0, %v0, %v0");
++asm ("vand v0, v0, v0");
+ _ACEOF
+ rm -f conftest.$ac_objext
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+@@ -27348,7 +27356,7 @@ enable_altivec=no
+ 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
+
+@@ -32672,7 +32680,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 8449fef6e76..00000000000
--- a/graphics/gimp/patches/patch-ac
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-ac,v 1.10 2004/05/03 06:45:28 adam Exp $
-
---- configure.orig Sun May 2 21:28:07 2004
-+++ configure
-@@ -27221,8 +27221,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
-+ Darwin)
-+ CFLAGS="$CFLAGS -faltivec"
-+ ;;
-+ *)
-+ ;;
-+ esac
- cat >conftest.$ac_ext <<_ACEOF
--asm ("vand %v0, %v0, %v0");
-+asm ("vand v0, v0, v0");
- _ACEOF
- rm -f conftest.$ac_objext
- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
-@@ -27262,7 +27270,7 @@ enable_altivec=no
- 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
-
diff --git a/graphics/gimp/patches/patch-ad b/graphics/gimp/patches/patch-ad
index c88da0e2929..4bebff238a9 100644
--- a/graphics/gimp/patches/patch-ad
+++ b/graphics/gimp/patches/patch-ad
@@ -1,13 +1,13 @@
-$NetBSD: patch-ad,v 1.3 2004/05/03 06:45:28 adam Exp $
+$NetBSD: patch-ad,v 1.4 2004/06/21 19:48:41 adam Exp $
---- app/base/cpu-accel.c.orig Sun May 2 23:15:36 2004
+--- app/base/cpu-accel.c.orig 2004-06-15 09:21:39.000000000 +0000
+++ app/base/cpu-accel.c
-@@ -366,7 +366,7 @@ arch_accel (void)
+@@ -395,7 +395,7 @@ arch_accel (void)
canjump = 1;
asm volatile ("mtspr 256, %0\n\t"
-- "vand %%v0, %%v0, %%v0"
-+ "vand v0, v0, v0"
- :
- : "r" (-1));
+- "vand %%v0, %%v0, %%v0"
++ "vand v0, v0, v0"
+ :
+ : "r" (-1));