diff options
author | vanilla <vanilla@FreeBSD.org> | 1998-06-07 11:58:40 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 1998-06-07 11:58:40 +0800 |
commit | 00877f5a93434be82d8c1b0f92de6ded6bcae099 (patch) | |
tree | c57f075892a6f3d8d74a34af5060734a44d4a0cc /graphics/gimp-app/files | |
parent | 1152646c78664ddb346bfd3a57bf762c7066287a (diff) | |
download | freebsd-ports-graphics-00877f5a93434be82d8c1b0f92de6ded6bcae099.tar.gz freebsd-ports-graphics-00877f5a93434be82d8c1b0f92de6ded6bcae099.tar.zst freebsd-ports-graphics-00877f5a93434be82d8c1b0f92de6ded6bcae099.zip |
1. Upgrade to 1.0.0.
2. Portlint.
PR: ports/6878
Submitted by: Brett Taylor <brett@peloton.physics.montana.edu>
Diffstat (limited to 'graphics/gimp-app/files')
-rw-r--r-- | graphics/gimp-app/files/patch-aa | 6 | ||||
-rw-r--r-- | graphics/gimp-app/files/patch-ab | 15 |
2 files changed, 7 insertions, 14 deletions
diff --git a/graphics/gimp-app/files/patch-aa b/graphics/gimp-app/files/patch-aa index d88851a1fcc..a6abcf19014 100644 --- a/graphics/gimp-app/files/patch-aa +++ b/graphics/gimp-app/files/patch-aa @@ -1,5 +1,5 @@ ---- app/main.c.orig Mon Apr 20 18:19:27 1998 -+++ app/main.c Sun May 17 10:33:39 1998 +--- app/main.c.orig Sat May 30 15:32:13 1998 ++++ app/main.c Sun Jun 7 10:08:19 1998 @@ -16,6 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ @@ -8,7 +8,7 @@ #include <locale.h> #include <stdio.h> #include <stdlib.h> -@@ -80,10 +81,15 @@ +@@ -81,10 +82,15 @@ int i, j; gchar *display_name, *display_env; diff --git a/graphics/gimp-app/files/patch-ab b/graphics/gimp-app/files/patch-ab index 3c90bafc459..f176e017d79 100644 --- a/graphics/gimp-app/files/patch-ab +++ b/graphics/gimp-app/files/patch-ab @@ -1,20 +1,13 @@ - -***** -***** patches for plug-ins -***** - ---- /a/gimp-0.99.6/plug-ins/url/url.c Mon Mar 10 04:57:12 1997 -+++ plug-ins/url/url.c Wed Mar 12 21:56:39 1997 +--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998 ++++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998 @@ -146,8 +146,8 @@ } else if (pid == 0) { - execlp ("wget", "wget", filename, "-O", tmpname, NULL); -- g_warning ("url: exec failed: wget: %s\n", g_strerror(errno)); +- g_message ("url: exec failed: wget: %s\n", g_strerror(errno)); + execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL); -+ g_warning ("url: exec failed: fetch: %s\n", g_strerror(errno)); ++ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno)); _exit(127); } else - - |