summaryrefslogtreecommitdiff
path: root/print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-09-06 20:30:48 +0000
committerJohn Marino <marino@FreeBSD.org>2014-09-06 20:30:48 +0000
commit64b8301fc7aef136a4ad5754a6b03efb462975ff (patch)
tree31f3dbb1899a70c529902f145880cf916fc46815 /print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967
parent- Update to version 2.10.0 (diff)
Remove 5 unstaged print/ghostscript7* ports
Notes
Notes: svn path=/head/; revision=367470
Diffstat (limited to 'print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967')
-rw-r--r--print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-096729
1 files changed, 0 insertions, 29 deletions
diff --git a/print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967 b/print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967
deleted file mode 100644
index 314d5d0bbe84..000000000000
--- a/print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967
+++ /dev/null
@@ -1,29 +0,0 @@
---- lib/sysvlp.sh.orig Thu Mar 9 17:40:40 2000
-+++ lib/sysvlp.sh Mon Nov 28 02:22:42 2005
-@@ -27,20 +27,23 @@
- # 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