diff options
author | adamw <adamw@FreeBSD.org> | 2005-12-29 03:35:45 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2005-12-29 03:35:45 +0800 |
commit | 90969ea0fdaca5ae7e5dc1910d0a0dd59a6fa0d3 (patch) | |
tree | 6537df47dc9cb44583f215f616c3edd48549a61c /graphics/gimp | |
parent | d63c3f80135e95dc9dd99548829ebb59fca51163 (diff) | |
download | freebsd-ports-gnome-90969ea0fdaca5ae7e5dc1910d0a0dd59a6fa0d3.tar.gz freebsd-ports-gnome-90969ea0fdaca5ae7e5dc1910d0a0dd59a6fa0d3.tar.zst freebsd-ports-gnome-90969ea0fdaca5ae7e5dc1910d0a0dd59a6fa0d3.zip |
Update to 2.2.10. Works with GNOME 2.15 too!
Diffstat (limited to 'graphics/gimp')
-rw-r--r-- | graphics/gimp/Makefile | 3 | ||||
-rw-r--r-- | graphics/gimp/distinfo | 6 | ||||
-rw-r--r-- | graphics/gimp/files/patch-plug-ins_common_svg.c | 20 | ||||
-rw-r--r-- | graphics/gimp/files/patch-plug-ins_common_url.c | 18 |
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); + } |