summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Boeck <hanno@gentoo.org>2010-02-14 23:56:58 +0000
committerHanno Boeck <hanno@gentoo.org>2010-02-14 23:56:58 +0000
commit4bd0bd5f92ea5a9709f99cb9817ee6d464465252 (patch)
treec6afc9f42ebcb601ab1a9ed586dc5aa17b103464 /media-gfx/gimp/files
parentVersion bump. Fix a crash in xml parser, don't call gnome_vfs_init in python ... (diff)
downloadhistorical-4bd0bd5f92ea5a9709f99cb9817ee6d464465252.tar.gz
historical-4bd0bd5f92ea5a9709f99cb9817ee6d464465252.tar.bz2
historical-4bd0bd5f92ea5a9709f99cb9817ee6d464465252.zip
remove old gimp ebuilds
Package-Manager: portage-2.1.7.17/cvs/Linux x86_64
Diffstat (limited to 'media-gfx/gimp/files')
-rw-r--r--media-gfx/gimp/files/gimp-2.6.3-asneeded.diff10
-rw-r--r--media-gfx/gimp/files/gimp-2.6.7-bmp-overflow.patch43
-rw-r--r--media-gfx/gimp/files/gimp-svg.diff8
-rw-r--r--media-gfx/gimp/files/gimp-web-browser.patch39
4 files changed, 0 insertions, 100 deletions
diff --git a/media-gfx/gimp/files/gimp-2.6.3-asneeded.diff b/media-gfx/gimp/files/gimp-2.6.3-asneeded.diff
deleted file mode 100644
index f46aa35f4ab4..000000000000
--- a/media-gfx/gimp/files/gimp-2.6.3-asneeded.diff
+++ /dev/null
@@ -1,10 +0,0 @@
---- gimp-2.6.3/app/Makefile.am 2008-11-20 23:43:08.000000000 +0100
-+++ gimp-2.6.3-1/app/Makefile.am 2008-11-26 17:37:56.000000000 +0100
-@@ -141,6 +141,7 @@
- $(GEGL_LIBS) \
- $(RT_LIBS) \
- $(INTLLIBS) \
-+ $(GLIB_LIBS) \
- $(GIMPICONRC)
-
-
diff --git a/media-gfx/gimp/files/gimp-2.6.7-bmp-overflow.patch b/media-gfx/gimp/files/gimp-2.6.7-bmp-overflow.patch
deleted file mode 100644
index 10432b571a25..000000000000
--- a/media-gfx/gimp/files/gimp-2.6.7-bmp-overflow.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From df2b0aca2e7cdb95ebfd3454c65aaba0a83e9bbe Mon Sep 17 00:00:00 2001
-From: Simon Budig <simon@gimp.org>
-Date: Mon, 09 Nov 2009 23:08:59 +0000
-Subject: Harden the BMP plugin against integer overflows.
-
-Issues discovered by Stefan Cornelius, Secunia Research, advisory SA37232
-and CVE identifier CVE-2009-1570. Fixes bug #600484.
----
-diff --git a/plug-ins/file-bmp/bmp-read.c b/plug-ins/file-bmp/bmp-read.c
-index a1ebe47..7d7133a 100644
---- a/plug-ins/file-bmp/bmp-read.c
-+++ b/plug-ins/file-bmp/bmp-read.c
-@@ -424,7 +424,8 @@ ReadBMP (const gchar *name,
- return -1;
- }
-
-- if (Bitmap_Head.biWidth < 0)
-+ if (Bitmap_Head.biWidth < 0 ||
-+ ABS (Bitmap_Head.biHeight) < 0)
- {
- g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
- _("'%s' is not a valid BMP file"),
-@@ -448,6 +449,18 @@ ReadBMP (const gchar *name,
- return -1;
- }
-
-+ /* protect against integer overflows caused by malicious BMPs */
-+
-+ if (((guint64) Bitmap_Head.biWidth) * Bitmap_Head.biBitCnt > G_MAXINT32 ||
-+ ((guint64) Bitmap_Head.biWidth) * ABS (Bitmap_Head.biHeight) > G_MAXINT32 ||
-+ ((guint64) Bitmap_Head.biWidth) * ABS (Bitmap_Head.biHeight) * 4 > G_MAXINT32)
-+ {
-+ g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
-+ _("'%s' is not a valid BMP file"),
-+ gimp_filename_to_utf8 (filename));
-+ return -1;
-+ }
-+
- /* Windows and OS/2 declare filler so that rows are a multiple of
- * word length (32 bits == 4 bytes)
- */
---
-cgit v0.8.2
diff --git a/media-gfx/gimp/files/gimp-svg.diff b/media-gfx/gimp/files/gimp-svg.diff
deleted file mode 100644
index 3b830c02f556..000000000000
--- a/media-gfx/gimp/files/gimp-svg.diff
+++ /dev/null
@@ -1,8 +0,0 @@
---- desktop/gimp.desktop.in.in~ 2007-12-30 23:34:46.000000000 +0100
-+++ desktop/gimp.desktop.in.in 2007-12-30 23:34:46.000000000 +0100
-@@ -16,4 +15,4 @@
- X-GNOME-Bugzilla-Version=@GIMP_VERSION@
- X-GNOME-Bugzilla-OtherBinaries=gimp-@GIMP_APP_VERSION@
- StartupNotify=true
--MimeType=image/bmp;image/g3fax;image/gif;image/jpeg;image/jpg;image/pjpeg;image/png;image/tiff;image/x-bmp;image/x-compressed-xcf;image/x-fits;image/x-gray;image/x-pcx;image/x-png;image/x-portable-anymap;image/x-portable-bitmap;image/x-portable-graymap;image/x-portable-pixmap;image/x-psd;image/x-sgi;image/x-sun-raster;image/x-tga;image/x-xbitmap;image/x-xcf;image/x-xpixmap;image/x-xwindowdump;
-+MimeType=image/bmp;image/g3fax;image/gif;image/jpeg;image/jpg;image/pjpeg;image/png;image/tiff;image/x-bmp;image/x-compressed-xcf;image/x-fits;image/x-gray;image/x-pcx;image/x-png;image/x-portable-anymap;image/x-portable-bitmap;image/x-portable-graymap;image/x-portable-pixmap;image/x-psd;image/x-sgi;image/x-sun-raster;image/x-tga;image/x-xbitmap;image/x-xcf;image/x-xpixmap;image/x-xwindowdump;image/svg+xml;
diff --git a/media-gfx/gimp/files/gimp-web-browser.patch b/media-gfx/gimp/files/gimp-web-browser.patch
deleted file mode 100644
index 51ef87d2750b..000000000000
--- a/media-gfx/gimp/files/gimp-web-browser.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -u -r gimp-2.4.5/app/config/gimpguiconfig.c gimp-2.4.5.new/app/config/gimpguiconfig.c
---- gimp-2.4.5/app/config/gimpguiconfig.c 2007-11-20 10:31:08.000000000 +0100
-+++ gimp-2.4.5.new/app/config/gimpguiconfig.c 2008-03-25 14:13:13.000000000 +0100
-@@ -40,7 +40,7 @@
- #ifdef G_OS_WIN32
- # define DEFAULT_WEB_BROWSER "not used on Windows"
- #else
--# define DEFAULT_WEB_BROWSER "firefox %s"
-+# define DEFAULT_WEB_BROWSER "xdg-open %s"
- #endif
-
-
-Sólo en gimp-2.4.5.new/app/config: gimpguiconfig.c~
-diff -u -r gimp-2.4.5/docs/gimprc.5.in gimp-2.4.5.new/docs/gimprc.5.in
---- gimp-2.4.5/docs/gimprc.5.in 2008-01-30 11:45:12.000000000 +0100
-+++ gimp-2.4.5.new/docs/gimprc.5.in 2008-03-25 14:13:51.000000000 +0100
-@@ -788,7 +788,7 @@
- web-browser.
-
- .TP
--(web-browser "firefox %s")
-+(web-browser "xdg-open %s")
-
- Sets the external web browser to be used. This can be an absolute path or the
- name of an executable to search for in the user's PATH. If the command
-Sólo en gimp-2.4.5.new/docs: gimprc.5.in~
-diff -u -r gimp-2.4.5/etc/gimprc gimp-2.4.5.new/etc/gimprc
---- gimp-2.4.5/etc/gimprc 2008-01-30 11:45:12.000000000 +0100
-+++ gimp-2.4.5.new/etc/gimprc 2008-03-25 14:14:30.000000000 +0100
-@@ -625,7 +625,7 @@
- # appended to the command with a space separating the two. This is a single
- # filename.
- #
--# (web-browser "firefox %s")
-+# (web-browser "xdg-open %s")
-
- # The window type hint that is set on the toolbox. This may affect how your
- # window manager decorates and handles the toolbox window. Possible values
-Sólo en gimp-2.4.5.new/etc: gimprc~