Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
$NetBSD: patch-aa,v 1.1 2005/10/09 20:02:29 rillig Exp $
Some typos in the man page.
--- latex2html.pin.orig Fri Aug 23 07:15:01 2002
+++ latex2html.pin Sun Oct 9 21:58:17 2005
@@ -16875,7 +16875,7 @@ S<[ B<-font_size> I<size> ]>
S<[ B<->(B<no>)B<tex_defs> ]>
S<[ B<->(B<no>)B<navigation> ]>
S<[ B<->(B<no>)B<top_navigation> ]>
-S<[ B<->(B<no>)B<buttom_navigation> ]>
+S<[ B<->(B<no>)B<bottom_navigation> ]>
S<[ B<->(B<no>)B<auto_navigation> ]>
S<[ B<->(B<no>)B<index_in_navigation> ]>
S<[ B<->(B<no>)B<contents_in_navigation> ]>
@@ -17048,9 +17048,9 @@ Put a navigation panel at the top of eac
Enables navigation links at the top of each page (default).
-=item B<->(B<no>)B<buttom_navigation>
+=item B<->(B<no>)B<bottom_navigation>
-Enables navigation links at the buttom of each page.
+Enables navigation links at the bottom of each page.
=item B<->(B<no>)B<auto_navigation>
+35
View File
@@ -0,0 +1,35 @@
$NetBSD: patch-ab,v 1.2 2011/07/09 14:19:30 bsiegert Exp $
--- config/install.pl.orig 2002-11-29 11:49:01.000000000 +0000
+++ config/install.pl
@@ -372,12 +372,6 @@ 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 $testpath = $cfg{TEXPATH}; # to strip (latex2)html
- #$testpath =~ s/[$dd$dd][^$dd$dd]*$//;
- #if((-d $cfg{TEXPATH} && !-w _) || (-d $testpath && !-w _)) {
- print STDERR "\nError: Cannot install LaTeX2HTML style files in $cfg{TEXPATH}\n";
- } else {
my $dir = 'texinputs';
my $dest = $cfg{TEXPATH};
unless(opendir(DIR,$dir)) {
@@ -394,12 +388,12 @@ if($cfg{TEXPATH}) {
}
}
closedir(DIR);
- if($ok && $cfg{MKTEXLSR}) {
- print "Info: Running $cfg{MKTEXLSR} to rebuild ls-R database...\n";
- system($cfg{MKTEXLSR});
- }
+# print/teTeX/module.mk will run mktexlsr automatically.
+# if($ok && $cfg{MKTEXLSR}) {
+# print "Info: Running $cfg{MKTEXLSR} to rebuild ls-R database...\n";
+# system($cfg{MKTEXLSR});
+# }
}
- }
}
print "Done. Have a lot of fun with LaTeX2HTML!\n";
exit 0;