diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-02-29 02:03:02 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-02-29 02:03:02 +0000 |
commit | 80053aa18e80a799026665dd93584bd8a193bfe4 (patch) | |
tree | 7a096572d63c233e4d4f9f6cdd7b683ae1e43472 /graphics/epstool/files | |
parent | Update port to 1.1.2 (diff) |
Update port to 1.08
PR: 16965
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'graphics/epstool/files')
-rw-r--r-- | graphics/epstool/files/patch-aa | 6 | ||||
-rw-r--r-- | graphics/epstool/files/patch-ab | 19 |
2 files changed, 17 insertions, 8 deletions
diff --git a/graphics/epstool/files/patch-aa b/graphics/epstool/files/patch-aa index e62fe4ce5f52..e99640db8d18 100644 --- a/graphics/epstool/files/patch-aa +++ b/graphics/epstool/files/patch-aa @@ -1,5 +1,5 @@ ---- makefile.unx.orig Sun Aug 23 05:14:04 1998 -+++ makefile.unx Tue Dec 7 00:50:56 1999 +--- makefile.unx.orig Sat Dec 5 04:05:34 1998 ++++ makefile.unx Fri Feb 25 04:42:20 2000 @@ -20,13 +20,13 @@ RM=/bin/rm -f SHELL=/bin/sh @@ -7,7 +7,7 @@ -BINDIR=/usr/local/bin -INCLUDES=-I/usr/openwin/include +BINDIR=${PREFIX}/bin -+INCLUDES=-I${X11BASE}/include ++INCLUDES= LIBS= # if you have a strict ANSI compiler, add -D__STDC__ DEFINES=-DUNIX -DEPSTOOL -DHAVE_UNISTD_H diff --git a/graphics/epstool/files/patch-ab b/graphics/epstool/files/patch-ab index 716545b464ac..e0b07b792577 100644 --- a/graphics/epstool/files/patch-ab +++ b/graphics/epstool/files/patch-ab @@ -1,5 +1,5 @@ ---- epstool.c.orig Sun Sep 13 09:52:52 1998 -+++ epstool.c Sat Oct 23 17:59:46 1999 +--- epstool.c.orig Tue Feb 15 08:52:06 2000 ++++ epstool.c Fri Feb 25 04:09:56 2000 @@ -25,7 +25,7 @@ char upname[MAXSTR]; char gsname[MAXSTR] = GSCOMMAND; @@ -9,7 +9,7 @@ char szScratch[] = "ep"; char szAppName[] = "epstool"; int resolution = 72; -@@ -87,9 +87,9 @@ +@@ -90,9 +90,9 @@ main(int argc, char *argv[]) { #ifdef UNIX @@ -21,7 +21,7 @@ #endif if (scan_args(argc, argv)) return 1; -@@ -252,10 +252,10 @@ +@@ -260,10 +260,10 @@ fclose(tempfile); #ifdef UNIX sprintf(gscommand, "%s -dNOPAUSE -dQUIET -sDEVICE=%s -sOutputFile=\042%s\042 -r%d -g%dx%d %s", @@ -34,7 +34,7 @@ if (!quiet) { fputs(gscommand, stderr); fputs("\n", stderr); -@@ -409,7 +409,7 @@ +@@ -429,7 +429,7 @@ break; case 'z': if (argp[2]) @@ -43,3 +43,12 @@ break; case 'c': if (got_op) { +@@ -566,7 +566,7 @@ + + strcat(fname, prefix); + strcat(fname, "XXXXXX"); +- mktemp(fname); ++ mkstemp(fname); + return fopen(fname, mode); + } + |