summaryrefslogtreecommitdiff
path: root/Master/bin/win32/includeres.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/win32/includeres.bat')
-rwxr-xr-xMaster/bin/win32/includeres.bat57
1 files changed, 0 insertions, 57 deletions
diff --git a/Master/bin/win32/includeres.bat b/Master/bin/win32/includeres.bat
deleted file mode 100755
index 06eaf661600..00000000000
--- a/Master/bin/win32/includeres.bat
+++ /dev/null
@@ -1,57 +0,0 @@
-@rem = '-*- Perl -*-
-@echo off
-perl -S %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
-goto endofperl
-';
-
-# includeres: include resources in PostScript file
-#
-# Copyright (C) Angus J. C. Duggan 1991-1995
-# See file LICENSE for details.
-
-$prog = ($0 =~ s=.*/==);
-
-%extn = ("font", ".pfa", "file", ".ps", "procset", ".ps", # resource extns
- "pattern", ".pat", "form", ".frm", "encoding", ".enc");
-%type = ("%%BeginFile:", "file", "%%BeginProcSet:", "procset",
- "%%BeginFont:", "font"); # resource types
-
-$sysdir = `kpsewhich --progname=dvips --format="other text files" md71_0.ps` ;
-chomp($sysdir) ;
-$sysdir =~ s/\/md71_0\.ps// ;
-
-sub filename { # make filename for resource in @_
- local($name);
- foreach (@_) { # sanitise name
- s/[!()\$\#*&\\\|\`\'\"\~\{\}\[\]\<\>\?]//g;
- $name .= $_;
- }
- $name =~ s@.*/@@; # drop directories
- die "Filename not found for resource ", join(" ", @_), "\n"
- if $name =~ /^$/;
- $name;
-}
-
-while (<>) {
- if (/^%%IncludeResource:/ || /^%%IncludeFont:/ || /^%%IncludeProcSet:/) {
- local($comment, @res) = split(/\s+/);
- local($type) = defined($type{$comment}) ? $type{$comment} : shift(@res);
- local($name) = &filename(@res);
- local($inc) = $sysdir ; # system include directory
- if (open(RES, $name) || open(RES, "$name$extn{$type}") ||
- open(RES, "$inc/$name") || open(RES, "$inc/$name$extn{$type}")) {
- while (<RES>) {
- print $_;
- }
- close(RES);
- } else {
- print "%%IncludeResource: ", join(" ", $type, @res), "\n";
- print STDERR "Resource $name not found\n";
- }
- } else {
- print $_;
- }
-}
-__END__
-:endofperl
-