summaryrefslogtreecommitdiff
path: root/graphics/gimp
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2005-12-28 19:35:45 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2005-12-28 19:35:45 +0000
commit9ee698e49edb099151c4a098717ab7340d483a03 (patch)
treeba7b9f4139e0a9d0f13a3720da86b203eca0f47d /graphics/gimp
parentUpdate to 0.04 (diff)
Update to 2.2.10. Works with GNOME 2.15 too!
Notes
Notes: svn path=/head/; revision=152293
Diffstat (limited to 'graphics/gimp')
-rw-r--r--graphics/gimp/Makefile3
-rw-r--r--graphics/gimp/distinfo6
-rw-r--r--graphics/gimp/files/patch-plug-ins_common_svg.c20
-rw-r--r--graphics/gimp/files/patch-plug-ins_common_url.c18
4 files changed, 15 insertions, 32 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile
index d9e03cd7973b..16defd724159 100644
--- a/graphics/gimp/Makefile
+++ b/graphics/gimp/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= gimp
-PORTVERSION= 2.2.9
-PORTREVISION= 1
+PORTVERSION= 2.2.10
PORTEPOCH= 1
CATEGORIES= graphics gnome
MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \
diff --git a/graphics/gimp/distinfo b/graphics/gimp/distinfo
index d8a11ae9a424..1ad65c7b44db 100644
--- a/graphics/gimp/distinfo
+++ b/graphics/gimp/distinfo
@@ -1,3 +1,3 @@
-MD5 (gimp-2.2.9.tar.bz2) = 737f4e74044427c12e30217dff0f29f5
-SHA256 (gimp-2.2.9.tar.bz2) = 7790a634e8a47e01c7108afeea933f9b614743eb1abd89dce4cb78adeec911fb
-SIZE (gimp-2.2.9.tar.bz2) = 12811906
+MD5 (gimp-2.2.10.tar.bz2) = aa29506ed2272af02941a7a601a7a097
+SHA256 (gimp-2.2.10.tar.bz2) = 41f4befa851177e2ca9bbab2fad19926178c831454ca51f2cb91fec0ed9e243e
+SIZE (gimp-2.2.10.tar.bz2) = 12916552
diff --git a/graphics/gimp/files/patch-plug-ins_common_svg.c b/graphics/gimp/files/patch-plug-ins_common_svg.c
deleted file mode 100644
index 5c915dc67bab..000000000000
--- a/graphics/gimp/files/patch-plug-ins_common_svg.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- plug-ins/common/svg.c.orig Sun Nov 6 14:24:49 2005
-+++ plug-ins/common/svg.c Sun Nov 6 14:25:01 2005
-@@ -437,7 +437,7 @@ load_rsvg_pixbuf (const gchar *filename
-
- handle = rsvg_handle_new ();
-
--#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 99)
-+#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 13)
- rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution);
- #else
- rsvg_handle_set_dpi (handle, vals->resolution, vals->resolution);
-@@ -538,7 +538,7 @@ load_rsvg_size (const gchar *filename,
-
- handle = rsvg_handle_new ();
-
--#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 99)
-+#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 13)
- rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution);
- #else
- rsvg_handle_set_dpi (handle, vals->resolution, vals->resolution);
diff --git a/graphics/gimp/files/patch-plug-ins_common_url.c b/graphics/gimp/files/patch-plug-ins_common_url.c
index 70c31c3617f8..bceff6df101c 100644
--- a/graphics/gimp/files/patch-plug-ins_common_url.c
+++ b/graphics/gimp/files/patch-plug-ins_common_url.c
@@ -1,13 +1,17 @@
---- plug-ins/common/url.c.orig Mon Mar 14 05:00:40 2005
-+++ plug-ins/common/url.c Sun Apr 10 11:45:50 2005
-@@ -186,8 +186,8 @@
+--- plug-ins/common/url.c.orig Wed Dec 28 13:56:48 2005
++++ plug-ins/common/url.c Wed Dec 28 13:58:33 2005
+@@ -186,10 +186,10 @@
putenv ("LANG=C");
#endif
-- execlp ("wget", "wget", "-e", "server-response=off", "-T", TIMEOUT,
+- execlp ("wget",
+- "wget", "-v", "-e", "server-response=off", "-T", TIMEOUT,
- filename, "-O", tmpname, NULL);
-+ execlp ("fetch", "fetch", "-T", TIMEOUT, filename, "-p", "-o",
-+ tmpname, NULL);
- g_message ("exec() failed: wget: %s", g_strerror (errno));
+- g_message ("exec() failed: wget: %s", g_strerror (errno));
++ execlp ("fetch",
++ "fetch", "-T", TIMEOUT,
++ filename, "-p", "-o", tmpname, NULL);
++ g_message ("exec() failed: fetch: %s", g_strerror (errno));
g_free (tmpname);
_exit (127);
+ }