summaryrefslogtreecommitdiff
path: root/Master/bin/win32/pdf2dsc.bat
diff options
context:
space:
mode:
authorStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:35:02 +0000
committerStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:35:02 +0000
commitecb7a4e0b6c82b917815412a2589cb3f373f23d4 (patch)
treeea6f22e273116b6777be7fa3f65474ef61ccb06a /Master/bin/win32/pdf2dsc.bat
parentfbf4a6e8014789c67a381e0b4f05de5bdadbce24 (diff)
old win32 deleted
git-svn-id: svn://tug.org/texlive/trunk@2779 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32/pdf2dsc.bat')
-rwxr-xr-xMaster/bin/win32/pdf2dsc.bat29
1 files changed, 0 insertions, 29 deletions
diff --git a/Master/bin/win32/pdf2dsc.bat b/Master/bin/win32/pdf2dsc.bat
deleted file mode 100755
index c81cc48d68e..00000000000
--- a/Master/bin/win32/pdf2dsc.bat
+++ /dev/null
@@ -1,29 +0,0 @@
-@rem = '--*-Perl-*--
-@echo off
-perl -x -S %0 %*
-goto endofperl
-@rem ';
-#!/usr/bin/env perl
-#line 8
-$^W=1;
-
-@GS_CMD=(-d "/usr/bin")? ("gs"):("gswin32");
-
-die "usage: $0 pdffile [dscfile]\n" unless (@ARGV);
-
-$pdffile=shift @ARGV;
-
-if (@ARGV) {
- $dscfile=shift @ARGV;
-} else {
- ($dscfile=$pdffile)=~s/\.pdf$/\.dsc/;
-}
-
-push @GS_CMD, qw(-q -dNODISPLAY -dSAFER -dDELAYSAFER);
-push @GS_CMD, ("-sPDFname=$pdffile", "-sDSCname=$dscfile");
-push @GS_CMD, qw(pdf2dsc.ps -c quit);
-
-exec @GS_CMD or die $!;
-
-__END__
-:endofperl