summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm14
-rwxr-xr-xMaster/tlpkg/bin/check-file-coverage9
-rwxr-xr-xMaster/tlpkg/bin/tlpsrc2tlpobj75
-rw-r--r--Master/tlpkg/texlive.tlpdb473
-rw-r--r--Master/tlpkg/tlpsrc/a2ping.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-afm2pl.tlpsrc10
-rw-r--r--Master/tlpkg/tlpsrc/bin-amstex.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-bibtex.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-cjkutils.tlpsrc14
-rw-r--r--Master/tlpkg/tlpsrc/bin-ctie.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-cweb.tlpsrc6
-rw-r--r--Master/tlpkg/tlpsrc/bin-cyrillic.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-detex.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-dialog.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-dtl.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-dvi2tty.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-dvicopy.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-dvidvi.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-dviljk.tlpsrc12
-rw-r--r--Master/tlpkg/tlpsrc/bin-dvipdfm.tlpsrc6
-rw-r--r--Master/tlpkg/tlpsrc/bin-dvipsk.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-eplain.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-fontware.tlpsrc8
-rw-r--r--Master/tlpkg/tlpsrc/bin-getafm.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-getnonfreefonts.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-gsftopk.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc26
-rw-r--r--Master/tlpkg/tlpsrc/bin-lacheck.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-latex.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-lcdftypetools.tlpsrc14
-rw-r--r--Master/tlpkg/tlpsrc/bin-makeindex.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-metafont.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-metapost.tlpsrc12
-rw-r--r--Master/tlpkg/tlpsrc/bin-mfware.tlpsrc12
-rw-r--r--Master/tlpkg/tlpsrc/bin-omega.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-patgen.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-pdftools.tlpsrc6
-rw-r--r--Master/tlpkg/tlpsrc/bin-ps2pkm.tlpsrc8
-rw-r--r--Master/tlpkg/tlpsrc/bin-pstools.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-psutils.tlpsrc38
-rw-r--r--Master/tlpkg/tlpsrc/bin-seetexk.tlpsrc8
-rw-r--r--Master/tlpkg/tlpsrc/bin-t1utils.tlpsrc12
-rw-r--r--Master/tlpkg/tlpsrc/bin-tex.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-texdoc.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-texlive.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-texware.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/bin-tie.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/bin-web.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/mkjobtexmf.tlpsrc4
-rw-r--r--Master/tlpkg/tlpsrc/pdftex.tlpsrc6
-rw-r--r--Master/tlpkg/tlpsrc/texinfo.tlpsrc18
-rw-r--r--Master/tlpkg/tlpsrc/thumbpdf.tlpsrc2
-rw-r--r--Master/tlpkg/tlpsrc/xindy.tlpsrc2
53 files changed, 544 insertions, 331 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index a7b0e4cd5d8..f32d6ebf478 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -176,8 +176,12 @@ sub size_of {
}
}
+# return a per-architecture hash ref for TYPE eq "bin",
+# list ref for all others.
+#
sub get_matching_files {
my ($self, $type, $p) = @_;
+
if ($type eq "bin") {
my %returnfiles;
# binpatterns can have an additions specifier after the prefix: /ARCH
@@ -188,8 +192,9 @@ sub get_matching_files {
my $pr = $3;
my @foo = $self->_get_matching_files($type,"$pt $pr");
$returnfiles{$aa} = [ @foo ];
- return(\%returnfiles);
+ return \%returnfiles;
}
+
# we first substitute arch for ${ARCH}
foreach $a ($self->architectures) {
# return empty list of arch!=win32 and pattern matches bin/win32
@@ -203,10 +208,11 @@ sub get_matching_files {
my @foo = $self->_get_matching_files($type,$newp);
$returnfiles{$a} = [ @foo ];
}
- return(\%returnfiles);
- } else {
+ return \%returnfiles;
+
+ } else { # non-bin pattern
my @returnfiles = $self->_get_matching_files($type,$p);
- return(\@returnfiles);
+ return \@returnfiles;
}
}
diff --git a/Master/tlpkg/bin/check-file-coverage b/Master/tlpkg/bin/check-file-coverage
index facc6ab0efc..4aa8b07b5d6 100755
--- a/Master/tlpkg/bin/check-file-coverage
+++ b/Master/tlpkg/bin/check-file-coverage
@@ -35,16 +35,15 @@ my @IgnorePatterns = qw!
tlpkg/texlive.tlpdb
!;
-TeXLive::TLUtils::process_logging_options();
-
chomp (my $opt_master = `cd $::mydir/../.. && pwd`);
-my $help = 0;
+my $opt_help = 0;
+TeXLive::TLUtils::process_logging_options();
GetOptions(
"master=s" => \$opt_master, # location of the TL tree
- "help|?" => \$help) or pod2usage(1);
+ "help|?" => \$opt_help) or pod2usage(1);
-pod2usage(-exitstatus => 0, -verbose => 2) if $help;
+pod2usage ('-exitstatus' => 0, '-verbose' => 2) if $opt_help;
exit (&main ());
diff --git a/Master/tlpkg/bin/tlpsrc2tlpobj b/Master/tlpkg/bin/tlpsrc2tlpobj
index 3425055997f..73c7aaadaec 100755
--- a/Master/tlpkg/bin/tlpsrc2tlpobj
+++ b/Master/tlpkg/bin/tlpsrc2tlpobj
@@ -8,7 +8,7 @@
BEGIN {
$^W = 1;
- chomp ($mydir = `dirname $0`);
+ chomp ($mydir = `dirname $0`);
unshift (@INC, "$mydir/..");
}
@@ -22,53 +22,52 @@ use Getopt::Long;
use Pod::Usage;
use File::Path;
-
-my $opt_master = "/src/TeX/texlive-svn/Master";
-my $opt_outputdir = "./tlpobj";
-my $help = 0;
my $opt_catalogue = "";
+chomp (my $opt_master = `cd $::mydir/../.. && pwd`);
+my $opt_outputdir = "./tlpobj";
+my $opt_help = 0;
TeXLive::TLUtils::process_logging_options();
-
GetOptions(
- "master=s" => \$opt_master, # location of the tree
"catalogue=s" => \$opt_catalogue, # location of the TeX Catalogue
+ "master=s" => \$opt_master, # location of the tree
"outputdir=s" => \$opt_outputdir,
- "help|?" => \$help) or pod2usage(1);
-
-pod2usage(-exitstatus => 0, -verbose => 2) if $help;
+ "help|?" => \$opt_help) or pod2usage(1);
+pod2usage ('-exitstatus' => 0, '-verbose' => 2) if $opt_help;
-if (! -d "$opt_master") {
- die "Master $opt_master does not exists!";
+die "Master $opt_master not a directory" if ! -d $opt_master;
+if (! -d $opt_outputdir) {
+ mkpath ($opt_outputdir);
+ die "mkdir($opt_outputdir) failed: $!" if ! -d $opt_outputdir;
}
-if (! -d "$opt_outputdir") {
- mkpath("$opt_outputdir") or die "Cannot mkdir $opt_outputdir!";
-}
-
-my $tlc;
+my $tlc = undef;
if (! -d "$opt_catalogue") {
- info("$0: -d /Cat/a/logue not given, continuing without it.\n");
+ info ("$0: -d /Cat/a/logue not given, continuing without it.\n");
} else {
require TeXLive::TeXCatalogue; # not at compile time, for now anyway.
- $tlc = TeXLive::TeXCatalogue->new( 'location' => "$opt_catalogue" );
+ $tlc = TeXLive::TeXCatalogue->new ('location' => $opt_catalogue);
}
-my $tltree = TeXLive::TLTREE->new( 'svnroot' => "$opt_master" );
+my $tltree = TeXLive::TLTREE->new ('svnroot' => $opt_master);
$tltree->init_from_svn;
foreach my $f (@ARGV) {
- my $tlsrc = new TeXLive::TLPSRC;
- $tlsrc->from_file($f);
- my $tlp = $tlsrc->make_tlpobj($tltree);
- my $tlcname = defined($tlp->catalogue) ? $tlp->catalogue : $tlp->name;
- if ($tlc) {
- $tlp->update_from_catalogue($tlc);
- }
- my $name = $tlp->name;
- open(FOO,">$opt_outputdir/$name.tlpobj") or die "Cannot create $opt_outputdir/$name.tlpobj!";
- $tlp->writeout(\*FOO);
- close(FOO);
+ my $tlsrc = new TeXLive::TLPSRC;
+ $tlsrc->from_file ($f);
+
+ my $tlp = $tlsrc->make_tlpobj ($tltree);
+ if ($tlc) {
+ $tlp->update_from_catalogue ($tlc);
+ }
+
+ my $name = $tlp->name;
+
+ my $OUT;
+ $OUT = ">$opt_outputdir/$name.tlpobj";
+ open (OUT, $OUT) || die "create($OUT) failed: $!";
+ $tlp->writeout (\*OUT);
+ close (OUT) || warn "close($OUT) failed: $!";
}
__END__
@@ -86,26 +85,32 @@ tlpsrc2tlpobj [OPTION]... [TLPSRC]...
=over 8
=item B<-catalogue> I<Catalogue_dir>
+
The location given by B<-catalogue> must point to a valid TeX Catalogue.
No default value. If given, the generated tlpobj files will contain
information gathered from the TeX Catalogue.
=item B<-master> I<Master_dir>
+
The location given by B<-master> must point to a valid svn repository
of TeX Live's Master direcory. Defaults to C<../..> of C<$0>.
=item B<-outputdir> I<output_dir>
-Specifies the location where tlp files are created. Defaults to C<./tlp>.
+
+Specifies the location where tlpobj files are created; default C<./tlpobj>.
=back
-The standard options C<-help> and C<-debug> are also accepted.
-See the tlpfiles documentation for details.
+The standard options C<-help> and The standard options B<-q>, B<-v>, and
+B<-logfile>=I<file> are also accepted; see the
+C<process_logging_options> function in L<TeXLive::TLUtils> for details.
=head1 DESCRIPTION
B<tlpsrc2tlpobj> converts TeX Live Package Source files (tlpsrc) into
-TeX Live Package Object files (tlpobj).
+TeX Live Package Object files (tlpobj). The process and the file
+formats are described in various separate documents in the C<tlpkg/doc>
+directory.
=head1 AUTHORS AND COPYRIGHT
diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb
index f0447770218..9622bd7ea2b 100644
--- a/Master/tlpkg/texlive.tlpdb
+++ b/Master/tlpkg/texlive.tlpdb
@@ -39,7 +39,7 @@ depend container_split_src_files
depend container_split_doc_files
depend container_format/lzma
depend release/2008
-depend revision/9623
+depend revision/9629
name 00texlive.core
category TLCore
@@ -1028,7 +1028,7 @@ catalogue-version 1.22b
name a2ping
category TLCore
-revision 9317
+revision 9626
shortdesc Advanced PS, PDF, EPS converter.
longdesc a2ping is a Perl script command line utility written for Unix
longdesc that converts many raster image and vector graphics formats to
@@ -1041,8 +1041,9 @@ longdesc level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes
longdesc many glitches during the EPS to EPS conversion, so its output
longdesc is often more compatible and better embeddable than its input.
depend a2ping.ARCH
-docfiles size=4
+docfiles size=8
texmf/doc/man/man1/a2ping.1
+ texmf/doc/man/man1/a2ping.pdf
runfiles size=26
texmf/scripts/a2ping/a2ping.pl
catalogue-ctan /graphics/a2ping/a2ping.pl
@@ -4510,7 +4511,7 @@ docfiles size=755
texmf-dist/doc/latex/arabi/testplaintex.pdf
texmf-dist/doc/latex/arabi/testplaintex.tex
texmf-dist/doc/latex/arabi/user_guide.pdf
-runfiles size=1026
+runfiles size=1028
texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_boldItalitalic.afm
texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_thin.afm
texmf-dist/fonts/afm/arabi/arabeyes/ae_almohanad_xxbold.afm
@@ -7680,7 +7681,7 @@ runfiles size=412
name babel
category Package
-revision 9608
+revision 9360
shortdesc Multilingual support for Plain TeX or LaTeX.
longdesc The package manages culturally-determined typographical (and
longdesc other) rules, and hyphenation patterns for a wide range of
@@ -7819,7 +7820,7 @@ srcfiles size=521
texmf-dist/source/generic/babel/usorbian.dtx
texmf-dist/source/generic/babel/welsh.dtx
texmf-dist/source/generic/babel/welsh.ins
-runfiles size=271
+runfiles size=268
texmf-dist/makeindex/babel/bbglo.ist
texmf-dist/makeindex/babel/bbind.ist
texmf-dist/tex/generic/babel/8859-8.def
@@ -7975,9 +7976,6 @@ runfiles size=271
texmf-dist/tex/generic/babel/usorbian.sty
texmf-dist/tex/generic/babel/welsh.ldf
texmf-dist/tex/generic/babel/welsh.sty
- texmf-dist/tex/latex/libertine/babel/README
- texmf-dist/tex/latex/libertine/babel/xlibycus.ldf
- texmf-dist/tex/latex/libertine/babel/xllgienc.def
catalogue-ctan /macros/latex/required/babel
catalogue-date 2008-07-07 17:10:27 +0200
catalogue-license lppl
@@ -9389,10 +9387,11 @@ catalogue-license gpl2
name bin-afm2pl
category TLCore
-revision 9602
+revision 9626
depend bin-afm2pl.ARCH
-docfiles size=4
+docfiles size=9
texmf/doc/man/man1/afm2pl.1
+ texmf/doc/man/man1/afm2pl.pdf
runfiles size=26
texmf/fonts/enc/dvips/afm2pl/ot1.enc
texmf/fonts/enc/dvips/afm2pl/ot1csc.enc
@@ -9657,7 +9656,7 @@ binfiles arch=x86_64-linux size=131
name bin-amstex
category TLCore
-revision 9317
+revision 9626
shortdesc American Mathematical Society plain TeX macros.
longdesc AMSTeX is a TeX macro package, originally written by Michael
longdesc Spivak for the American Mathematical Society (AMS) during
@@ -9669,8 +9668,9 @@ longdesc switched to amslatex, but AMSTeX remains as a working system.
depend bin-tex
depend bin-amstex.ARCH
execute BuildFormat amstex
-docfiles size=1
+docfiles size=3
texmf/doc/man/man1/amstex.1
+ texmf/doc/man/man1/amstex.pdf
runfiles size=1
texmf/fmtutil/format.amstex.cnf
catalogue-ctan /macros/amstex
@@ -9785,7 +9785,7 @@ binfiles arch=x86_64-linux size=1
name bin-bibtex
category TLCore
-revision 9602
+revision 9626
shortdesc Process bibliographies for LaTeX, etc.
longdesc BibTeX allows the user to store his citation data in generic
longdesc form, while printing citations in a document in the form
@@ -9794,8 +9794,9 @@ longdesc itself. BibTeX itself is an ASCII-only program; there is,
longdesc however, a version that copes with 8-bit character sets.
depend bin-kpathsea
depend bin-bibtex.ARCH
-docfiles size=2
+docfiles size=4
texmf/doc/man/man1/bibtex.1
+ texmf/doc/man/man1/bibtex.pdf
catalogue-ctan /biblio/bibtex/distribs
catalogue-date 2008-04-19 22:58:44 +0200
catalogue-license other-free
@@ -10028,9 +10029,9 @@ binfiles arch=x86_64-linux size=43
name bin-cjkutils
category TLCore
-revision 9602
+revision 9626
depend bin-cjkutils.ARCH
-docfiles size=146
+docfiles size=164
texmf/doc/bg5conv/bg5conv.pdf
texmf/doc/bg5conv/man/pdf/bg5conv.pdf
texmf/doc/cef5conv/cef5conv.pdf
@@ -10045,12 +10046,19 @@ docfiles size=146
texmf/doc/hbf2gf/hbf2gf.txt
texmf/doc/hbf2gf/man/pdf/hbf2gf.pdf
texmf/doc/man/man1/bg5conv.1
+ texmf/doc/man/man1/bg5conv.pdf
texmf/doc/man/man1/cef5conv.1
+ texmf/doc/man/man1/cef5conv.pdf
texmf/doc/man/man1/cefconv.1
+ texmf/doc/man/man1/cefconv.pdf
texmf/doc/man/man1/cefsconv.1
+ texmf/doc/man/man1/cefsconv.pdf
texmf/doc/man/man1/extconv.1
+ texmf/doc/man/man1/extconv.pdf
texmf/doc/man/man1/hbf2gf.1
+ texmf/doc/man/man1/hbf2gf.pdf
texmf/doc/man/man1/sjisconv.1
+ texmf/doc/man/man1/sjisconv.pdf
texmf/doc/sjisconv/man/pdf/sjisconv.pdf
texmf/doc/sjisconv/sjisconv.pdf
runfiles size=16
@@ -10476,7 +10484,7 @@ binfiles arch=x86_64-linux size=49
name bin-context
category TLCore
-revision 9602
+revision 9626
shortdesc The ConTeXt macro package.
longdesc A full featured, parameter driven macro package, which fully
longdesc supports advanced interactive documents. See the ConTeXt garden
@@ -10484,18 +10492,29 @@ longdesc for a wealth of support information.
depend pdftex
depend bin-context.ARCH
execute BuildFormat context
-docfiles size=17
+docfiles size=46
texmf/doc/man/man1/ctxtools.1
+ texmf/doc/man/man1/ctxtools.pdf
texmf/doc/man/man1/makempy.1
+ texmf/doc/man/man1/makempy.pdf
texmf/doc/man/man1/mptopdf.1
+ texmf/doc/man/man1/mptopdf.pdf
texmf/doc/man/man1/pdftools.1
+ texmf/doc/man/man1/pdftools.pdf
texmf/doc/man/man1/pstopdf.1
+ texmf/doc/man/man1/pstopdf.pdf
texmf/doc/man/man1/texexec.1
+ texmf/doc/man/man1/texexec.pdf
texmf/doc/man/man1/texfind.1
+ texmf/doc/man/man1/texfind.pdf
texmf/doc/man/man1/texfont.1
+ texmf/doc/man/man1/texfont.pdf
texmf/doc/man/man1/texmfstart.1
+ texmf/doc/man/man1/texmfstart.pdf
texmf/doc/man/man1/textools.1
+ texmf/doc/man/man1/textools.pdf
texmf/doc/man/man1/texutil.1
+ texmf/doc/man/man1/texutil.pdf
runfiles size=2
texmf-dist/tex/mptopdf/config/mptopdf.ini
texmf/fmtutil/format.context.cnf
@@ -11203,11 +11222,12 @@ binfiles arch=x86_64-linux size=2
name bin-ctie
category TLCore
-revision 9602
+revision 9626
depend bin-kpathsea
depend bin-ctie.ARCH
-docfiles size=1
+docfiles size=3
texmf/doc/man/man1/ctie.1
+ texmf/doc/man/man1/ctie.pdf
name bin-ctie.alpha-linux
category TLCore
@@ -11316,16 +11336,19 @@ binfiles arch=x86_64-linux size=18
name bin-cweb
category TLCore
-revision 9602
+revision 9626
shortdesc A Web system in C.
longdesc The Cweb system is a system for Structured Software
longdesc Documentation (also known as Literate Programming) in the
longdesc programming language C.
depend bin-cweb.ARCH
-docfiles size=3
+docfiles size=9
texmf/doc/man/man1/ctangle.1
+ texmf/doc/man/man1/ctangle.pdf
texmf/doc/man/man1/cweave.1
+ texmf/doc/man/man1/cweave.pdf
texmf/doc/man/man1/cweb.1
+ texmf/doc/man/man1/cweb.pdf
catalogue-ctan /web/c_cpp/cweb
catalogue-date 2007-05-17 10:20:12 +0200
catalogue-license knuth
@@ -11453,7 +11476,7 @@ binfiles arch=x86_64-linux size=55
name bin-cyrillic
category TLCore
-revision 9317
+revision 9626
shortdesc Support for Cyrillic fonts in LaTeX.
longdesc This bundle of macros files provides macro support (including
longdesc font encoding macros) for the use of Cyrillic characters in
@@ -11462,9 +11485,11 @@ longdesc cover (between them) pretty much every language that is written
longdesc in a Cyrillic alphabet. This directory is part of the LaTeX
longdesc “required” distribution.
depend bin-cyrillic.ARCH
-docfiles size=2
+docfiles size=6
texmf/doc/man/man1/rubibtex.1
+ texmf/doc/man/man1/rubibtex.pdf
texmf/doc/man/man1/rumakeindex.1
+ texmf/doc/man/man1/rumakeindex.pdf
runfiles size=3
texmf/fmtutil/format.cyramstex.cnf
texmf/fmtutil/format.cyrtex.cnf
@@ -11592,7 +11617,7 @@ binfiles arch=x86_64-linux size=2
name bin-detex
category TLCore
-revision 9602
+revision 9626
shortdesc Strip TeX from a source file.
longdesc Detex is a program to remove TeX constructs from a text file.
longdesc It recognizes the \input command. The program assumes it is
@@ -11600,8 +11625,9 @@ longdesc dealing with LaTeX input if it sees the string \begin{document}
longdesc in the text. In this case, it also recognizes the \include and
longdesc \includeonly commands.
depend bin-detex.ARCH
-docfiles size=1
+docfiles size=3
texmf/doc/man/man1/detex.1
+ texmf/doc/man/man1/detex.pdf
catalogue-ctan /support/detex
catalogue-date 2007-01-25 14:02:53 +0100
catalogue-license unknown
@@ -11823,10 +11849,11 @@ binfiles arch=x86_64-linux size=8
name bin-dialog
category TLCore
-revision 9598
+revision 9626
depend bin-dialog.ARCH
-docfiles size=2
+docfiles size=5
texmf/doc/man/man1/tcdialog.1
+ texmf/doc/man/man1/tcdialog.pdf
name bin-dialog.alpha-linux
category TLCore
@@ -11933,7 +11960,7 @@ binfiles arch=x86_64-linux size=37
name bin-dtl
category TLCore
-revision 9609
+revision 9626
shortdesc Tools to dis-assemble and re-assemble DVI files.
longdesc DTL (DVI Text Language) is a means of expressing the content of
longdesc a DVI file, which is readily readable by humans. The DTL bundle
@@ -11942,9 +11969,11 @@ longdesc files) and a disassembler dv2dt (which produces DTL files from
longdesc DVI files). The DTL bundle was developed so as to avoid some
longdesc infelicities of dvitype (among other pressing reasons).
depend bin-dtl.ARCH
-runfiles size=6
+runfiles size=12
texmf/doc/man/man1/dt2dv.1
+ texmf/doc/man/man1/dt2dv.pdf
texmf/doc/man/man1/dv2dt.1
+ texmf/doc/man/man1/dv2dt.pdf
catalogue-ctan /dviware/dtl
catalogue-date 2007-02-01 21:12:02 +0100
catalogue-license unknown
@@ -12072,13 +12101,14 @@ binfiles arch=x86_64-linux size=13
name bin-dvi2tty
category TLCore
-revision 9598
+revision 9626
shortdesc Produce ASCII from DVI.
longdesc A DVI driver to produce an ASCII representation of the
longdesc document.
depend bin-dvi2tty.ARCH
-runfiles size=2
+runfiles size=5
texmf/doc/man/man1/dvi2tty.1
+ texmf/doc/man/man1/dvi2tty.pdf
catalogue-ctan /dviware/dvi2tty
catalogue-date 2008-07-16 00:08:59 +0200
catalogue-license gpl
@@ -12206,15 +12236,16 @@ binfiles arch=x86_64-linux size=10
name bin-dvicopy
category TLCore
-revision 9602
+revision 9626
shortdesc Copy DVI files, flattening VFs.
longdesc DVICOPY is a utility program that allows one to take a DVI file
longdesc that references composite fonts (VF) and convert it into a DVI
longdesc file that does not contain such references. It also serves as a
longdesc basis for writing DVI drivers (much like DVItype).
depend bin-dvicopy.ARCH
-docfiles size=1
+docfiles size=2
texmf/doc/man/man1/dvicopy.1
+ texmf/doc/man/man1/dvicopy.pdf
catalogue-ctan /dviware/dvicopy/dvicopy.web
catalogue-date 2007-01-25 14:02:53 +0100
catalogue-license gpl
@@ -12327,14 +12358,15 @@ binfiles arch=x86_64-linux size=27
name bin-dvidvi
category TLCore
-revision 9598
+revision 9626
shortdesc Convert one DVI file into another.
longdesc The output DVI file's contents are specified by page selection
longdesc commands; series of pages and page number ranges may be
longdesc specified, as well as inclusions and exclusions.
depend bin-dvidvi.ARCH
-runfiles size=2
+runfiles size=4
texmf/doc/man/man1/dvidvi.1
+ texmf/doc/man/man1/dvidvi.pdf
catalogue-ctan /dviware/dvidvi
catalogue-date 2007-02-05 00:22:10 +0100
catalogue-license unknown
@@ -12449,7 +12481,7 @@ binfiles arch=x86_64-linux size=5
name bin-dviljk
category TLCore
-revision 9602
+revision 9626
shortdesc DVI to Laserjet output.
longdesc A dvi driver for the LaserJet printers, using kpathsea
longdesc recursive file searching. Note: this program will not compile
@@ -12457,13 +12489,19 @@ longdesc simply with the sources in this distribution; it needs a full
longdesc (current) kpathsea distribution environment, such as is
longdesc available from the TeX-Live source tree.
depend bin-dviljk.ARCH
-docfiles size=8
+docfiles size=30
texmf/doc/man/man1/dvihp.1
+ texmf/doc/man/man1/dvihp.pdf
texmf/doc/man/man1/dvilj.1
+ texmf/doc/man/man1/dvilj.pdf
texmf/doc/man/man1/dvilj2p.1
+ texmf/doc/man/man1/dvilj2p.pdf
texmf/doc/man/man1/dvilj4.1
+ texmf/doc/man/man1/dvilj4.pdf
texmf/doc/man/man1/dvilj4l.1
+ texmf/doc/man/man1/dvilj4l.pdf
texmf/doc/man/man1/dvilj6.1
+ texmf/doc/man/man1/dvilj6.pdf
catalogue-ctan /dviware/dviljk
catalogue-date 2007-07-05 17:08:10 +0200
catalogue-license gpl
@@ -12651,12 +12689,12 @@ binfiles arch=x86_64-linux size=111
name bin-dvipdfm
category TLCore
-revision 9602
+revision 9626
shortdesc A DVI driver to produce PDF directly.
longdesc The driver offers a wide range of \special commands (including
longdesc a colour stack), and supports compression of data streams, etc.
depend bin-dvipdfm.ARCH
-docfiles size=74
+docfiles size=80
texmf/doc/dvipdfm/Makefile
texmf/doc/dvipdfm/dvipdfm.pdf details="Program documentation"
texmf/doc/dvipdfm/dvipdfm.tex
@@ -12672,8 +12710,11 @@ docfiles size=74
texmf/doc/dvipdfm/transistor.fig
texmf/doc/dvipdfm/transistor.pdf
texmf/doc/man/man1/dvipdfm.1
+ texmf/doc/man/man1/dvipdfm.pdf details="Program documentation"
texmf/doc/man/man1/dvipdft.1
+ texmf/doc/man/man1/dvipdft.pdf
texmf/doc/man/man1/ebb.1
+ texmf/doc/man/man1/ebb.pdf
runfiles size=164
texmf/dvipdfm/config/config
texmf/dvipdfm/config/config-win32
@@ -12968,7 +13009,7 @@ binfiles arch=x86_64-linux size=193
name bin-dvipng
category TLCore
-revision 9602
+revision 9626
shortdesc A fast DVI to PNG/GIF converter.
longdesc This program makes PNG and/or GIF graphics from DVI files as
longdesc obtained from TeX and its relatives. Its benefits include: –
@@ -12985,10 +13026,11 @@ longdesc input file through this interface. – Support for PK, VF,
longdesc PostScript Type1, and TrueType fonts, colour specials, and
longdesc inclusion of PostScript, PNG, JPEG or GIF images.
depend bin-dvipng.ARCH
-docfiles size=35
+docfiles size=41
texmf/doc/dvipng/dvipng.html
texmf/doc/info/dvipng.info
texmf/doc/man/man1/dvipng.1
+ texmf/doc/man/man1/dvipng.pdf
catalogue-ctan /dviware/dvipng
catalogue-date 2008-05-20 16:20:36 +0200
catalogue-license lgpl
@@ -13114,10 +13156,11 @@ binfiles arch=x86_64-linux size=247
name bin-dvipos
category TLCore
-revision 9602
+revision 9626
depend bin-dvipos.ARCH
-docfiles size=1
+docfiles size=3
texmf/doc/man/man1/dvipos.1
+ texmf/doc/man/man1/dvipos.pdf
name bin-dvipos.alpha-linux
category TLCore
@@ -13226,7 +13269,7 @@ binfiles arch=x86_64-linux size=24
name bin-dvipsk
category TLCore
-revision 9602
+revision 9626
shortdesc Convert DVI to PostScript.
longdesc When dvips is run on a Unix-like system, to produce PostScript
longdesc output from a DVI file, dvipsk is the incarnation run. The
@@ -13234,12 +13277,14 @@ longdesc current version of the package is no longer maintained on CTAN
longdesc as a separate entity; see the TeX-live sources for the current
longdesc release.
depend bin-dvipsk.ARCH
-docfiles size=239
+docfiles size=246
texmf/doc/dvips/dvips.html
texmf/doc/dvips/dvips.pdf
texmf/doc/info/dvips.info
texmf/doc/man/man1/afm2tfm.1
+ texmf/doc/man/man1/afm2tfm.pdf
texmf/doc/man/man1/dvips.1
+ texmf/doc/man/man1/dvips.pdf
texmf/doc/pkfix/README
runfiles size=583
texmf/dvips/base/color.pro
@@ -13536,7 +13581,7 @@ binfiles arch=x86_64-linux size=1
name bin-eplain
category TLCore
-revision 9317
+revision 9626
shortdesc Extended plain tex macros.
longdesc A powerfully extended version of the plain format, adding
longdesc support for bibliographies, tables of contents, enumerated
@@ -13549,9 +13594,10 @@ longdesc psfrag, and url.
depend pdftex
depend bin-eplain.ARCH
execute BuildFormat eplain
-docfiles size=93
+docfiles size=95
texmf/doc/info/eplain.info
texmf/doc/man/man1/eplain.1
+ texmf/doc/man/man1/eplain.pdf
runfiles size=1
texmf/fmtutil/format.eplain.cnf
catalogue-ctan /macros/eplain
@@ -13666,13 +13712,17 @@ binfiles arch=x86_64-linux size=1
name bin-fontware
category TLCore
-revision 9602
+revision 9626
depend bin-fontware.ARCH
-docfiles size=4
+docfiles size=12
texmf/doc/man/man1/pltotf.1
+ texmf/doc/man/man1/pltotf.pdf
texmf/doc/man/man1/tftopl.1
+ texmf/doc/man/man1/tftopl.pdf
texmf/doc/man/man1/vftovp.1
+ texmf/doc/man/man1/vftovp.pdf
texmf/doc/man/man1/vptovf.1
+ texmf/doc/man/man1/vptovf.pdf
name bin-fontware.alpha-linux
category TLCore
@@ -13826,10 +13876,11 @@ binfiles arch=x86_64-linux size=78
name bin-getafm
category TLCore
-revision 9317
+revision 9626
depend bin-getafm.ARCH
-docfiles size=1
+docfiles size=2
texmf/doc/man/man1/getafm.1
+ texmf/doc/man/man1/getafm.pdf
runfiles size=2
texmf/dvips/getafm/getafm.ps
@@ -13952,11 +14003,13 @@ binfiles arch=x86_64-linux size=3
name bin-getnonfreefonts
category TLCore
-revision 9317
+revision 9626
depend bin-getnonfreefonts.ARCH
-docfiles size=2
+docfiles size=6
texmf/doc/man/man1/getnonfreefonts-sys.1
+ texmf/doc/man/man1/getnonfreefonts-sys.pdf
texmf/doc/man/man1/getnonfreefonts.1
+ texmf/doc/man/man1/getnonfreefonts.pdf
runfiles size=2
texmf/scripts/texlive/getnonfreefonts.pl
@@ -14082,7 +14135,7 @@ binfiles arch=x86_64-linux size=2
name bin-gsftopk
category TLCore
-revision 9602
+revision 9626
shortdesc Convert "ghostscript fonts" to PK files.
longdesc Designed for use with xdvi and dvips this utility converts
longdesc Adobe Type 1 fonts to PK bitmap format. It should not
@@ -14090,8 +14143,9 @@ longdesc ordinarily be much used nowadays, since both its target
longdesc applications are now capable of dealing with Type 1 fonts,
longdesc direct.
depend bin-gsftopk.ARCH
-docfiles size=2
+docfiles size=5
texmf/doc/man/man1/gsftopk.1
+ texmf/doc/man/man1/gsftopk.pdf
runfiles size=2
texmf/dvips/gsftopk/render.ps
catalogue-ctan /fonts/utilities/gsftopk
@@ -14343,14 +14397,14 @@ binfiles arch=x86_64-linux size=2
name bin-kpathsea
category TLCore
-revision 9614
+revision 9626
shortdesc Path searching library for TeX-related files.
longdesc The library is at the centre of pretty much all Unix-based TeX
longdesc executable. It is no longer distributed separately, but rather
longdesc consititutes a central part of the sources of the TeX-live
longdesc distribution.
depend bin-kpathsea.ARCH
-docfiles size=610
+docfiles size=634
texmf/doc/info/dir
texmf/doc/info/kpathsea.info
texmf/doc/info/tds.info
@@ -14358,21 +14412,37 @@ docfiles size=610
texmf/doc/kpathsea/kpathsea.html
texmf/doc/kpathsea/kpathsea.pdf
texmf/doc/man/man1/kpseaccess.1
+ texmf/doc/man/man1/kpseaccess.pdf
texmf/doc/man/man1/kpsepath.1
+ texmf/doc/man/man1/kpsepath.pdf
texmf/doc/man/man1/kpsereadlink.1
+ texmf/doc/man/man1/kpsereadlink.pdf
texmf/doc/man/man1/kpsestat.1
+ texmf/doc/man/man1/kpsestat.pdf
texmf/doc/man/man1/kpsetool.1
+ texmf/doc/man/man1/kpsetool.pdf
texmf/doc/man/man1/kpsewhere.1
+ texmf/doc/man/man1/kpsewhere.pdf
texmf/doc/man/man1/kpsewhich.1
+ texmf/doc/man/man1/kpsewhich.pdf
texmf/doc/man/man1/kpsexpand.1
+ texmf/doc/man/man1/kpsexpand.pdf
texmf/doc/man/man1/mkocp.1
+ texmf/doc/man/man1/mkocp.pdf
texmf/doc/man/man1/mkofm.1
+ texmf/doc/man/man1/mkofm.pdf
texmf/doc/man/man1/mktexfmt.1
+ texmf/doc/man/man1/mktexfmt.pdf
texmf/doc/man/man1/mktexlsr.1
+ texmf/doc/man/man1/mktexlsr.pdf
texmf/doc/man/man1/mktexmf.1
+ texmf/doc/man/man1/mktexmf.pdf
texmf/doc/man/man1/mktexpk.1
+ texmf/doc/man/man1/mktexpk.pdf
texmf/doc/man/man1/mktextfm.1
+ texmf/doc/man/man1/mktextfm.pdf
texmf/doc/man/man1/texhash.1
+ texmf/doc/man/man1/texhash.pdf
texmf/doc/web2c/web2c.html
texmf/doc/web2c/web2c.pdf
runfiles size=52
@@ -14730,14 +14800,15 @@ binfiles arch=x86_64-linux size=39
name bin-lacheck
category TLCore
-revision 9598
+revision 9626
shortdesc LaTeX checker.
longdesc Lacheck is a tool for finding common mistakes in LaTeX
longdesc documents. The distribution includes sources, and executables
longdesc for OS/2 and Win32 environments.
depend bin-lacheck.ARCH
-runfiles size=1
+runfiles size=3
texmf/doc/man/man1/lacheck.1
+ texmf/doc/man/man1/lacheck.pdf
catalogue-ctan /support/lacheck
catalogue-date 2007-12-24 23:47:51 +0100
catalogue-license unknown
@@ -14850,7 +14921,7 @@ binfiles arch=x86_64-linux size=14
name bin-latex
category TLCore
-revision 9602
+revision 9626
shortdesc A TeX macro package that defines LaTeX.
longdesc LaTeX is a widely-used macro package for TeX, providing many
longdesc basic document formating commands extended by a wide range of
@@ -14871,9 +14942,11 @@ depend luatex
depend pdftex
depend bin-latex.ARCH
execute BuildFormat latex
-docfiles size=2
+docfiles size=9
texmf/doc/man/man1/latex.1
+ texmf/doc/man/man1/latex.pdf
texmf/doc/man/man1/pdflatex.1
+ texmf/doc/man/man1/pdflatex.pdf
runfiles size=4
texmf/fmtutil/format.latex.cnf
texmf/tex/latex/config/color.cfg
@@ -15023,20 +15096,30 @@ binfiles arch=x86_64-linux size=2
name bin-lcdftypetools
category TLCore
-revision 9602
+revision 9626
depend glyphlist
depend bin-lcdftypetools.ARCH
-docfiles size=24
+docfiles size=56
texmf/doc/man/man1/cfftot1.1
+ texmf/doc/man/man1/cfftot1.pdf
texmf/doc/man/man1/mmafm.1
+ texmf/doc/man/man1/mmafm.pdf
texmf/doc/man/man1/mmpfb.1
+ texmf/doc/man/man1/mmpfb.pdf
texmf/doc/man/man1/otfinfo.1
+ texmf/doc/man/man1/otfinfo.pdf
texmf/doc/man/man1/otftotfm.1
+ texmf/doc/man/man1/otftotfm.pdf
texmf/doc/man/man1/t1dotlessj.1
+ texmf/doc/man/man1/t1dotlessj.pdf
texmf/doc/man/man1/t1lint.1
+ texmf/doc/man/man1/t1lint.pdf
texmf/doc/man/man1/t1reencode.1
+ texmf/doc/man/man1/t1reencode.pdf
texmf/doc/man/man1/t1testpage.1
+ texmf/doc/man/man1/t1testpage.pdf
texmf/doc/man/man1/ttftotype42.1
+ texmf/doc/man/man1/ttftotype42.pdf
name bin-lcdftypetools.alpha-linux
category TLCore
@@ -15280,7 +15363,7 @@ binfiles arch=x86_64-linux size=818
name bin-makeindex
category TLCore
-revision 9602
+revision 9626
shortdesc Process index output to produce typesettable code.
longdesc A general purpose hierarchical index generator; it accepts one
longdesc or more input files (often produced by a text formatter such as
@@ -15289,9 +15372,11 @@ longdesc which can be formatted. The formats of the input and output
longdesc files are specified in a style file; by default, input is
longdesc assumed to be an idx file, as generated by LaTeX.
depend bin-makeindex.ARCH
-docfiles size=9
+docfiles size=20
texmf/doc/man/man1/makeindex.1
+ texmf/doc/man/man1/makeindex.pdf
texmf/doc/man/man1/mkindex.1
+ texmf/doc/man/man1/mkindex.pdf
catalogue-ctan /indexing/makeindex
catalogue-date 2008-04-20 19:53:04 +0200
catalogue-license other-free
@@ -15418,13 +15503,15 @@ binfiles arch=x86_64-linux size=34
name bin-metafont
category TLCore
-revision 9602
+revision 9626
depend bin-kpathsea
depend bin-metafont.ARCH
execute BuildFormat metafont
-docfiles size=5
+docfiles size=15
texmf/doc/man/man1/mf-nowin.1
+ texmf/doc/man/man1/mf-nowin.pdf
texmf/doc/man/man1/mf.1
+ texmf/doc/man/man1/mf.pdf
runfiles size=1
texmf/fmtutil/format.metafont.cnf
@@ -15550,20 +15637,26 @@ binfiles arch=x86_64-linux size=155
name bin-metapost
category TLCore
-revision 9602
+revision 9626
shortdesc A development of MetaFont that generates PostScript output.
longdesc A tool based on MetaFont for producing precise technical
longdesc illustrations, creating scalable PostScript instead of bitmaps.
depend bin-kpathsea
depend bin-metapost.ARCH
execute BuildFormat metapost
-docfiles size=9
+docfiles size=21
texmf/doc/man/man1/dmp.1
+ texmf/doc/man/man1/dmp.pdf
texmf/doc/man/man1/dvitomp.1
+ texmf/doc/man/man1/dvitomp.pdf
texmf/doc/man/man1/makempx.1
+ texmf/doc/man/man1/makempx.pdf
texmf/doc/man/man1/mpost.1
+ texmf/doc/man/man1/mpost.pdf
texmf/doc/man/man1/mpto.1
+ texmf/doc/man/man1/mpto.pdf
texmf/doc/man/man1/newer.1
+ texmf/doc/man/man1/newer.pdf
runfiles size=1
texmf/fmtutil/format.metapost.cnf
catalogue-ctan /graphics/metapost/base
@@ -15912,17 +16005,23 @@ binfiles arch=x86_64-linux size=3
name bin-mfware
category TLCore
-revision 9602
+revision 9626
shortdesc Supporting tools for use with MetaFont.
longdesc A collection of programs for processing the output of MetaFont.
depend bin-mfware.ARCH
-docfiles size=7
+docfiles size=19
texmf/doc/man/man1/gftodvi.1
+ texmf/doc/man/man1/gftodvi.pdf
texmf/doc/man/man1/gftopk.1
+ texmf/doc/man/man1/gftopk.pdf
texmf/doc/man/man1/gftype.1
+ texmf/doc/man/man1/gftype.pdf
texmf/doc/man/man1/mft.1
+ texmf/doc/man/man1/mft.pdf
texmf/doc/man/man1/pktogf.1
+ texmf/doc/man/man1/pktogf.pdf
texmf/doc/man/man1/pktype.1
+ texmf/doc/man/man1/pktype.pdf
catalogue-ctan /systems/knuth/dist/mfware
catalogue-date 2008-03-24 23:07:52 +0100
catalogue-license knuth
@@ -16364,7 +16463,7 @@ binfiles arch=x86_64-linux size=5
name bin-omega
category TLCore
-revision 9602
+revision 9626
shortdesc A wide-character-set extension of TeX.
longdesc A development of TeX, which deals in multi-octet Unicode
longdesc characters, to enable native treatment of a wide range of
@@ -16374,9 +16473,11 @@ longdesc the aleph project (though that too has stalled). Projects
longdesc developing Omega (and Aleph) ideas include Omega-2 and LuaTeX.
depend bin-omega.ARCH
execute BuildFormat omega
-docfiles size=3
+docfiles size=9
texmf/doc/man/man1/lambda.1
+ texmf/doc/man/man1/lambda.pdf
texmf/doc/man/man1/omega.1
+ texmf/doc/man/man1/omega.pdf
runfiles size=1
texmf/fmtutil/format.omega.cnf
catalogue-ctan /systems/omega
@@ -16506,18 +16607,27 @@ binfiles arch=x86_64-linux size=132
name bin-omegaware
category TLCore
-revision 9602
+revision 9626
depend bin-omegaware.ARCH
-docfiles size=9
+docfiles size=30
texmf/doc/man/man1/odvicopy.1
+ texmf/doc/man/man1/odvicopy.pdf
texmf/doc/man/man1/odvips.1
+ texmf/doc/man/man1/odvips.pdf
texmf/doc/man/man1/odvitype.1
+ texmf/doc/man/man1/odvitype.pdf
texmf/doc/man/man1/ofm2opl.1
+ texmf/doc/man/man1/ofm2opl.pdf
texmf/doc/man/man1/opl2ofm.1
+ texmf/doc/man/man1/opl2ofm.pdf
texmf/doc/man/man1/otp2ocp.1
+ texmf/doc/man/man1/otp2ocp.pdf
texmf/doc/man/man1/outocp.1
+ texmf/doc/man/man1/outocp.pdf
texmf/doc/man/man1/ovf2ovp.1
+ texmf/doc/man/man1/ovf2ovp.pdf
texmf/doc/man/man1/ovp2ovf.1
+ texmf/doc/man/man1/ovp2ovf.pdf
name bin-omegaware.alpha-linux
category TLCore
@@ -16776,11 +16886,12 @@ binfiles arch=x86_64-linux size=149
name bin-patgen
category TLCore
-revision 9602
+revision 9626
depend bin-kpathsea
depend bin-patgen.ARCH
-docfiles size=2
+docfiles size=5
texmf/doc/man/man1/patgen.1
+ texmf/doc/man/man1/patgen.pdf
name bin-patgen.alpha-linux
category TLCore
@@ -16889,12 +17000,15 @@ binfiles arch=x86_64-linux size=9
name bin-pdftools
category TLCore
-revision 9623
+revision 9626
depend bin-pdftools.ARCH
-docfiles size=4
+docfiles size=11
texmf/doc/man/man1/e2pall.1
+ texmf/doc/man/man1/e2pall.pdf
texmf/doc/man/man1/epstopdf.1
+ texmf/doc/man/man1/epstopdf.pdf
texmf/doc/man/man1/pdftosrc.1
+ texmf/doc/man/man1/pdftosrc.pdf
runfiles size=4
texmf/scripts/epstopdf/epstopdf.pl
texmf/scripts/tetex/e2pall.pl
@@ -17403,13 +17517,17 @@ shortdesc binary files of bin-pngtools for x86_64-linux
name bin-ps2pkm
category TLCore
-revision 9602
+revision 9626
depend bin-ps2pkm.ARCH
-runfiles size=5
+runfiles size=12
texmf/doc/man/man1/mag.1
+ texmf/doc/man/man1/mag.pdf
texmf/doc/man/man1/pfb2pfa.1
+ texmf/doc/man/man1/pfb2pfa.pdf
texmf/doc/man/man1/pk2bm.1
+ texmf/doc/man/man1/pk2bm.pdf
texmf/doc/man/man1/ps2pk.1
+ texmf/doc/man/man1/ps2pk.pdf
name bin-ps2pkm.alpha-linux
category TLCore
@@ -17563,11 +17681,13 @@ binfiles arch=x86_64-linux size=54
name bin-pstools
category TLCore
-revision 9598
+revision 9626
depend bin-pstools.ARCH
-docfiles size=2
+docfiles size=6
texmf/doc/man/man1/ps2frag.1
+ texmf/doc/man/man1/ps2frag.pdf
texmf/doc/man/man1/pslatex.1
+ texmf/doc/man/man1/pslatex.pdf
runfiles size=9
texmf/scripts/ps2eps/ps2eps.pl
@@ -17721,7 +17841,7 @@ binfiles arch=x86_64-linux size=6
name bin-psutils
category TLCore
-revision 9598
+revision 9626
shortdesc PostScript utilities.
longdesc A bundle of utilities for manipulating PostScript documents,
longdesc including page selection and rearrangement, resizing the page,
@@ -17729,26 +17849,45 @@ longdesc arrangement into signatures for booklet printing, and page
longdesc merging for n-up printing. Utilities include psbook, psselect,
longdesc pstops, psnup, psresize, epsffit.
depend bin-psutils.ARCH
-docfiles size=20
+docfiles size=47
texmf/doc/man/man1/epsffit.1
+ texmf/doc/man/man1/epsffit.pdf
texmf/doc/man/man1/extractres.1
+ texmf/doc/man/man1/extractres.pdf
texmf/doc/man/man1/fixdlsrps.1
+ texmf/doc/man/man1/fixdlsrps.pdf
texmf/doc/man/man1/fixfmps.1
+ texmf/doc/man/man1/fixfmps.pdf
texmf/doc/man/man1/fixmacps.1
+ texmf/doc/man/man1/fixmacps.pdf
texmf/doc/man/man1/fixpsditps.1
+ texmf/doc/man/man1/fixpsditps.pdf
texmf/doc/man/man1/fixpspps.1
+ texmf/doc/man/man1/fixpspps.pdf
texmf/doc/man/man1/fixscribeps.1
+ texmf/doc/man/man1/fixscribeps.pdf
texmf/doc/man/man1/fixtpps.1
+ texmf/doc/man/man1/fixtpps.pdf
texmf/doc/man/man1/fixwfwps.1
+ texmf/doc/man/man1/fixwfwps.pdf
texmf/doc/man/man1/fixwpps.1
+ texmf/doc/man/man1/fixwpps.pdf
texmf/doc/man/man1/fixwwps.1
+ texmf/doc/man/man1/fixwwps.pdf
texmf/doc/man/man1/includeres.1
+ texmf/doc/man/man1/includeres.pdf
texmf/doc/man/man1/psbook.1
+ texmf/doc/man/man1/psbook.pdf
texmf/doc/man/man1/psmerge.1
+ texmf/doc/man/man1/psmerge.pdf
texmf/doc/man/man1/psnup.1
+ texmf/doc/man/man1/psnup.pdf
texmf/doc/man/man1/psresize.1
+ texmf/doc/man/man1/psresize.pdf
texmf/doc/man/man1/psselect.1
+ texmf/doc/man/man1/psselect.pdf
texmf/doc/man/man1/pstops.1
+ texmf/doc/man/man1/pstops.pdf
runfiles size=17
texmf/dvips/psutils/md68_0.ps
texmf/dvips/psutils/md71_0.ps
@@ -18133,13 +18272,17 @@ binfiles arch=x86_64-linux size=41
name bin-seetexk
category TLCore
-revision 9598
+revision 9626
depend bin-seetexk.ARCH
-runfiles size=5
+runfiles size=14
texmf/doc/man/man1/dvibook.1
+ texmf/doc/man/man1/dvibook.pdf
texmf/doc/man/man1/dviconcat.1
+ texmf/doc/man/man1/dviconcat.pdf
texmf/doc/man/man1/dviselect.1
+ texmf/doc/man/man1/dviselect.pdf
texmf/doc/man/man1/dvitodvi.1
+ texmf/doc/man/man1/dvitodvi.pdf
name bin-seetexk.alpha-linux
category TLCore
@@ -18293,7 +18436,7 @@ binfiles arch=x86_64-linux size=28
name bin-t1utils
category TLCore
-revision 9598
+revision 9626
shortdesc Simple Type 1 font manipulation programs.
longdesc A collection of simple programs for manipulating Adobe Type 1
longdesc fonts, comprising: – t1ascii: convert PFB (binary) to PFA
@@ -18304,13 +18447,19 @@ longdesc a font; – t1unmac: extract font resources from a Macintosh
longdesc font file; and – t1mac: generate a Macintosh font from a Type
longdesc 1 font.
depend bin-t1utils.ARCH
-docfiles size=6
+docfiles size=17
texmf/doc/man/man1/t1ascii.1
+ texmf/doc/man/man1/t1ascii.pdf
texmf/doc/man/man1/t1asm.1
+ texmf/doc/man/man1/t1asm.pdf
texmf/doc/man/man1/t1binary.1
+ texmf/doc/man/man1/t1binary.pdf
texmf/doc/man/man1/t1disasm.1
+ texmf/doc/man/man1/t1disasm.pdf
texmf/doc/man/man1/t1mac.1
+ texmf/doc/man/man1/t1mac.pdf
texmf/doc/man/man1/t1unmac.1
+ texmf/doc/man/man1/t1unmac.pdf
catalogue-ctan /fonts/utilities/t1utils
catalogue-date 2007-12-02 23:10:31 +0100
catalogue-license pd
@@ -18498,7 +18647,7 @@ binfiles arch=x86_64-linux size=51
name bin-tetex
category TLCore
-revision 9602
+revision 9626
shortdesc The TeX distribution for Unix/Linux.
longdesc teTeX was a comprehensive distribution of TeX, LaTeX and
longdesc family, particularly designed to be very easy to install and to
@@ -18508,20 +18657,33 @@ longdesc the appearance of TeX-live 2007 (whose Unix-system TeX support
longdesc originally derived from teTeX), no-one should be using teTeX at
longdesc all, in new applications.
depend bin-tetex.ARCH
-docfiles size=103
+docfiles size=127
texmf/doc/man/man1/allcm.1
+ texmf/doc/man/man1/allcm.pdf
texmf/doc/man/man1/allec.1
+ texmf/doc/man/man1/allec.pdf
texmf/doc/man/man1/allneeded.1
+ texmf/doc/man/man1/allneeded.pdf
texmf/doc/man/man1/dvi2fax.1
+ texmf/doc/man/man1/dvi2fax.pdf
texmf/doc/man/man1/dvired.1
+ texmf/doc/man/man1/dvired.pdf
texmf/doc/man/man1/fmtutil-sys.1
+ texmf/doc/man/man1/fmtutil-sys.pdf
texmf/doc/man/man1/fmtutil.1
+ texmf/doc/man/man1/fmtutil.pdf
texmf/doc/man/man1/fontinst.1
+ texmf/doc/man/man1/fontinst.pdf
texmf/doc/man/man1/texlinks.1
+ texmf/doc/man/man1/texlinks.pdf
texmf/doc/man/man1/updmap-sys.1
+ texmf/doc/man/man1/updmap-sys.pdf
texmf/doc/man/man1/updmap.1
+ texmf/doc/man/man1/updmap.pdf
texmf/doc/man/man5/fmtutil.cnf.5
+ texmf/doc/man/man5/fmtutil.cnf.pdf
texmf/doc/man/man5/updmap.cfg.5
+ texmf/doc/man/man5/updmap.cfg.pdf
texmf/doc/tetex/TETEXDOC.pdf
texmf/doc/tetex/teTeX-FAQ
runfiles size=50
@@ -18869,12 +19031,13 @@ binfiles arch=x86_64-linux size=38
name bin-tex
category TLCore
-revision 9602
+revision 9626
depend bin-kpathsea
depend bin-tex.ARCH
execute BuildFormat tex
-docfiles size=4
+docfiles size=9
texmf/doc/man/man1/tex.1
+ texmf/doc/man/man1/tex.pdf
runfiles size=1
texmf/fmtutil/format.tex.cnf
@@ -18986,11 +19149,13 @@ binfiles arch=x86_64-linux size=86
name bin-texconfig
category TLCore
-revision 9380
+revision 9626
depend bin-texconfig.ARCH
-docfiles size=2
+docfiles size=4
texmf/doc/man/man1/texconfig-sys.1
+ texmf/doc/man/man1/texconfig-sys.pdf
texmf/doc/man/man1/texconfig.1
+ texmf/doc/man/man1/texconfig.pdf
runfiles size=9
texmf/texconfig/README
texmf/texconfig/g/generic
@@ -19105,7 +19270,7 @@ binfiles arch=x86_64-linux size=11
name bin-texdoc
category TLCore
-revision 9594
+revision 9626
shortdesc Documentation access for TeX distributions.
longdesc TeXdoc is a script for easy access to the package documentation
longdesc of a TeX distributions (i.e., .dvi, .pdf or .ps files on the
@@ -19113,9 +19278,11 @@ longdesc $TEXDOCS tree). It is distributed with TeX-Live and a
longdesc derivative is distributed with miktex.
depend bin-kpathsea
depend bin-texdoc.ARCH
-docfiles size=5
+docfiles size=11
texmf/doc/man/man1/texdoc.1
+ texmf/doc/man/man1/texdoc.pdf
texmf/doc/man/man1/texdoctk.1
+ texmf/doc/man/man1/texdoctk.pdf
runfiles size=34
texmf/scripts/tetex/texdoctk.pl
texmf/scripts/texlive/texdoc.tlu
@@ -19250,7 +19417,7 @@ binfiles arch=x86_64-linux size=2
name bin-texlive
category TLCore
-revision 9611
+revision 9626
shortdesc A CD-ROM/DVD distribution of TeX and friends.
longdesc A comprehensive TeX system that you can run directly from a
longdesc distributed disc, or you can install on your hard disk. It
@@ -19261,8 +19428,9 @@ longdesc different running formats each. Beware: the download is large
longdesc (>900Mbytes); it comes in the form of a ISO image for a DVD.
depend texlive.infra
depend bin-texlive.ARCH
-docfiles size=3
+docfiles size=6
texmf/doc/man/man1/tlmgr.1
+ texmf/doc/man/man1/tlmgr.pdf
runfiles size=44
texmf/fmtutil/fmtutil-hdr.cnf
texmf/scripts/texlive/lua/texlive/getopt.tlu
@@ -19546,7 +19714,7 @@ binfiles arch=x86_64-linux size=1
name bin-texware
category TLCore
-revision 9602
+revision 9626
shortdesc Utility programs for use with TeX.
longdesc Basic utitility programs, comprising: – dvitype, which
longdesc converts a TeX output (DVI) file to a plain text file (see also
@@ -19556,9 +19724,11 @@ longdesc readable form; and – tftopl and pltotf, which convert TeX
longdesc Font Metric (TFM) file to human readable Property List (PL)
longdesc files.
depend bin-texware.ARCH
-docfiles size=2
+docfiles size=5
texmf/doc/man/man1/dvitype.1
+ texmf/doc/man/man1/dvitype.pdf
texmf/doc/man/man1/pooltype.1
+ texmf/doc/man/man1/pooltype.pdf
catalogue-ctan /systems/knuth/dist/texware
catalogue-date 2008-03-28 10:20:40 +0100
catalogue-license knuth
@@ -19685,7 +19855,7 @@ binfiles arch=x86_64-linux size=30
name bin-tie
category TLCore
-revision 9602
+revision 9626
shortdesc Allow multiple web change files.
longdesc Tie was originally developed to allow web programmers to apply
longdesc more than one change file to their source. The program may also
@@ -19693,8 +19863,9 @@ longdesc be used to create a new version of a web file that incorporates
longdesc existing changes.
depend bin-kpathsea
depend bin-tie.ARCH
-docfiles size=1
+docfiles size=3
texmf/doc/man/man1/tie.1
+ texmf/doc/man/man1/tie.pdf
catalogue-ctan /web/tie
catalogue-date 2007-12-15 00:17:22 +0100
catalogue-license unknown
@@ -21774,13 +21945,17 @@ binfiles arch=x86_64-linux size=3
name bin-ttfutils
category TLCore
-revision 9602
+revision 9626
depend bin-ttfutils.ARCH
-docfiles size=29
+docfiles size=45
texmf/doc/man/man1/ttf2afm.1
+ texmf/doc/man/man1/ttf2afm.pdf
texmf/doc/man/man1/ttf2pk.1
+ texmf/doc/man/man1/ttf2pk.pdf
texmf/doc/man/man1/ttf2tfm.1
+ texmf/doc/man/man1/ttf2tfm.pdf
texmf/doc/man/man1/ttfdump.1
+ texmf/doc/man/man1/ttfdump.pdf
texmf/doc/ttf2pk/ttf2pk.doc
texmf/doc/ttf2pk/ttf2pk.txt
texmf/doc/ttf2pk/ttf2tfm.txt
@@ -22044,7 +22219,7 @@ shortdesc binary files of bin-vlna for x86_64-linux
name bin-web
category TLCore
-revision 9602
+revision 9626
shortdesc Establishes a page layout for an on-screen (PDF) document.
longdesc The web package (for LaTeX) is a set of macros that establishes
longdesc a page layout for a (PDF) document that is meant to be read on-
@@ -22055,9 +22230,11 @@ longdesc dvips, dvipdfm, dvipsone and dviwindo. The package is part of
longdesc the AcroTeX bundle.
depend bin-kpathsea
depend bin-web.ARCH
-docfiles size=3
+docfiles size=7
texmf/doc/man/man1/tangle.1
+ texmf/doc/man/man1/tangle.pdf
texmf/doc/man/man1/weave.1
+ texmf/doc/man/man1/weave.pdf
catalogue-ctan /macros/latex/contrib/acrotex
catalogue-date 2007-05-18 10:40:08 +0200
catalogue-license lppl
@@ -22220,7 +22397,7 @@ binfiles arch=win32 size=1339
name bin-xdvi
category TLCore
-revision 9609
+revision 9626
shortdesc A DVI previewer for the X Window System.
longdesc The canonical previewer for use on Unix and other X-windows
longdesc based systems. The distribution has been integrated with that
@@ -22228,11 +22405,15 @@ longdesc of xdvik (no longer separately available), so that it will
longdesc build with web2c “out of the box”. In practice, it is
longdesc usually distributed via Tex-live.
depend bin-xdvi.ARCH
-docfiles size=35
+docfiles size=104
texmf/doc/man/man1/oxdvi.1
+ texmf/doc/man/man1/oxdvi.pdf
texmf/doc/man/man1/t1mapper.1
+ texmf/doc/man/man1/t1mapper.pdf
texmf/doc/man/man1/xdvi.1
+ texmf/doc/man/man1/xdvi.pdf
texmf/doc/man/man1/xdvizilla.1
+ texmf/doc/man/man1/xdvizilla.pdf
runfiles size=9
texmf/xdvi/XDvi
texmf/xdvi/pixmaps/toolbar.xpm
@@ -23933,7 +24114,7 @@ docfiles size=149
texmf-dist/doc/fonts/cbfonts/cbgreek.pdf
texmf-dist/doc/fonts/cbfonts/cbgreek.tex
texmf-dist/doc/fonts/cbfonts/grmn1000table.pdf
-runfiles size=20524
+runfiles size=20525
texmf-dist/fonts/enc/dvips/cbfonts/CB.enc
texmf-dist/fonts/enc/dvips/cbfonts/gmtr.enc
texmf-dist/fonts/map/dvips/cbfonts/cbgreek-full.map
@@ -52500,7 +52681,7 @@ catalogue-license fdl
name impatient-fr
category Documentation
revision 8338
-docfiles size=625
+docfiles size=630
texmf-doc/doc/french/impatient-fr/README
texmf-doc/doc/french/impatient-fr/config.tex
texmf-doc/doc/french/impatient-fr/eplain.tex
@@ -60184,7 +60365,7 @@ docfiles size=24
texmf-dist/doc/fonts/libertine/OFL.txt
texmf-dist/doc/fonts/libertine/Readme
texmf-dist/doc/fonts/libertine/version
-runfiles size=2645
+runfiles size=2642
texmf-dist/dvips/libertine/config.libertine
texmf-dist/fonts/afm/public/libertine/fxlb.afm
texmf-dist/fonts/afm/public/libertine/fxlbi.afm
@@ -60540,9 +60721,6 @@ runfiles size=2645
texmf-dist/fonts/vf/public/libertine/fxlric-ts1fitted.vf
texmf-dist/fonts/vf/public/libertine/fxlric-ts1o.vf
texmf-dist/fonts/vf/public/libertine/fxlric-ts1os.vf
- texmf-dist/tex/latex/libertine/babel/README
- texmf-dist/tex/latex/libertine/babel/xlibycus.ldf
- texmf-dist/tex/latex/libertine/babel/xllgienc.def
texmf-dist/tex/latex/libertine/fxl.inc
texmf-dist/tex/latex/libertine/lgifxl.fd
texmf-dist/tex/latex/libertine/lgrfxl.fd
@@ -62090,6 +62268,14 @@ catalogue-ctan /info/lshort/bulgarian
catalogue-date 2007-12-21 19:41:24 +0100
catalogue-license pd
+name lshort-chinese
+category Documentation
+revision 9630
+docfiles size=330
+ texmf-doc/doc/chinese/lshort-chinese/README
+ texmf-doc/doc/chinese/lshort-chinese/lshort-zh-cn-4.20.src.zip
+ texmf-doc/doc/chinese/lshort-chinese/lshort-zh-cn.pdf
+
name lshort-dutch
category Documentation
revision 7340
@@ -66586,7 +66772,7 @@ runfiles size=4
name mkjobtexmf
category Package
-revision 9317
+revision 9626
shortdesc Generate a texmf tree for a particular job.
longdesc The progam mkjobtexmf runs a program and tries to find the used
longdesc file names. Two methods are available, option "-recorder" of
@@ -66595,7 +66781,7 @@ longdesc directory with a texmf tree. It checks the found files and
longdesc tries sort them in this texmf tree. It can be used for
longdesc archiving purposes or to speed up following TeX runs.
depend mkjobtexmf.ARCH
-docfiles size=44
+docfiles size=48
texmf-dist/doc/generic/mkjobtexmf/README
texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.html
texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.ltx
@@ -66603,6 +66789,7 @@ docfiles size=44
texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.pdf details="Package documentation"
texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.txt details="Readme"
texmf/doc/man/man1/mkjobtexmf.1
+ texmf/doc/man/man1/mkjobtexmf.pdf details="Package documentation"
srcfiles size=21
texmf-dist/source/generic/mkjobtexmf/Makefile.in
texmf-dist/source/generic/mkjobtexmf/configure
@@ -72669,7 +72856,7 @@ catalogue-license lppl
name pdftex
category TLCore
-revision 9623
+revision 9626
shortdesc A TeX extension for direct creation of PDF.
longdesc An extension of TeX which can be configured to directly
longdesc generate PDF documents instead of DVI. All current TeX
@@ -72679,7 +72866,7 @@ longdesc around use of pdfTeX.
depend bin-kpathsea
depend pdftex.ARCH
execute BuildFormat pdftex
-docfiles size=2134
+docfiles size=2148
texmf-dist/doc/pdftex/Announcement-1.40.2
texmf-dist/doc/pdftex/NEWS details="Development news"
texmf-dist/doc/pdftex/README details="Readme"
@@ -72729,8 +72916,11 @@ docfiles size=2134
texmf-dist/doc/pdftex/thanh/ext/ufntinst.sty
texmf-dist/doc/pdftex/thanh/thesis-png.pdf
texmf/doc/man/man1/etex.1
+ texmf/doc/man/man1/etex.pdf
texmf/doc/man/man1/pdfetex.1
+ texmf/doc/man/man1/pdfetex.pdf
texmf/doc/man/man1/pdftex.1
+ texmf/doc/man/man1/pdftex.pdf
runfiles size=498
texmf/fmtutil/format.pdftex.cnf
texmf/fonts/map/pdftex/updmap/pdftex.map
@@ -89077,7 +89267,7 @@ runfiles size=1
name texinfo
category Package
-revision 9598
+revision 9626
shortdesc Texinfo documentation system.
longdesc Info is the preferred format for documentation in the GNU
longdesc project; the format may be used to produce online or printed
@@ -89089,21 +89279,30 @@ longdesc the latest working version of the Texinfo macros may be found
longdesc in the Texinfo ‘latest’ package.
depend bin-kpathsea
depend texinfo.ARCH
-docfiles size=1350
+docfiles size=1367
texmf/doc/info/fontname.info
texmf/doc/info/info-stnd.info
texmf/doc/info/info.info
texmf/doc/info/texdraw.info
texmf/doc/info/texinfo.info
texmf/doc/man/man1/info.1
+ texmf/doc/man/man1/info.pdf
texmf/doc/man/man1/infokey.1
+ texmf/doc/man/man1/infokey.pdf
texmf/doc/man/man1/install-info.1
+ texmf/doc/man/man1/install-info.pdf
texmf/doc/man/man1/makeinfo.1
+ texmf/doc/man/man1/makeinfo.pdf
texmf/doc/man/man1/texi2dvi.1
+ texmf/doc/man/man1/texi2dvi.pdf
texmf/doc/man/man1/texi2pdf.1
+ texmf/doc/man/man1/texi2pdf.pdf
texmf/doc/man/man1/texindex.1
+ texmf/doc/man/man1/texindex.pdf
texmf/doc/man/man5/info.5
+ texmf/doc/man/man5/info.pdf
texmf/doc/man/man5/texinfo.5
+ texmf/doc/man/man5/texinfo.pdf
texmf/doc/texinfo/info-stnd.html
texmf/doc/texinfo/info-stnd.pdf
texmf/doc/texinfo/info.html
@@ -89347,7 +89546,7 @@ srcfiles size=8
name texlive-cz
category Documentation
-revision 7340
+revision 9387
docfiles size=285
texmf-doc/doc/czechslovak/texlive-cz/cmsy9-43.png
texmf-doc/doc/czechslovak/texlive-cz/cmsy9-53.png
@@ -89364,7 +89563,7 @@ srcfiles size=45
name texlive-de
category Documentation
-revision 9401
+revision 9436
docfiles size=336
texmf-doc/doc/german/texlive-de/live.css
texmf-doc/doc/german/texlive-de/live.html
@@ -89427,7 +89626,7 @@ srcfiles size=291
name texlive-fr
category Documentation
-revision 7340
+revision 9387
docfiles size=322
texmf-doc/doc/french/texlive-fr/live.css
texmf-doc/doc/french/texlive-fr/live.html
@@ -89442,7 +89641,7 @@ srcfiles size=46
name texlive-pl
category Documentation
-revision 7340
+revision 9387
docfiles size=281
texmf-doc/doc/polish/texlive-pl/live.css
texmf-doc/doc/polish/texlive-pl/live.html
@@ -89457,7 +89656,7 @@ srcfiles size=51
name texlive-ru
category Documentation
-revision 7340
+revision 9387
docfiles size=389
texmf-doc/doc/russian/texlive-ru/live.css
texmf-doc/doc/russian/texlive-ru/live.html
@@ -89471,7 +89670,7 @@ srcfiles size=40
name texlive-zh-cn
category Documentation
-revision 7340
+revision 9387
docfiles size=144
texmf-doc/doc/chinese/texlive-zh-cn/live.pdf
srcfiles size=40
@@ -89483,14 +89682,14 @@ srcfiles size=40
name texlive.infra
category TLCore
-revision 9610
+revision 9627
shortdesc basic TeX Live infrastructure
longdesc This package contains the files needed to get the longdesc TeX
longdesc Live tools (like tlmgr) running. That comprises the perl
longdesc modules, documentation, and the lzma binaries, plus tar and
longdesc wget, sometimes). These files end up in the install packages.
depend texlive.infra.ARCH
-docfiles size=361
+docfiles size=364
LICENSE.CTAN
LICENSE.TL
README.CS
@@ -90234,7 +90433,7 @@ catalogue-version 1.0
name thumbpdf
category Package
-revision 9317
+revision 9626
shortdesc Thumbnails for pdfTeX and dvips/ps2pdf.
longdesc A Perl script that provides support for thumbnails in pdfTeX
longdesc and dvips/ps2pdf. The script uses ghostscript to generate the
@@ -90243,9 +90442,10 @@ longdesc read by the package thumbpdf.sty to automatically include the
longdesc thumbnails. This arrangement works with both plain TeX and
longdesc LaTeX.
depend thumbpdf.ARCH
-docfiles size=8
+docfiles size=10
texmf-dist/doc/generic/thumbpdf/readme.txt
texmf/doc/man/man1/thumbpdf.1
+ texmf/doc/man/man1/thumbpdf.pdf
runfiles size=18
texmf-dist/scripts/thumbpdf/thumbpdf.pl
texmf-dist/tex/generic/thumbpdf/thumbpdf.sty
@@ -101641,7 +101841,7 @@ catalogue-version 1.1
name xindy
category TLCore
-revision 9609
+revision 9626
shortdesc A general-purpose index processor.
longdesc Xindy was designed to avoid an impasse encountered in the
longdesc attempt to complete internationalisation of makeindex. Xindy
@@ -101650,10 +101850,13 @@ longdesc (La)TeX, Nroff family and SGML-based languages. Xindy is highly
longdesc configurable, both in markup terms and in terms of the
longdesc collating order of the text being processed.
depend xindy.ARCH
-docfiles size=928
+docfiles size=938
texmf/doc/man/man1/tex2xindy.1
+ texmf/doc/man/man1/tex2xindy.pdf
texmf/doc/man/man1/texindy.1
+ texmf/doc/man/man1/texindy.pdf
texmf/doc/man/man1/xindy.1
+ texmf/doc/man/man1/xindy.pdf
texmf/doc/xindy/NEWS
texmf/doc/xindy/README
texmf/doc/xindy/README.distrib-source
diff --git a/Master/tlpkg/tlpsrc/a2ping.tlpsrc b/Master/tlpkg/tlpsrc/a2ping.tlpsrc
index 13e16104138..76cc4f4b23b 100644
--- a/Master/tlpkg/tlpsrc/a2ping.tlpsrc
+++ b/Master/tlpkg/tlpsrc/a2ping.tlpsrc
@@ -1,5 +1,5 @@
name a2ping
category TLCore
-docpattern f texmf/doc/man/man1/a2ping.1
+docpattern f texmf/doc/man/man1/a2ping.*
runpattern f texmf/scripts/a2ping/a2ping.pl
binpattern f bin/${ARCH}/a2ping
diff --git a/Master/tlpkg/tlpsrc/bin-afm2pl.tlpsrc b/Master/tlpkg/tlpsrc/bin-afm2pl.tlpsrc
index 959002a8924..ab43cd28ac7 100644
--- a/Master/tlpkg/tlpsrc/bin-afm2pl.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-afm2pl.tlpsrc
@@ -1,8 +1,8 @@
name bin-afm2pl
category TLCore
-runpattern f texmf/fonts/enc/dvips/afm2pl/*
-runpattern f texmf/fonts/lig/afm2pl/*
-runpattern f texmf/tex/fontinst/afm2pl/*
-runpattern f texmf/tex/latex/afm2pl/*
-docpattern f texmf/doc/man/man1/afm2pl.1
binpattern f bin/${ARCH}/afm2pl
+docpattern f texmf/doc/man/man1/afm2pl.*
+runpattern d texmf/fonts/enc/dvips/afm2pl
+runpattern d texmf/fonts/lig/afm2pl
+runpattern d texmf/tex/fontinst/afm2pl
+runpattern d texmf/tex/latex/afm2pl
diff --git a/Master/tlpkg/tlpsrc/bin-amstex.tlpsrc b/Master/tlpkg/tlpsrc/bin-amstex.tlpsrc
index 7f2a234df05..137f4b75705 100644
--- a/Master/tlpkg/tlpsrc/bin-amstex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-amstex.tlpsrc
@@ -3,5 +3,5 @@ category TLCore
depend bin-tex
execute BuildFormat amstex
runpattern f texmf/fmtutil/format.amstex.cnf
-docpattern f texmf/doc/man/man1/amstex.1
+docpattern f texmf/doc/man/man1/amstex.*
binpattern f bin/${ARCH}/amstex
diff --git a/Master/tlpkg/tlpsrc/bin-bibtex.tlpsrc b/Master/tlpkg/tlpsrc/bin-bibtex.tlpsrc
index e940a01448d..beb193bd9b4 100644
--- a/Master/tlpkg/tlpsrc/bin-bibtex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-bibtex.tlpsrc
@@ -1,5 +1,5 @@
name bin-bibtex
category TLCore
depend bin-kpathsea
-docpattern f texmf/doc/man/man1/bibtex.1
+docpattern f texmf/doc/man/man1/bibtex.*
binpattern f bin/${ARCH}/bibtex
diff --git a/Master/tlpkg/tlpsrc/bin-cjkutils.tlpsrc b/Master/tlpkg/tlpsrc/bin-cjkutils.tlpsrc
index 33c82b4f4e7..03831e54434 100644
--- a/Master/tlpkg/tlpsrc/bin-cjkutils.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-cjkutils.tlpsrc
@@ -10,13 +10,13 @@ docpattern d texmf/doc/hbf2gf
docpattern d texmf/doc/hbf2gf/man
docpattern d texmf/doc/sjisconv
docpattern d texmf/doc/sjisconv/man
-docpattern f texmf/doc/man/man1/bg5conv.1
-docpattern f texmf/doc/man/man1/cef5conv.1
-docpattern f texmf/doc/man/man1/cefconv.1
-docpattern f texmf/doc/man/man1/cefsconv.1
-docpattern f texmf/doc/man/man1/extconv.1
-docpattern f texmf/doc/man/man1/hbf2gf.1
-docpattern f texmf/doc/man/man1/sjisconv.1
+docpattern f texmf/doc/man/man1/bg5conv.*
+docpattern f texmf/doc/man/man1/cef5conv.*
+docpattern f texmf/doc/man/man1/cefconv.*
+docpattern f texmf/doc/man/man1/cefsconv.*
+docpattern f texmf/doc/man/man1/extconv.*
+docpattern f texmf/doc/man/man1/hbf2gf.*
+docpattern f texmf/doc/man/man1/sjisconv.*
binpattern f bin/${ARCH}/bg5+latex
binpattern f bin/${ARCH}/bg5+pdflatex
binpattern f bin/${ARCH}/bg5conv
diff --git a/Master/tlpkg/tlpsrc/bin-ctie.tlpsrc b/Master/tlpkg/tlpsrc/bin-ctie.tlpsrc
index 35b634eedef..f5bbc8dfa11 100644
--- a/Master/tlpkg/tlpsrc/bin-ctie.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-ctie.tlpsrc
@@ -1,5 +1,5 @@
name bin-ctie
category TLCore
depend bin-kpathsea
-docpattern f texmf/doc/man/man1/ctie.1
+docpattern f texmf/doc/man/man1/ctie.*
binpattern f bin/${ARCH}/ctie
diff --git a/Master/tlpkg/tlpsrc/bin-cweb.tlpsrc b/Master/tlpkg/tlpsrc/bin-cweb.tlpsrc
index 7293b92536a..aecef5c957a 100644
--- a/Master/tlpkg/tlpsrc/bin-cweb.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-cweb.tlpsrc
@@ -1,7 +1,7 @@
name bin-cweb
category TLCore
-docpattern f texmf/doc/man/man1/ctangle.1
-docpattern f texmf/doc/man/man1/cweave.1
-docpattern f texmf/doc/man/man1/cweb.1
+docpattern f texmf/doc/man/man1/ctangle.*
+docpattern f texmf/doc/man/man1/cweave.*
+docpattern f texmf/doc/man/man1/cweb.*
binpattern f bin/${ARCH}/ctangle
binpattern f bin/${ARCH}/cweave
diff --git a/Master/tlpkg/tlpsrc/bin-cyrillic.tlpsrc b/Master/tlpkg/tlpsrc/bin-cyrillic.tlpsrc
index 6b3976c35a6..70c33f4794e 100644
--- a/Master/tlpkg/tlpsrc/bin-cyrillic.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-cyrillic.tlpsrc
@@ -1,7 +1,7 @@
name bin-cyrillic
category TLCore
-docpattern f texmf/doc/man/man1/rubibtex.1
-docpattern f texmf/doc/man/man1/rumakeindex.1
+docpattern f texmf/doc/man/man1/rubibtex.*
+docpattern f texmf/doc/man/man1/rumakeindex.*
binpattern f bin/${ARCH}/rubibtex
binpattern f bin/${ARCH}/rumakeindex
runpattern f texmf/fmtutil/format.cyramstex.cnf
diff --git a/Master/tlpkg/tlpsrc/bin-detex.tlpsrc b/Master/tlpkg/tlpsrc/bin-detex.tlpsrc
index 654127a6b9e..b2dd885773d 100644
--- a/Master/tlpkg/tlpsrc/bin-detex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-detex.tlpsrc
@@ -1,4 +1,4 @@
name bin-detex
category TLCore
-docpattern f texmf/doc/man/man1/detex.1
+docpattern f texmf/doc/man/man1/detex.*
binpattern f bin/${ARCH}/detex
diff --git a/Master/tlpkg/tlpsrc/bin-dialog.tlpsrc b/Master/tlpkg/tlpsrc/bin-dialog.tlpsrc
index 647a967045f..5a9aa060d6e 100644
--- a/Master/tlpkg/tlpsrc/bin-dialog.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dialog.tlpsrc
@@ -1,4 +1,4 @@
name bin-dialog
category TLCore
-docpattern f texmf/doc/man/man1/tcdialog.1
+docpattern f texmf/doc/man/man1/tcdialog.*
binpattern f bin/${ARCH}/tcdialog
diff --git a/Master/tlpkg/tlpsrc/bin-dtl.tlpsrc b/Master/tlpkg/tlpsrc/bin-dtl.tlpsrc
index af9f206dda5..0f62fd7c619 100644
--- a/Master/tlpkg/tlpsrc/bin-dtl.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dtl.tlpsrc
@@ -1,6 +1,6 @@
name bin-dtl
category TLCore
-runpattern f texmf/doc/man/man1/dt2dv.1
-runpattern f texmf/doc/man/man1/dv2dt.1
+runpattern f texmf/doc/man/man1/dt2dv.*
+runpattern f texmf/doc/man/man1/dv2dt.*
binpattern f bin/${ARCH}/dt2dv
binpattern f bin/${ARCH}/dv2dt
diff --git a/Master/tlpkg/tlpsrc/bin-dvi2tty.tlpsrc b/Master/tlpkg/tlpsrc/bin-dvi2tty.tlpsrc
index f68be772af3..724ee90faf6 100644
--- a/Master/tlpkg/tlpsrc/bin-dvi2tty.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dvi2tty.tlpsrc
@@ -1,5 +1,5 @@
name bin-dvi2tty
category TLCore
-runpattern f texmf/doc/man/man1/dvi2tty.1
+runpattern f texmf/doc/man/man1/dvi2tty.*
binpattern f bin/${ARCH}/disdvi
binpattern f bin/${ARCH}/dvi2tty
diff --git a/Master/tlpkg/tlpsrc/bin-dvicopy.tlpsrc b/Master/tlpkg/tlpsrc/bin-dvicopy.tlpsrc
index 9fa3bc4b760..c25162da523 100644
--- a/Master/tlpkg/tlpsrc/bin-dvicopy.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dvicopy.tlpsrc
@@ -1,4 +1,4 @@
name bin-dvicopy
category TLCore
-docpattern f texmf/doc/man/man1/dvicopy.1
+docpattern f texmf/doc/man/man1/dvicopy.*
binpattern f bin/${ARCH}/dvicopy
diff --git a/Master/tlpkg/tlpsrc/bin-dvidvi.tlpsrc b/Master/tlpkg/tlpsrc/bin-dvidvi.tlpsrc
index 548cf9ca477..0e63142e4d7 100644
--- a/Master/tlpkg/tlpsrc/bin-dvidvi.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dvidvi.tlpsrc
@@ -1,6 +1,6 @@
name bin-dvidvi
category TLCore
-runpattern f texmf/doc/man/man1/dvidvi.1
+runpattern f texmf/doc/man/man1/dvidvi.*
binpattern f bin/${ARCH}/dvidvi
binpattern f bin/win32/a5bookle.bat
binpattern f bin/win32/doubside.bat
diff --git a/Master/tlpkg/tlpsrc/bin-dviljk.tlpsrc b/Master/tlpkg/tlpsrc/bin-dviljk.tlpsrc
index 20af0e5a9f7..e15f3def9d4 100644
--- a/Master/tlpkg/tlpsrc/bin-dviljk.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dviljk.tlpsrc
@@ -1,11 +1,11 @@
name bin-dviljk
category TLCore
-docpattern f texmf/doc/man/man1/dvihp.1
-docpattern f texmf/doc/man/man1/dvilj.1
-docpattern f texmf/doc/man/man1/dvilj2p.1
-docpattern f texmf/doc/man/man1/dvilj4.1
-docpattern f texmf/doc/man/man1/dvilj4l.1
-docpattern f texmf/doc/man/man1/dvilj6.1
+docpattern f texmf/doc/man/man1/dvihp.*
+docpattern f texmf/doc/man/man1/dvilj.*
+docpattern f texmf/doc/man/man1/dvilj2p.*
+docpattern f texmf/doc/man/man1/dvilj4.*
+docpattern f texmf/doc/man/man1/dvilj4l.*
+docpattern f texmf/doc/man/man1/dvilj6.*
binpattern f bin/${ARCH}/dvihp
binpattern f bin/${ARCH}/dvilj
binpattern f bin/${ARCH}/dvilj2p
diff --git a/Master/tlpkg/tlpsrc/bin-dvipdfm.tlpsrc b/Master/tlpkg/tlpsrc/bin-dvipdfm.tlpsrc
index 753790c71d1..b89ac97d9d7 100644
--- a/Master/tlpkg/tlpsrc/bin-dvipdfm.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dvipdfm.tlpsrc
@@ -4,8 +4,8 @@ runpattern d texmf/dvipdfm
runpattern f texmf/fonts/map/dvipdfm/updmap/*
runpattern f texmf/tex/latex/dvipdfm/*
docpattern f texmf/doc/dvipdfm/*
-docpattern f texmf/doc/man/man1/dvipdfm.1
-docpattern f texmf/doc/man/man1/dvipdft.1
-docpattern f texmf/doc/man/man1/ebb.1
+docpattern f texmf/doc/man/man1/dvipdfm.*
+docpattern f texmf/doc/man/man1/dvipdft.*
+docpattern f texmf/doc/man/man1/ebb.*
binpattern f bin/${ARCH}/dvipdfm
binpattern f bin/${ARCH}/dvipdft
diff --git a/Master/tlpkg/tlpsrc/bin-dvipsk.tlpsrc b/Master/tlpkg/tlpsrc/bin-dvipsk.tlpsrc
index 114b22b5591..f5064835c29 100644
--- a/Master/tlpkg/tlpsrc/bin-dvipsk.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-dvipsk.tlpsrc
@@ -6,8 +6,8 @@ runpattern f texmf/fonts/map/dvips/updmap/*
runpattern f texmf/scripts/pkfix/*
docpattern f texmf/doc/dvips/*
docpattern f texmf/doc/info/dvips*
-docpattern f texmf/doc/man/man1/afm2tfm.1
-docpattern f texmf/doc/man/man1/dvips.1
+docpattern f texmf/doc/man/man1/afm2tfm.*
+docpattern f texmf/doc/man/man1/dvips.*
docpattern f texmf/doc/pkfix/*
binpattern f bin/${ARCH}/afm2tfm
binpattern f bin/${ARCH}/dvips
diff --git a/Master/tlpkg/tlpsrc/bin-eplain.tlpsrc b/Master/tlpkg/tlpsrc/bin-eplain.tlpsrc
index a2fa7bbad18..12189c094d6 100644
--- a/Master/tlpkg/tlpsrc/bin-eplain.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-eplain.tlpsrc
@@ -4,5 +4,5 @@ depend pdftex
execute BuildFormat eplain
runpattern f texmf/fmtutil/format.eplain.cnf
docpattern f texmf/doc/info/eplain.info
-docpattern f texmf/doc/man/man1/eplain.1
+docpattern f texmf/doc/man/man1/eplain.*
binpattern f bin/${ARCH}/eplain
diff --git a/Master/tlpkg/tlpsrc/bin-fontware.tlpsrc b/Master/tlpkg/tlpsrc/bin-fontware.tlpsrc
index a68578bb863..aaa1f1e3129 100644
--- a/Master/tlpkg/tlpsrc/bin-fontware.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-fontware.tlpsrc
@@ -1,9 +1,9 @@
name bin-fontware
category TLCore
-docpattern f texmf/doc/man/man1/pltotf.1
-docpattern f texmf/doc/man/man1/tftopl.1
-docpattern f texmf/doc/man/man1/vftovp.1
-docpattern f texmf/doc/man/man1/vptovf.1
+docpattern f texmf/doc/man/man1/pltotf.*
+docpattern f texmf/doc/man/man1/tftopl.*
+docpattern f texmf/doc/man/man1/vftovp.*
+docpattern f texmf/doc/man/man1/vptovf.*
binpattern f bin/${ARCH}/pltotf
binpattern f bin/${ARCH}/tftopl
binpattern f bin/${ARCH}/vftovp
diff --git a/Master/tlpkg/tlpsrc/bin-getafm.tlpsrc b/Master/tlpkg/tlpsrc/bin-getafm.tlpsrc
index 71ba867be2a..44aeaf1ede9 100644
--- a/Master/tlpkg/tlpsrc/bin-getafm.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-getafm.tlpsrc
@@ -1,6 +1,6 @@
name bin-getafm
category TLCore
runpattern f texmf/dvips/getafm/*
-docpattern f texmf/doc/man/man1/getafm.1
+docpattern f texmf/doc/man/man1/getafm.*
binpattern f bin/${ARCH}/getafm
binpattern f bin/${ARCH}/showchar
diff --git a/Master/tlpkg/tlpsrc/bin-getnonfreefonts.tlpsrc b/Master/tlpkg/tlpsrc/bin-getnonfreefonts.tlpsrc
index 7dfc81c44ae..e32804fb1b7 100644
--- a/Master/tlpkg/tlpsrc/bin-getnonfreefonts.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-getnonfreefonts.tlpsrc
@@ -1,6 +1,6 @@
name bin-getnonfreefonts
category TLCore
runpattern f texmf/scripts/texlive/getnonfreefonts.pl
-docpattern f texmf/doc/man/man1/getnonfreefonts*.1
+docpattern f texmf/doc/man/man1/getnonfreefonts*.*
binpattern f bin/${ARCH}/getnonfreefonts
binpattern f bin/${ARCH}/getnonfreefonts-sys
diff --git a/Master/tlpkg/tlpsrc/bin-gsftopk.tlpsrc b/Master/tlpkg/tlpsrc/bin-gsftopk.tlpsrc
index a2d96101bc6..8c384bbcbea 100644
--- a/Master/tlpkg/tlpsrc/bin-gsftopk.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-gsftopk.tlpsrc
@@ -1,5 +1,5 @@
name bin-gsftopk
category TLCore
runpattern f texmf/dvips/gsftopk/*
-docpattern f texmf/doc/man/man1/gsftopk.1
+docpattern f texmf/doc/man/man1/gsftopk.*
binpattern f bin/${ARCH}/gsftopk
diff --git a/Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc b/Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc
index 697dc32711f..7f43d3a7cd0 100644
--- a/Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc
@@ -11,22 +11,22 @@ docpattern f texmf/doc/info/kpathsea.info*
docpattern f texmf/doc/info/tds.info
docpattern f texmf/doc/info/web2c.info*
docpattern f texmf/doc/kpathsea/*
-docpattern f texmf/doc/man/man1/kpseaccess.1
-docpattern f texmf/doc/man/man1/kpsepath.1
-docpattern f texmf/doc/man/man1/kpsereadlink.1
-docpattern f texmf/doc/man/man1/kpsestat.1
-docpattern f texmf/doc/man/man1/kpsetool.1
-docpattern f texmf/doc/man/man1/kpsewhere.1
-docpattern f texmf/doc/man/man1/kpsewhich.1
-docpattern f texmf/doc/man/man1/kpsexpand.1
+docpattern f texmf/doc/man/man1/kpseaccess.*
+docpattern f texmf/doc/man/man1/kpsepath.*
+docpattern f texmf/doc/man/man1/kpsereadlink.*
+docpattern f texmf/doc/man/man1/kpsestat.*
+docpattern f texmf/doc/man/man1/kpsetool.*
+docpattern f texmf/doc/man/man1/kpsewhere.*
+docpattern f texmf/doc/man/man1/kpsewhich.*
+docpattern f texmf/doc/man/man1/kpsexpand.*
docpattern f texmf/doc/man/man1/mkocp.*
docpattern f texmf/doc/man/man1/mkofm.*
docpattern f texmf/doc/man/man1/mktexfmt.*
-docpattern f texmf/doc/man/man1/mktexlsr.1
-docpattern f texmf/doc/man/man1/mktexmf.1
-docpattern f texmf/doc/man/man1/mktexpk.1
-docpattern f texmf/doc/man/man1/mktextfm.1
-docpattern f texmf/doc/man/man1/texhash.1
+docpattern f texmf/doc/man/man1/mktexlsr.*
+docpattern f texmf/doc/man/man1/mktexmf.*
+docpattern f texmf/doc/man/man1/mktexpk.*
+docpattern f texmf/doc/man/man1/mktextfm.*
+docpattern f texmf/doc/man/man1/texhash.*
docpattern f texmf/doc/web2c/*
binpattern f bin/${ARCH}/kpseaccess
binpattern f bin/${ARCH}/kpsepath
diff --git a/Master/tlpkg/tlpsrc/bin-lacheck.tlpsrc b/Master/tlpkg/tlpsrc/bin-lacheck.tlpsrc
index 6401222e2ca..c653bb2f500 100644
--- a/Master/tlpkg/tlpsrc/bin-lacheck.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-lacheck.tlpsrc
@@ -1,4 +1,4 @@
name bin-lacheck
category TLCore
-runpattern f texmf/doc/man/man1/lacheck.1
+runpattern f texmf/doc/man/man1/lacheck.*
binpattern f bin/${ARCH}/lacheck
diff --git a/Master/tlpkg/tlpsrc/bin-latex.tlpsrc b/Master/tlpkg/tlpsrc/bin-latex.tlpsrc
index b9d92d671bd..f1616a77223 100644
--- a/Master/tlpkg/tlpsrc/bin-latex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-latex.tlpsrc
@@ -7,7 +7,7 @@ binpattern f bin/${ARCH}/latex
binpattern f bin/${ARCH}/lualatex
binpattern f bin/${ARCH}/pdflatex
binpattern f bin/${ARCH}/pdflualatex
-docpattern f texmf/doc/man/man1/latex.1
-docpattern f texmf/doc/man/man1/pdflatex.1
+docpattern f texmf/doc/man/man1/latex.*
+docpattern f texmf/doc/man/man1/pdflatex.*
runpattern f texmf/fmtutil/format.latex.cnf
runpattern d texmf/tex/latex/config
diff --git a/Master/tlpkg/tlpsrc/bin-lcdftypetools.tlpsrc b/Master/tlpkg/tlpsrc/bin-lcdftypetools.tlpsrc
index 13e3fe51c55..898417bb916 100644
--- a/Master/tlpkg/tlpsrc/bin-lcdftypetools.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-lcdftypetools.tlpsrc
@@ -1,13 +1,13 @@
name bin-lcdftypetools
category TLCore
depend glyphlist
-docpattern f texmf/doc/man/man1/cfftot1.1
-docpattern f texmf/doc/man/man1/mmafm.1
-docpattern f texmf/doc/man/man1/mmpfb.1
-docpattern f texmf/doc/man/man1/otfinfo.1
-docpattern f texmf/doc/man/man1/otftotfm.1
-docpattern f texmf/doc/man/man1/t1dotlessj.1
-docpattern f texmf/doc/man/man1/t1lint.1
+docpattern f texmf/doc/man/man1/cfftot1.*
+docpattern f texmf/doc/man/man1/mmafm.*
+docpattern f texmf/doc/man/man1/mmpfb.*
+docpattern f texmf/doc/man/man1/otfinfo.*
+docpattern f texmf/doc/man/man1/otftotfm.*
+docpattern f texmf/doc/man/man1/t1dotlessj.*
+docpattern f texmf/doc/man/man1/t1lint.*
docpattern f texmf/doc/man/man1/t1reencode.*
docpattern f texmf/doc/man/man1/t1testpage.*
docpattern f texmf/doc/man/man1/ttftotype42.*
diff --git a/Master/tlpkg/tlpsrc/bin-makeindex.tlpsrc b/Master/tlpkg/tlpsrc/bin-makeindex.tlpsrc
index da421c297d8..b1f2811844e 100644
--- a/Master/tlpkg/tlpsrc/bin-makeindex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-makeindex.tlpsrc
@@ -1,6 +1,6 @@
name bin-makeindex
category TLCore
-docpattern f texmf/doc/man/man1/makeindex.1
-docpattern f texmf/doc/man/man1/mkindex.1
+docpattern f texmf/doc/man/man1/makeindex.*
+docpattern f texmf/doc/man/man1/mkindex.*
binpattern f bin/${ARCH}/makeindex
binpattern f bin/${ARCH}/mkindex
diff --git a/Master/tlpkg/tlpsrc/bin-metafont.tlpsrc b/Master/tlpkg/tlpsrc/bin-metafont.tlpsrc
index f8f89ab7010..2dd91933f0a 100644
--- a/Master/tlpkg/tlpsrc/bin-metafont.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-metafont.tlpsrc
@@ -3,7 +3,7 @@ category TLCore
depend bin-kpathsea
execute BuildFormat metafont
runpattern f texmf/fmtutil/format.metafont.cnf
-docpattern f texmf/doc/man/man1/mf-nowin.1
-docpattern f texmf/doc/man/man1/mf.1
+docpattern f texmf/doc/man/man1/mf-nowin.*
+docpattern f texmf/doc/man/man1/mf.*
binpattern f bin/${ARCH}/mf
binpattern f bin/${ARCH}/mf-nowin
diff --git a/Master/tlpkg/tlpsrc/bin-metapost.tlpsrc b/Master/tlpkg/tlpsrc/bin-metapost.tlpsrc
index ef845b24340..b1a301fcb31 100644
--- a/Master/tlpkg/tlpsrc/bin-metapost.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-metapost.tlpsrc
@@ -3,12 +3,12 @@ category TLCore
depend bin-kpathsea
execute BuildFormat metapost
runpattern f texmf/fmtutil/format.metapost.cnf
-docpattern f texmf/doc/man/man1/dmp.1
-docpattern f texmf/doc/man/man1/dvitomp.1
-docpattern f texmf/doc/man/man1/makempx.1
-docpattern f texmf/doc/man/man1/mpost.1
-docpattern f texmf/doc/man/man1/mpto.1
-docpattern f texmf/doc/man/man1/newer.1
+docpattern f texmf/doc/man/man1/dmp.*
+docpattern f texmf/doc/man/man1/dvitomp.*
+docpattern f texmf/doc/man/man1/makempx.*
+docpattern f texmf/doc/man/man1/mpost.*
+docpattern f texmf/doc/man/man1/mpto.*
+docpattern f texmf/doc/man/man1/newer.*
binpattern f bin/${ARCH}/dmp
binpattern f bin/${ARCH}/dvitomp
binpattern f bin/${ARCH}/makempx
diff --git a/Master/tlpkg/tlpsrc/bin-mfware.tlpsrc b/Master/tlpkg/tlpsrc/bin-mfware.tlpsrc
index 5e9de47d55a..c83031c2f0e 100644
--- a/Master/tlpkg/tlpsrc/bin-mfware.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-mfware.tlpsrc
@@ -1,11 +1,11 @@
name bin-mfware
category TLCore
-docpattern f texmf/doc/man/man1/gftodvi.1
-docpattern f texmf/doc/man/man1/gftopk.1
-docpattern f texmf/doc/man/man1/gftype.1
-docpattern f texmf/doc/man/man1/mft.1
-docpattern f texmf/doc/man/man1/pktogf.1
-docpattern f texmf/doc/man/man1/pktype.1
+docpattern f texmf/doc/man/man1/gftodvi.*
+docpattern f texmf/doc/man/man1/gftopk.*
+docpattern f texmf/doc/man/man1/gftype.*
+docpattern f texmf/doc/man/man1/mft.*
+docpattern f texmf/doc/man/man1/pktogf.*
+docpattern f texmf/doc/man/man1/pktype.*
binpattern f bin/${ARCH}/gftodvi
binpattern f bin/${ARCH}/gftopk
binpattern f bin/${ARCH}/gftype
diff --git a/Master/tlpkg/tlpsrc/bin-omega.tlpsrc b/Master/tlpkg/tlpsrc/bin-omega.tlpsrc
index 33983461675..3ce77cae90f 100644
--- a/Master/tlpkg/tlpsrc/bin-omega.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-omega.tlpsrc
@@ -2,7 +2,7 @@ name bin-omega
category TLCore
execute BuildFormat omega
runpattern f texmf/fmtutil/format.omega.cnf
-docpattern f texmf/doc/man/man1/lambda.1
-docpattern f texmf/doc/man/man1/omega.1
+docpattern f texmf/doc/man/man1/lambda.*
+docpattern f texmf/doc/man/man1/omega.*
binpattern f bin/${ARCH}/lambda
binpattern f bin/${ARCH}/omega
diff --git a/Master/tlpkg/tlpsrc/bin-patgen.tlpsrc b/Master/tlpkg/tlpsrc/bin-patgen.tlpsrc
index 4e0c2f05a3a..9f583a970da 100644
--- a/Master/tlpkg/tlpsrc/bin-patgen.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-patgen.tlpsrc
@@ -1,5 +1,5 @@
name bin-patgen
category TLCore
depend bin-kpathsea
-docpattern f texmf/doc/man/man1/patgen.1
+docpattern f texmf/doc/man/man1/patgen.*
binpattern f bin/${ARCH}/patgen
diff --git a/Master/tlpkg/tlpsrc/bin-pdftools.tlpsrc b/Master/tlpkg/tlpsrc/bin-pdftools.tlpsrc
index be4c9df2c81..42fc3b2aafa 100644
--- a/Master/tlpkg/tlpsrc/bin-pdftools.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-pdftools.tlpsrc
@@ -2,9 +2,9 @@ name bin-pdftools
category TLCore
runpattern f texmf/scripts/epstopdf/epstopdf.pl
runpattern f texmf/scripts/tetex/e2pall.pl
-docpattern f texmf/doc/man/man1/e2pall.1
-docpattern f texmf/doc/man/man1/epstopdf.1
-docpattern f texmf/doc/man/man1/pdftosrc.1
+docpattern f texmf/doc/man/man1/e2pall.*
+docpattern f texmf/doc/man/man1/epstopdf.*
+docpattern f texmf/doc/man/man1/pdftosrc.*
binpattern f bin/${ARCH}/pdfatfi
binpattern f bin/${ARCH}/e2pall
binpattern f bin/${ARCH}/epstopdf
diff --git a/Master/tlpkg/tlpsrc/bin-ps2pkm.tlpsrc b/Master/tlpkg/tlpsrc/bin-ps2pkm.tlpsrc
index 9e11b623756..12dee34e0bb 100644
--- a/Master/tlpkg/tlpsrc/bin-ps2pkm.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-ps2pkm.tlpsrc
@@ -1,9 +1,9 @@
name bin-ps2pkm
category TLCore
-runpattern f texmf/doc/man/man1/mag.1
-runpattern f texmf/doc/man/man1/pfb2pfa.1
-runpattern f texmf/doc/man/man1/pk2bm.1
-runpattern f texmf/doc/man/man1/ps2pk.1
+runpattern f texmf/doc/man/man1/mag.*
+runpattern f texmf/doc/man/man1/pfb2pfa.*
+runpattern f texmf/doc/man/man1/pk2bm.*
+runpattern f texmf/doc/man/man1/ps2pk.*
binpattern f bin/${ARCH}/mag
binpattern f bin/${ARCH}/pfb2pfa
binpattern f bin/${ARCH}/pk2bm
diff --git a/Master/tlpkg/tlpsrc/bin-pstools.tlpsrc b/Master/tlpkg/tlpsrc/bin-pstools.tlpsrc
index 9f7be2be529..618a4dfcc89 100644
--- a/Master/tlpkg/tlpsrc/bin-pstools.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-pstools.tlpsrc
@@ -1,8 +1,8 @@
name bin-pstools
category TLCore
runpattern f texmf/scripts/ps2eps/ps2eps.pl
-docpattern f texmf/doc/man/man1/ps2frag.1
-docpattern f texmf/doc/man/man1/pslatex.1
+docpattern f texmf/doc/man/man1/ps2frag.*
+docpattern f texmf/doc/man/man1/pslatex.*
binpattern f bin/${ARCH}/bbox
binpattern f bin/${ARCH}/ps2eps
binpattern f bin/${ARCH}/ps2frag
diff --git a/Master/tlpkg/tlpsrc/bin-psutils.tlpsrc b/Master/tlpkg/tlpsrc/bin-psutils.tlpsrc
index 742468c0cac..c7e547e0da2 100644
--- a/Master/tlpkg/tlpsrc/bin-psutils.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-psutils.tlpsrc
@@ -1,25 +1,25 @@
name bin-psutils
category TLCore
runpattern f texmf/dvips/psutils/*
-docpattern f texmf/doc/man/man1/epsffit.1
-docpattern f texmf/doc/man/man1/extractres.1
-docpattern f texmf/doc/man/man1/fixdlsrps.1
-docpattern f texmf/doc/man/man1/fixfmps.1
-docpattern f texmf/doc/man/man1/fixmacps.1
-docpattern f texmf/doc/man/man1/fixpsditps.1
-docpattern f texmf/doc/man/man1/fixpspps.1
-docpattern f texmf/doc/man/man1/fixscribeps.1
-docpattern f texmf/doc/man/man1/fixtpps.1
-docpattern f texmf/doc/man/man1/fixwfwps.1
-docpattern f texmf/doc/man/man1/fixwpps.1
-docpattern f texmf/doc/man/man1/fixwwps.1
-docpattern f texmf/doc/man/man1/includeres.1
-docpattern f texmf/doc/man/man1/psbook.1
-docpattern f texmf/doc/man/man1/psmerge.1
-docpattern f texmf/doc/man/man1/psnup.1
-docpattern f texmf/doc/man/man1/psresize.1
-docpattern f texmf/doc/man/man1/psselect.1
-docpattern f texmf/doc/man/man1/pstops.1
+docpattern f texmf/doc/man/man1/epsffit.*
+docpattern f texmf/doc/man/man1/extractres.*
+docpattern f texmf/doc/man/man1/fixdlsrps.*
+docpattern f texmf/doc/man/man1/fixfmps.*
+docpattern f texmf/doc/man/man1/fixmacps.*
+docpattern f texmf/doc/man/man1/fixpsditps.*
+docpattern f texmf/doc/man/man1/fixpspps.*
+docpattern f texmf/doc/man/man1/fixscribeps.*
+docpattern f texmf/doc/man/man1/fixtpps.*
+docpattern f texmf/doc/man/man1/fixwfwps.*
+docpattern f texmf/doc/man/man1/fixwpps.*
+docpattern f texmf/doc/man/man1/fixwwps.*
+docpattern f texmf/doc/man/man1/includeres.*
+docpattern f texmf/doc/man/man1/psbook.*
+docpattern f texmf/doc/man/man1/psmerge.*
+docpattern f texmf/doc/man/man1/psnup.*
+docpattern f texmf/doc/man/man1/psresize.*
+docpattern f texmf/doc/man/man1/psselect.*
+docpattern f texmf/doc/man/man1/pstops.*
binpattern f bin/${ARCH}/epsffit
binpattern f bin/${ARCH}/extractres
binpattern f bin/${ARCH}/fixdlsrps
diff --git a/Master/tlpkg/tlpsrc/bin-seetexk.tlpsrc b/Master/tlpkg/tlpsrc/bin-seetexk.tlpsrc
index de7e5e2cd3f..b3af740b3ec 100644
--- a/Master/tlpkg/tlpsrc/bin-seetexk.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-seetexk.tlpsrc
@@ -1,9 +1,9 @@
name bin-seetexk
category TLCore
-runpattern f texmf/doc/man/man1/dvibook.1
-runpattern f texmf/doc/man/man1/dviconcat.1
-runpattern f texmf/doc/man/man1/dviselect.1
-runpattern f texmf/doc/man/man1/dvitodvi.1
+runpattern f texmf/doc/man/man1/dvibook.*
+runpattern f texmf/doc/man/man1/dviconcat.*
+runpattern f texmf/doc/man/man1/dviselect.*
+runpattern f texmf/doc/man/man1/dvitodvi.*
binpattern f bin/${ARCH}/dvibook
binpattern f bin/${ARCH}/dviconcat
binpattern f bin/${ARCH}/dviselect
diff --git a/Master/tlpkg/tlpsrc/bin-t1utils.tlpsrc b/Master/tlpkg/tlpsrc/bin-t1utils.tlpsrc
index 13ba17e3f61..0eedf2a1135 100644
--- a/Master/tlpkg/tlpsrc/bin-t1utils.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-t1utils.tlpsrc
@@ -1,11 +1,11 @@
name bin-t1utils
category TLCore
-docpattern f texmf/doc/man/man1/t1ascii.1
-docpattern f texmf/doc/man/man1/t1asm.1
-docpattern f texmf/doc/man/man1/t1binary.1
-docpattern f texmf/doc/man/man1/t1disasm.1
-docpattern f texmf/doc/man/man1/t1mac.1
-docpattern f texmf/doc/man/man1/t1unmac.1
+docpattern f texmf/doc/man/man1/t1ascii.*
+docpattern f texmf/doc/man/man1/t1asm.*
+docpattern f texmf/doc/man/man1/t1binary.*
+docpattern f texmf/doc/man/man1/t1disasm.*
+docpattern f texmf/doc/man/man1/t1mac.*
+docpattern f texmf/doc/man/man1/t1unmac.*
binpattern f bin/${ARCH}/t1ascii
binpattern f bin/${ARCH}/t1asm
binpattern f bin/${ARCH}/t1binary
diff --git a/Master/tlpkg/tlpsrc/bin-tex.tlpsrc b/Master/tlpkg/tlpsrc/bin-tex.tlpsrc
index 72df5598890..0350a7cdd47 100644
--- a/Master/tlpkg/tlpsrc/bin-tex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-tex.tlpsrc
@@ -3,5 +3,5 @@ category TLCore
depend bin-kpathsea
execute BuildFormat tex
runpattern f texmf/fmtutil/format.tex.cnf
-docpattern f texmf/doc/man/man1/tex.1
+docpattern f texmf/doc/man/man1/tex.*
binpattern f bin/${ARCH}/tex
diff --git a/Master/tlpkg/tlpsrc/bin-texdoc.tlpsrc b/Master/tlpkg/tlpsrc/bin-texdoc.tlpsrc
index 6ffa2054a4a..6749ceea885 100644
--- a/Master/tlpkg/tlpsrc/bin-texdoc.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-texdoc.tlpsrc
@@ -5,8 +5,8 @@ runpattern f texmf/scripts/tetex/texdoctk.pl
runpattern f texmf/scripts/texlive/texdoc.tlu
runpattern f texmf/texdoctk/*
runpattern f texmf/texdoc/*
-docpattern f texmf/doc/man/man1/texdoc.1
-docpattern f texmf/doc/man/man1/texdoctk.1
+docpattern f texmf/doc/man/man1/texdoc.*
+docpattern f texmf/doc/man/man1/texdoctk.*
binpattern f bin/${ARCH}/texdoc
binpattern f bin/${ARCH}/texdoctk
binpattern f bin/win32/texdocc
diff --git a/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc b/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
index 456eaf0fa13..a5c154415e2 100644
--- a/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
@@ -10,7 +10,7 @@ runpattern f texmf/scripts/texlive/rungs.tlu
runpattern d texmf/scripts/texlive/lua
runpattern d texmf/scripts/texlive/tlmgrgui
runpattern f texmf/web2c/updmap-hdr.cfg
-docpattern f texmf/doc/man/man1/tlmgr.1
+docpattern f texmf/doc/man/man1/tlmgr.*
binpattern f bin/${ARCH}/tlmgr
binpattern f bin/${ARCH}/rungs
binpattern f bin/win32/tl-w32-wrapper.texlua
diff --git a/Master/tlpkg/tlpsrc/bin-texware.tlpsrc b/Master/tlpkg/tlpsrc/bin-texware.tlpsrc
index 3301a9de28e..3beb1632e63 100644
--- a/Master/tlpkg/tlpsrc/bin-texware.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-texware.tlpsrc
@@ -1,6 +1,6 @@
name bin-texware
category TLCore
-docpattern f texmf/doc/man/man1/dvitype.1
-docpattern f texmf/doc/man/man1/pooltype.1
+docpattern f texmf/doc/man/man1/dvitype.*
+docpattern f texmf/doc/man/man1/pooltype.*
binpattern f bin/${ARCH}/dvitype
binpattern f bin/${ARCH}/pooltype
diff --git a/Master/tlpkg/tlpsrc/bin-tie.tlpsrc b/Master/tlpkg/tlpsrc/bin-tie.tlpsrc
index 098ed29f4df..885f5e75783 100644
--- a/Master/tlpkg/tlpsrc/bin-tie.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-tie.tlpsrc
@@ -1,5 +1,5 @@
name bin-tie
category TLCore
depend bin-kpathsea
-docpattern f texmf/doc/man/man1/tie.1
+docpattern f texmf/doc/man/man1/tie.*
binpattern f bin/${ARCH}/tie
diff --git a/Master/tlpkg/tlpsrc/bin-web.tlpsrc b/Master/tlpkg/tlpsrc/bin-web.tlpsrc
index 054801bac5a..2e1a6257160 100644
--- a/Master/tlpkg/tlpsrc/bin-web.tlpsrc
+++ b/Master/tlpkg/tlpsrc/bin-web.tlpsrc
@@ -1,7 +1,7 @@
name bin-web
category TLCore
depend bin-kpathsea
-docpattern f texmf/doc/man/man1/tangle.1
-docpattern f texmf/doc/man/man1/weave.1
+docpattern f texmf/doc/man/man1/tangle.*
+docpattern f texmf/doc/man/man1/weave.*
binpattern f bin/${ARCH}/tangle
binpattern f bin/${ARCH}/weave
diff --git a/Master/tlpkg/tlpsrc/mkjobtexmf.tlpsrc b/Master/tlpkg/tlpsrc/mkjobtexmf.tlpsrc
index 23ed43b0427..3ede184de9d 100644
--- a/Master/tlpkg/tlpsrc/mkjobtexmf.tlpsrc
+++ b/Master/tlpkg/tlpsrc/mkjobtexmf.tlpsrc
@@ -1,6 +1,6 @@
name mkjobtexmf
category Package
-docpattern f texmf/doc/man/man1/mkjobtexmf.1
+binpattern f bin/${ARCH}/mkjobtexmf
docpattern d texmf-dist/doc/generic/mkjobtexmf
+docpattern f texmf/doc/man/man1/mkjobtexmf.*
runpattern d texmf-dist/scripts/mkjobtexmf
-binpattern f bin/${ARCH}/mkjobtexmf
diff --git a/Master/tlpkg/tlpsrc/pdftex.tlpsrc b/Master/tlpkg/tlpsrc/pdftex.tlpsrc
index cb204c09ae2..721b2c8a9c6 100644
--- a/Master/tlpkg/tlpsrc/pdftex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/pdftex.tlpsrc
@@ -7,9 +7,9 @@ runpattern f texmf/fonts/map/pdftex/updmap/*
runpattern f texmf/tex/generic/config/pdftex*.tex
runpattern f texmf/tex/generic/pdftex/*
runpattern d texmf/scripts/simpdftex
-docpattern f texmf/doc/man/man1/etex.1
-docpattern f texmf/doc/man/man1/pdfetex.1
-docpattern f texmf/doc/man/man1/pdftex.1
+docpattern f texmf/doc/man/man1/etex.*
+docpattern f texmf/doc/man/man1/pdfetex.*
+docpattern f texmf/doc/man/man1/pdftex.*
docpattern d texmf-dist/doc/pdftex
binpattern f bin/${ARCH}/etex
binpattern f bin/${ARCH}/pdfetex
diff --git a/Master/tlpkg/tlpsrc/texinfo.tlpsrc b/Master/tlpkg/tlpsrc/texinfo.tlpsrc
index 4629948e465..84b749c6493 100644
--- a/Master/tlpkg/tlpsrc/texinfo.tlpsrc
+++ b/Master/tlpkg/tlpsrc/texinfo.tlpsrc
@@ -6,15 +6,15 @@ docpattern f texmf/doc/info/info-stnd.info
docpattern f texmf/doc/info/info.info
docpattern f texmf/doc/info/texdraw.info
docpattern f texmf/doc/info/texi*.info
-docpattern f texmf/doc/man/man1/info.1
-docpattern f texmf/doc/man/man1/infokey.1
-docpattern f texmf/doc/man/man1/install-info.1
-docpattern f texmf/doc/man/man1/makeinfo.1
-docpattern f texmf/doc/man/man1/texi2dvi.1
-docpattern f texmf/doc/man/man1/texi2pdf.1
-docpattern f texmf/doc/man/man1/texindex.1
-docpattern f texmf/doc/man/man5/info.5
-docpattern f texmf/doc/man/man5/texinfo.5
+docpattern f texmf/doc/man/man1/info.*
+docpattern f texmf/doc/man/man1/infokey.*
+docpattern f texmf/doc/man/man1/install-info.*
+docpattern f texmf/doc/man/man1/makeinfo.*
+docpattern f texmf/doc/man/man1/texi2dvi.*
+docpattern f texmf/doc/man/man1/texi2pdf.*
+docpattern f texmf/doc/man/man1/texindex.*
+docpattern f texmf/doc/man/man5/info.*
+docpattern f texmf/doc/man/man5/texinfo.*
docpattern f texmf/doc/texinfo/*
binpattern f bin/${ARCH}/info
binpattern f bin/${ARCH}/infokey
diff --git a/Master/tlpkg/tlpsrc/thumbpdf.tlpsrc b/Master/tlpkg/tlpsrc/thumbpdf.tlpsrc
index 98b7d21625d..e5a9d1129d5 100644
--- a/Master/tlpkg/tlpsrc/thumbpdf.tlpsrc
+++ b/Master/tlpkg/tlpsrc/thumbpdf.tlpsrc
@@ -1,4 +1,4 @@
name thumbpdf
category Package
binpattern f bin/${ARCH}/thumbpdf
-docpattern +f texmf/doc/man/man1/thumbpdf.1
+docpattern +f texmf/doc/man/man1/thumbpdf.*
diff --git a/Master/tlpkg/tlpsrc/xindy.tlpsrc b/Master/tlpkg/tlpsrc/xindy.tlpsrc
index 0cc9d3231ab..6aecaf964b2 100644
--- a/Master/tlpkg/tlpsrc/xindy.tlpsrc
+++ b/Master/tlpkg/tlpsrc/xindy.tlpsrc
@@ -1,6 +1,6 @@
name xindy
category TLCore
-docpattern f texmf/doc/man/man1/*xindy.1
+docpattern f texmf/doc/man/man1/*xindy.*
docpattern d texmf/doc/xindy
docpattern d texmf/xindy
runpattern d texmf/scripts/xindy