summaryrefslogtreecommitdiff
path: root/print/ghostscript6/patches/patch-bc
diff options
context:
space:
mode:
Diffstat (limited to 'print/ghostscript6/patches/patch-bc')
-rw-r--r--print/ghostscript6/patches/patch-bc18
1 files changed, 0 insertions, 18 deletions
diff --git a/print/ghostscript6/patches/patch-bc b/print/ghostscript6/patches/patch-bc
deleted file mode 100644
index ae683c3ce28..00000000000
--- a/print/ghostscript6/patches/patch-bc
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-bc,v 1.1.1.1 2006/12/27 17:39:14 joerg Exp $
-
---- lib/pv.sh.orig 2000-03-09 08:40:40.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