diff options
Diffstat (limited to 'dev-tex/latex2html/files')
-rw-r--r-- | dev-tex/latex2html/files/latex2html-convert-length.patch | 4 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-destdir.patch | 15 |
2 files changed, 17 insertions, 2 deletions
diff --git a/dev-tex/latex2html/files/latex2html-convert-length.patch b/dev-tex/latex2html/files/latex2html-convert-length.patch index 63506315d5c0..4171fd7c05e9 100644 --- a/dev-tex/latex2html/files/latex2html-convert-length.patch +++ b/dev-tex/latex2html/files/latex2html-convert-length.patch @@ -5,7 +5,7 @@ } # should no longer be needed, as this is defined in latex2html.pin -if (undefined &convert_length) { sub convert_length {&convert_length_table(@_)} } -+if (undefined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } ++if (!defined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } # Translates LaTeX column specifications to HTML. Again, Netscape # needs some extra work with its width attributes in the <td> tags. @@ -16,7 +16,7 @@ } # should no longer be needed, as this is defined in latex2html.pin -if (undefined &convert_length) { sub convert_length {&convert_length_table(@_)} } -+if (undefined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } ++if (!defined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } # Translates LaTeX column specifications to HTML. Again, Netscape # needs some extra work with its width attributes in the <td> tags. diff --git a/dev-tex/latex2html/files/latex2html-destdir.patch b/dev-tex/latex2html/files/latex2html-destdir.patch new file mode 100644 index 000000000000..2d07beff449b --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-destdir.patch @@ -0,0 +1,15 @@ +Index: latex2html-2008/config/install.pl +=================================================================== +--- latex2html-2008.orig/config/install.pl ++++ latex2html-2008/config/install.pl +@@ -372,7 +372,9 @@ foreach $item (sort keys %Install_items) + + if($cfg{TEXPATH}) { + print "\nNote: trying to install LaTeX2HTML style files in TeX directory tree\n ($cfg{TEXPATH})\n"; +- unless(mkpath($cfg{TEXPATH})) { ++ my $destdir = $cfg{TEXPATH}; ++ $destdir = $ENV{'DESTDIR'}.$destdir if($ENV{'DESTDIR'}); ++ unless(mkpath($destdir)) { + #my $testpath = $cfg{TEXPATH}; # to strip (latex2)html + #$testpath =~ s/[$dd$dd][^$dd$dd]*$//; + #if((-d $cfg{TEXPATH} && !-w _) || (-d $testpath && !-w _)) { |