aboutsummaryrefslogtreecommitdiff
path: root/crypto/krb5/doc/pdf/latexmkjarc
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/krb5/doc/pdf/latexmkjarc')
-rw-r--r--crypto/krb5/doc/pdf/latexmkjarc22
1 files changed, 0 insertions, 22 deletions
diff --git a/crypto/krb5/doc/pdf/latexmkjarc b/crypto/krb5/doc/pdf/latexmkjarc
deleted file mode 100644
index 6e36b195b2d3..000000000000
--- a/crypto/krb5/doc/pdf/latexmkjarc
+++ /dev/null
@@ -1,22 +0,0 @@
-$latex = 'pdflatex ' . $ENV{'LATEXOPTS'} . ' -kanji=utf8 %O %S';
-$dvipdf = 'dvipdfmx %O -o %D %S';
-$makeindex = 'internal mendex %S %B %D';
-sub mendex {
- my ($source, $basename, $destination) = @_;
- my $dictfile = $basename . ".dic";
- unlink($destination);
- system("mendex", "-U", "-f", "-d", $dictfile, "-s", "python.ist", $source);
- if ($? > 0) {
- print("mendex exited with error code $? (ignored)\n");
- }
- if (!-e $destination) {
- # create an empty .ind file if nothing
- open(FH, ">" . $destination);
- close(FH);
- }
- return 0;
-}
-add_cus_dep( "glo", "gls", 0, "makeglo" );
-sub makeglo {
- return system( "mendex -J -f -s gglo.ist -o '$_[0].gls' '$_[0].glo'" );
-} \ No newline at end of file