summaryrefslogtreecommitdiff
path: root/print/ghostscript6/patches/patch-bd
diff options
context:
space:
mode:
Diffstat (limited to 'print/ghostscript6/patches/patch-bd')
-rw-r--r--print/ghostscript6/patches/patch-bd31
1 files changed, 0 insertions, 31 deletions
diff --git a/print/ghostscript6/patches/patch-bd b/print/ghostscript6/patches/patch-bd
deleted file mode 100644
index 0eb9d628d1f..00000000000
--- a/print/ghostscript6/patches/patch-bd
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-bd,v 1.1.1.1 2006/12/27 17:39:14 joerg Exp $
-
---- lib/sysvlp.sh.orig 2000-03-09 08:40:40.000000000 +0000
-+++ lib/sysvlp.sh
-@@ -27,20 +27,23 @@ files="$*"
- # Brother HL-4: switch to HP laserjet II+ emulation
- # echo "\033\015H\c"
-
-+TEMPDIR=`mktemp -td sysvlp.XXXXXX` || exit 1
-+
- i=1
- while [ $i -le $copies ]
- do
- for file in $files
- do
- $GSHOME/gs \
-- -sOUTPUTFILE=/tmp/psp$$.%02d \
-+ -sOUTPUTFILE=$TEMPDIR/psp$$.%02d \
- -sDEVICE=$DEVICE \
- $EHANDLER $file \
- < /dev/null >> /usr/tmp/ps_log 2>&1
-
-- cat /tmp/psp$$.* 2>> /usr/tmp/ps_log
-- rm -f /tmp/psp$$.*
-+ cat $TEMPDIR/psp$$.* 2>> /usr/tmp/ps_log
-+ rm -f $TEMPDIR/psp$$.*
- done
- i=`expr $i + 1`
- done
-+rmdir $TEMPDIR
- exit 0