summaryrefslogtreecommitdiff
path: root/graphics/gimp/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>1998-02-03 10:17:01 +0000
committertron <tron@pkgsrc.org>1998-02-03 10:17:01 +0000
commitdfe83a6fd14fb68d389a7d137373384c549098dd (patch)
treeef14261ed49773855821f89ffab67462a8c8a4f6 /graphics/gimp/patches
parent6b0d60d11dd4a09bc9036feaddf6f10f746927f0 (diff)
downloadpkgsrc-dfe83a6fd14fb68d389a7d137373384c549098dd.tar.gz
Initial import of gimp-0.99.18 package made by Bernd Sieker.
Diffstat (limited to 'graphics/gimp/patches')
-rw-r--r--graphics/gimp/patches/patch-aa20
-rw-r--r--graphics/gimp/patches/patch-ab38
-rw-r--r--graphics/gimp/patches/patch-ac11
-rw-r--r--graphics/gimp/patches/patch-ad13
-rw-r--r--graphics/gimp/patches/patch-ae11
-rw-r--r--graphics/gimp/patches/patch-af11
-rw-r--r--graphics/gimp/patches/patch-ag15
7 files changed, 119 insertions, 0 deletions
diff --git a/graphics/gimp/patches/patch-aa b/graphics/gimp/patches/patch-aa
new file mode 100644
index 00000000000..05994ede962
--- /dev/null
+++ b/graphics/gimp/patches/patch-aa
@@ -0,0 +1,20 @@
+--- configure.in.orig Mon Jan 26 04:44:47 1998
++++ configure.in Fri Jan 30 03:55:00 1998
+@@ -121,7 +121,7 @@
+ dnl Test for libtiff
+ if test -z "$LIBTIFF_LIB"; then
+ AC_CHECK_LIB(tiff, TIFFReadScanline,
+- TIFF='tiff'; LIBTIFF_LIB='-ltiff',
++ TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg',
+ AC_CHECK_LIB(tiff, TIFFWriteScanline,
+ TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg',
+ AC_MSG_WARN(*** TIFF plug-in will not be built ***), -lz -ljpeg -lm), -lm)
+@@ -156,7 +156,7 @@
+ GIMPTCL='gimptcl'; LIBTCL_LIB="-l$with_tcl -l$with_tk $DL_LIBRARY",
+ AC_MSG_WARN(*** gimptcl plug-in will not be built ***), -lm $DL_LIBRARY),
+ AC_CHECK_LIB(tcl, Tcl_StaticPackage,
+- GIMPTCL='gimptcl'; LIBTCL_LIB="-ltcl -ltk $DL_LIBRARY",
++ GIMPTCL='gimptcl'; LIBTCL_LIB="-ltcl80 -ltk80 $DL_LIBRARY",
+ AC_MSG_WARN(*** gimptcl plug-in will not be built ***), -lm $DL_LIBRARY))
+ fi
+
diff --git a/graphics/gimp/patches/patch-ab b/graphics/gimp/patches/patch-ab
new file mode 100644
index 00000000000..737f98c412c
--- /dev/null
+++ b/graphics/gimp/patches/patch-ab
@@ -0,0 +1,38 @@
+--- configure.orig Mon Jan 26 08:07:08 1998
++++ configure Fri Jan 30 03:53:22 1998
+@@ -2773,7 +2773,7 @@
+ fi
+ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
+ echo "$ac_t""yes" 1>&6
+- TIFF='tiff'; LIBTIFF_LIB='-ltiff'
++ TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg'
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for TIFFWriteScanline in -ltiff""... $ac_c" 1>&6
+@@ -3039,14 +3039,14 @@
+ fi
+
+ else
+- echo $ac_n "checking for Tcl_StaticPackage in -ltcl""... $ac_c" 1>&6
+-echo "configure:3044: checking for Tcl_StaticPackage in -ltcl" >&5
++ echo $ac_n "checking for Tcl_StaticPackage in -ltcl80""... $ac_c" 1>&6
++echo "configure:3044: checking for Tcl_StaticPackage in -ltcl80" >&5
+ ac_lib_var=`echo tcl'_'Tcl_StaticPackage | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ ac_save_LIBS="$LIBS"
+-LIBS="-ltcl -lm $DL_LIBRARY $LIBS"
++LIBS="-ltcl80 -lm $DL_LIBRARY $LIBS"
+ cat > conftest.$ac_ext <<EOF
+ #line 3052 "configure"
+ #include "confdefs.h"
+@@ -3074,7 +3074,7 @@
+ fi
+ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
+ echo "$ac_t""yes" 1>&6
+- GIMPTCL='gimptcl'; LIBTCL_LIB="-ltcl -ltk $DL_LIBRARY"
++ GIMPTCL='gimptcl'; LIBTCL_LIB="-ltcl80 -ltk80 $DL_LIBRARY"
+ else
+ echo "$ac_t""no" 1>&6
+ echo "configure: warning: *** gimptcl plug-in will not be built ***" 1>&2
diff --git a/graphics/gimp/patches/patch-ac b/graphics/gimp/patches/patch-ac
new file mode 100644
index 00000000000..cf4765b0b79
--- /dev/null
+++ b/graphics/gimp/patches/patch-ac
@@ -0,0 +1,11 @@
+--- plug-ins/gimptcl/gtclConst.c.orig Thu Jan 29 01:34:11 1998
++++ plug-ins/gimptcl/gtclConst.c Thu Jan 29 01:35:21 1998
+@@ -27,7 +27,7 @@
+ */
+
+ #include <stdlib.h>
+-#include <tcl.h>
++#include <tcl8.0/tcl.h>
+
+ #include <glib.h>
+ #include <libgimp/gimp.h>
diff --git a/graphics/gimp/patches/patch-ad b/graphics/gimp/patches/patch-ad
new file mode 100644
index 00000000000..a07475554e3
--- /dev/null
+++ b/graphics/gimp/patches/patch-ad
@@ -0,0 +1,13 @@
+--- plug-ins/gimptcl/gtclMain.c.orig Thu Jan 29 01:34:18 1998
++++ plug-ins/gimptcl/gtclMain.c Thu Jan 29 01:35:15 1998
+@@ -29,8 +29,8 @@
+ #include <string.h>
+ #include <stdlib.h>
+ #include <libgimp/gimp.h>
+-#include <tcl.h>
+-#include <tk.h>
++#include <tcl8.0/tcl.h>
++#include <tk8.0/tk.h>
+
+ #include "gtcl.h"
+
diff --git a/graphics/gimp/patches/patch-ae b/graphics/gimp/patches/patch-ae
new file mode 100644
index 00000000000..2da72a1c964
--- /dev/null
+++ b/graphics/gimp/patches/patch-ae
@@ -0,0 +1,11 @@
+--- plug-ins/gimptcl/gtclPDB.c.orig Thu Jan 29 01:34:27 1998
++++ plug-ins/gimptcl/gtclPDB.c Thu Jan 29 01:34:52 1998
+@@ -27,7 +27,7 @@
+ */
+
+ #include <ctype.h>
+-#include <tcl.h>
++#include <tcl8.0/tcl.h>
+ #include <stdlib.h>
+ #include <string.h>
+ #include <libgimp/gimp.h>
diff --git a/graphics/gimp/patches/patch-af b/graphics/gimp/patches/patch-af
new file mode 100644
index 00000000000..5080f0866c8
--- /dev/null
+++ b/graphics/gimp/patches/patch-af
@@ -0,0 +1,11 @@
+--- plug-ins/gimptcl/gtcl_misc.c.orig Thu Jan 29 01:34:33 1998
++++ plug-ins/gimptcl/gtcl_misc.c Thu Jan 29 01:35:02 1998
+@@ -29,7 +29,7 @@
+ #include <ctype.h>
+ #include <stdlib.h>
+ #include <string.h>
+-#include <tcl.h>
++#include <tcl8.0/tcl.h>
+ #include <libgimp/gimp.h>
+ #include "gtcl.h"
+
diff --git a/graphics/gimp/patches/patch-ag b/graphics/gimp/patches/patch-ag
new file mode 100644
index 00000000000..025ef7c2fa0
--- /dev/null
+++ b/graphics/gimp/patches/patch-ag
@@ -0,0 +1,15 @@
+--- plug-ins/mail/mail.c.orig Mon Nov 24 23:04:27 1997
++++ plug-ins/mail/mail.c Mon Feb 2 22:10:46 1998
+@@ -88,9 +88,9 @@
+ * As always: The utility of this plugin is left as an exercise for the reader
+ *
+ */
+-#ifndef MAILER
+-#define MAILER "/usr/lib/sendmail"
+-#endif
++
++#include <paths.h>
++#define MAILER _PATH_SENDMAIL
+
+ #ifndef UUENCODE
+ #define UUENCODE "uuencode"