summaryrefslogtreecommitdiff
path: root/print/ghostscript-gnu/patches/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'print/ghostscript-gnu/patches/patch-ad')
-rw-r--r--print/ghostscript-gnu/patches/patch-ad18
1 files changed, 18 insertions, 0 deletions
diff --git a/print/ghostscript-gnu/patches/patch-ad b/print/ghostscript-gnu/patches/patch-ad
new file mode 100644
index 00000000000..7e661668ef1
--- /dev/null
+++ b/print/ghostscript-gnu/patches/patch-ad
@@ -0,0 +1,18 @@
+$NetBSD: patch-ad,v 1.1 2005/11/27 17:06:36 adrianp Exp $
+
+--- lib/pv.sh.orig 2005-11-27 14:39:25.000000000 +0000
++++ lib/pv.sh
+@@ -29,9 +29,10 @@ TEMPDIR=.
+ PAGE=$1
+ shift
+ FILE=$1
++TEMPFILE=`mktemp -t ${FILE}XXXXXX` || exit 1
+ shift
+-trap "rm -rf $TEMPDIR/$FILE.$$.pv" 0 1 2 15
++trap "rm -rf $TEMPFILE" 0 1 2 15
+ #dvips -D$RESOLUTION -p $PAGE -n 1 $FILE $* -o $FILE.$$.pv
+-dvips -p $PAGE -n 1 $FILE $* -o $FILE.$$.pv
+-gs $FILE.$$.pv
++dvips -p $PAGE -n 1 $FILE $* -o $TEMPFILE
++gs $TEMPFILE
+ exit 0