summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2007-11-22 03:17:37 +0000
committerNorbert Preining <preining@logic.at>2007-11-22 03:17:37 +0000
commit66a9535de0f9089248fcdfe28a7041f92d25cd6e (patch)
tree28ba5ce2778e70bb8405e64e1a0499f4aaf09c02 /Master/tlpkg
parent705aa6c16727ba02f401de3c2778a421bddc3288 (diff)
implement bin file splitting into seperate packages
git-svn-id: svn://tug.org/texlive/trunk@5542 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm261
-rwxr-xr-xMaster/tlpkg/bin/tlpsrc2tlpdb16
-rw-r--r--Master/tlpkg/texlive.tlpdb14430
3 files changed, 11921 insertions, 2786 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index 7e8766fb9fe..659cb45823d 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -47,6 +47,7 @@ sub new {
}
+
sub from_file {
my $self = shift;
if (@_ != 1) {
@@ -89,14 +90,14 @@ sub from_fh {
die("Continuation of $lastcmd not allowed, please fix tlpobj: line = $line!\n");
}
}
- if ($line =~ /^name\s*([-\w]+)$/) {
+ if ($line =~ /^name\s*([-.\w]+)$/) {
$name = "$1";
$lastcmd = "name";
$self->name("$name");
$started && die("Cannot have two name directives: $line!");
$started = 1;
} else {
- $started || die("First directive needs to be 'name'");
+ $started || die("First directive needs to be 'name', not $line");
if ($line =~ /^shortdesc\s+(.*)$/) {
$self->{'shortdesc'} .= "$1";
$lastcmd = "shortdesc";
@@ -359,38 +360,146 @@ sub writeout_simple {
}
}
+###################################################
+## OLD IMPLEMENTATION WITHOUT binfiles packaging split
+## where we generate the $name.$arch packages automatically
+##
+## sub make_container {
+## my ($self,$type,$instroot,$destdir,$containername,$relative) = @_;
+## if (not(defined($containername))) {
+## $containername = $self->name;
+## }
+## if (not(defined($destdir))) {
+## $destdir = TeXLive::TLPOBJ->containerdir;
+## }
+## die("Undefined instroot argument!") if (not(defined($instroot)));
+## # first build the arch independent part
+## $self->_make_container($type,$instroot,$destdir,$containername,$relative,"all");
+## # now the $pkg.$arch.zip
+## if ($self->is_arch_dependent) {
+## foreach my $t (keys %{$self->{'binfiles'}}) {
+## &TeXLive::TLUtils::debug("arch=$t");
+## $self->_make_container($type,$instroot,$destdir,"$containername.$t",$relative,$t);
+## }
+## }
+## }
+##
+## sub _make_container {
+## my ($self,$type,$instroot,$destdir,$containername,$relative,$arch) = @_;
+## my @files = ();
+## my $compresscmd;
+## my $tlpobjdir = "$InfraLocation/tlpobj";
+## if ($arch ne "all") {
+## push @files, @{$self->{'binfiles'}{$arch}};
+## } else {
+## push @files, $self->runfiles;
+## push @files, $self->docfiles;
+## push @files, $self->srcfiles;
+## }
+## # note that the Tpm.pm module had something like
+## # if ($zipname =~ /\/binary/ && $^O !~ /MSWin32/) {
+## # $zipcmd = "| zip -9\@ory "
+## # } else {
+## # $zipcmd = "| zip -9\@or "
+## # }
+## if ($^O =~ /MSWin32/) {
+## $nul = "nul";
+## } else {
+## $nul = "/dev/null";
+## }
+## @files = TeXLive::TLUtils::sort_uniq(@files);
+## if (!@files) {
+## &TeXLive::TLUtils::debug("Not creating empty container file for $containername");
+## return;
+## }
+## # we do relative packages ONLY if the files do NOT span multiple
+## # texmf trees. check this here
+## my $tltree;
+## if ($relative) {
+## foreach (@files) {
+## my $tmp;
+## ($tmp) = split m@/@;
+## if (defined($tltree) && ($tltree ne $tmp)) {
+## die "Not generating relative package for multiple tree spanning packages!\n";
+## } else {
+## $tltree = $tmp;
+## }
+## }
+## my @nf;
+## map { s@^$tltree/@@ ; push @nf, $_; } @files;
+## @files = @nf;
+## }
+## my $cwd = &getcwd;
+## if ("$destdir" !~ m@^/@) {
+## # we have an relative containerdir, so we have to make it absolute
+## $destdir = "$cwd/$destdir";
+## }
+## &mkpath("$destdir") if (! -d "$destdir");
+## chdir($instroot);
+## # in the relative case we have to chdir to the respective tltree
+## # and put the tlpobj into the root!
+## if ($relative) {
+## chdir("./$tltree");
+## $tlpobjdir = ".";
+## }
+## if ($arch eq "all") {
+## # we add the .tlpobj into the .tlpobj directory
+## my $removetlpobjdir = 0;
+## if (! -d "$tlpobjdir") {
+## &mkpath("$tlpobjdir");
+## $removetlpobjdir = 1;
+## }
+## open(TMP,">$tlpobjdir/$self->{'name'}.tlpobj") or die "Cannot create $tlpobjdir/$self->{'name'}.tlpobj";
+## $self->writeout(\*TMP);
+## close(TMP);
+## push @files, "$tlpobjdir/$self->{'name'}.tlpobj";
+## }
+## if ($type eq "zip") {
+## $containername .= ".zip";
+## if ($^O =~ /MSWin32/) {
+## $compresscmd = "| zip -9\@or $destdir/$containername > $nul"
+## } else {
+## $compresscmd = "| zip -9\@ory $destdir/$containername > $nul"
+## }
+## } elsif ($type eq "lzma") {
+## $containername .= ".tar.lzma";
+## $compresscmd = "| tar --create --files-from=- | lzma -c > $destdir/$containername ";
+## } else {
+## die("Container method $type unknown!\n");
+## }
+## unlink("$destdir/$containername");
+## print "$compresscmd\n" if ($::opt_debug);
+## open ZIP, $compresscmd ;
+## map {
+## if (! -f $_) {
+## print STDERR "!!!Error: non-existent $_\n";
+## } else {
+## print ZIP "$_\n";
+## }
+## } @files;
+## close ZIP;
+## if ($arch eq "all") {
+## # cleaning up
+## unlink("$tlpobjdir/$self->{'name'}.tlpobj");
+## rmdir("$tlpobjdir") if $removetlpobjdir;
+## }
+## chdir($cwd);
+## print "Done $containername\n" if ($::opt_debug);
+## }
+#######################################################
+
sub make_container {
my ($self,$type,$instroot,$destdir,$containername,$relative) = @_;
- if (not(defined($containername))) {
- $containername = $self->name;
- }
- if (not(defined($destdir))) {
- $destdir = TeXLive::TLPOBJ->containerdir;
- }
- die("Undefined instroot argument!") if (not(defined($instroot)));
- # first build the arch independent part
- $self->_make_container($type,$instroot,$destdir,$containername,$relative,"all");
- # now the $pkg.$arch.zip
- if ($self->is_arch_dependent) {
- foreach my $t (keys %{$self->{'binfiles'}}) {
- &TeXLive::TLUtils::debug("arch=$t");
- $self->_make_container($type,$instroot,$destdir,"$containername.$t",$relative,$t);
- }
- }
-}
-
-sub _make_container {
- my ($self,$type,$instroot,$destdir,$containername,$relative,$arch) = @_;
my @files = ();
my $compresscmd;
my $tlpobjdir = "$InfraLocation/tlpobj";
- if ($arch ne "all") {
- push @files, @{$self->{'binfiles'}{$arch}};
- } else {
- push @files, $self->runfiles;
- push @files, $self->docfiles;
- push @files, $self->srcfiles;
+ my %binf = $self->{'binfiles'};
+ foreach (keys %binf) {
+ push @files, @{$binf{$_}};
}
+ push @files, $self->runfiles;
+ push @files, $self->docfiles;
+ push @files, $self->srcfiles;
# note that the Tpm.pm module had something like
# if ($zipname =~ /\/binary/ && $^O !~ /MSWin32/) {
# $zipcmd = "| zip -9\@ory "
@@ -437,18 +546,16 @@ sub _make_container {
chdir("./$tltree");
$tlpobjdir = ".";
}
- if ($arch eq "all") {
- # we add the .tlpobj into the .tlpobj directory
- my $removetlpobjdir = 0;
- if (! -d "$tlpobjdir") {
- &mkpath("$tlpobjdir");
- $removetlpobjdir = 1;
- }
- open(TMP,">$tlpobjdir/$self->{'name'}.tlpobj") or die "Cannot create $tlpobjdir/$self->{'name'}.tlpobj";
- $self->writeout(\*TMP);
- close(TMP);
- push @files, "$tlpobjdir/$self->{'name'}.tlpobj";
+ # we add the .tlpobj into the .tlpobj directory
+ my $removetlpobjdir = 0;
+ if (! -d "$tlpobjdir") {
+ &mkpath("$tlpobjdir");
+ $removetlpobjdir = 1;
}
+ open(TMP,">$tlpobjdir/$self->{'name'}.tlpobj") or die "Cannot create $tlpobjdir/$self->{'name'}.tlpobj";
+ $self->writeout(\*TMP);
+ close(TMP);
+ push @files, "$tlpobjdir/$self->{'name'}.tlpobj";
if ($type eq "zip") {
$containername .= ".zip";
if ($^O =~ /MSWin32/) {
@@ -473,15 +580,14 @@ sub _make_container {
}
} @files;
close ZIP;
- if ($arch eq "all") {
- # cleaning up
- unlink("$tlpobjdir/$self->{'name'}.tlpobj");
- rmdir("$tlpobjdir") if $removetlpobjdir;
- }
+ # cleaning up
+ unlink("$tlpobjdir/$self->{'name'}.tlpobj");
+ rmdir("$tlpobjdir") if $removetlpobjdir;
chdir($cwd);
print "Done $containername\n" if ($::opt_debug);
}
+
sub is_arch_dependent {
my $self = shift;
if (keys %{$self->{'binfiles'}}) {
@@ -586,6 +692,24 @@ sub is_meta_package {
return 0;
}
+sub split_package {
+ my $self = shift;
+ my %binf = %{$self->binfiles};
+ my @retlist;
+ foreach $a (keys(%binf)) {
+ my $tlp = new TeXLive::TLPOBJ;
+ $tlp->name($self->name . ".$a");
+ $tlp->shortdesc("binary files of " . $self->name . " for $a");
+ $tlp->revision($self->revision);
+ $tlp->category($self->category);
+ $tlp->add_binfiles($a,@{$binf{$a}});
+ push @retlist, $tlp;
+ }
+ $self->clearbinfiles();
+ push @{$self->{'depends'}}, $self->name . ".ARCH";
+ return(@retlist);
+}
+
# Helpers.
#
@@ -660,7 +784,7 @@ sub catalogue {
}
sub srcfiles {
my $self = shift;
- if (@_) { @{ $self->{'srcfiles'} } = @_ }
+ if (@_) { $self->{'srcfiles'} = [ @_ ] }
return @{ $self->{'srcfiles'} };
}
sub srcsize {
@@ -668,6 +792,10 @@ sub srcsize {
if (@_) { $self->{'srcsize'} = shift }
return ( defined($self->{'srcsize'}) ? $self->{'srcsize'} : 0 );
}
+sub clearsrcfiles {
+ my $self = shift;
+ $self->{'srcfiles'} = [ ] ;
+}
sub add_srcfiles {
my ($self,@files) = @_;
$self->add_files("src",@files);
@@ -678,9 +806,13 @@ sub remove_srcfiles {
}
sub docfiles {
my $self = shift;
- if (@_) { @{ $self->{'docfiles'} } = @_ }
+ if (@_) { $self->{'docfiles'} = [ @_ ] }
return @{ $self->{'docfiles'} };
}
+sub cleardocfiles {
+ my $self = shift;
+ $self->{'docfiles'} = [ ] ;
+}
sub docsize {
my $self = shift;
if (@_) { $self->{'docsize'} = shift }
@@ -700,6 +832,10 @@ sub binfiles {
if (@_) { $self->{'binfiles'} = \%newfiles }
return $self->{'binfiles'};
}
+sub clearbinfiles {
+ my $self = shift;
+ $self->{'binfiles'} = { };
+}
sub binsize {
my $self = shift;
my %newsizes = @_;
@@ -722,9 +858,13 @@ sub remove_binfiles {
}
sub runfiles {
my $self = shift;
- if (@_) { @{ $self->{'runfiles'} } = @_ }
+ if (@_) { $self->{'runfiles'} = [ @_ ] }
return @{ $self->{'runfiles'} };
}
+sub clearrunfiles {
+ my $self = shift;
+ $self->{'runfiles'} = [ ] ;
+}
sub runsize {
my $self = shift;
if (@_) { $self->{'runsize'} = shift }
@@ -740,12 +880,12 @@ sub remove_runfiles {
}
sub depends {
my $self = shift;
- if (@_) { @{ $self->{'depends'} } = @_ }
+ if (@_) { $self->{'depends'} = [ @_ ] }
return @{ $self->{'depends'} };
}
sub executes {
my $self = shift;
- if (@_) { @{ $self->{'executes'} } = @_ }
+ if (@_) { $self->{'executes'} = [ @_ ] }
return @{ $self->{'executes'} };
}
sub containerdir {
@@ -947,7 +1087,7 @@ debugging function for comparison with C<tpm>/C<tlps>, will go away.
=item C<make_container($type,$instroot[, $destdir[, $containername[, $relative]]])>
-creates a container file of the arch B<independent> files in the C<TLPOBJ>
+creates a container file of the all files in the C<TLPOBJ>
in C<$destdir> (if not defined then C<< TLPOBJ->containerdir >> is used).
The C<$type> variable specifies the type of container to be used.
@@ -959,13 +1099,8 @@ where extension is either C<.zip> or C<.tar.lzma>, depending on the
setting of C<$type>. If no C<$containername> is specified the package name
is used.
-If the package contains C<"binfiles">, then container files for
-all archs containing B<only> the binfiles are created, and
-those container files name is C<$containername.$arch.$extension>
-
-All the arch independent container files B<also> contain the respective
-C<TLPOBJ> file in C<tlpkg/tlpobj/$name.tlpobj> so C<$containername.$extension> does
-contain this tlpobj file, while C<$containername.$arch.$extension> does NOT.
+All container files B<also> contain the respective
+C<TLPOBJ> file in C<tlpkg/tlpobj/$name.tlpobj>.
The argument C<$instroot> specifies the root of the installation from
which the files should be taken.
@@ -998,6 +1133,14 @@ adds information from a C<TeXCatalogue> object
(currently license, version, url, and updates docfiles with details and
languages tags if present in the Catalogue).
+=item C<split_package>
+
+splits off the binfiles of C<TLPOBJ> into new independent C<TLPOBJ> with
+the original name plus ".arch" for every arch for which binfiles are present.
+The original package is changed in two respects: the binfiles are removed
+(since they are now in the single name.arch packages), and an additional
+depend on "name.ARCH" is added. Note that the ARCH is a placeholder.
+
=item C<is_arch_dependent>
returns C<1> if there are C<binfiles>, otherwise C<0>.
@@ -1016,6 +1159,10 @@ architectures.
Returns true if the package is a meta package as defined in TLConfig
(Currently Collection and Scheme).
+=item C<clear_{src,run,doc,bin}files>
+
+Removes all the src/run/doc/binfiles from the C<TLPOBJ>.
+
=item C<{add,remove}_{src,run,doc}files(@files)>
adds or removes files to the respective list of files.
diff --git a/Master/tlpkg/bin/tlpsrc2tlpdb b/Master/tlpkg/bin/tlpsrc2tlpdb
index 686bab6bd9b..173fb554725 100755
--- a/Master/tlpkg/bin/tlpsrc2tlpdb
+++ b/Master/tlpkg/bin/tlpsrc2tlpdb
@@ -28,11 +28,13 @@ my $opt_catalogue = "";
chomp (my $opt_master = `cd $::mydir/../.. && pwd`);
our $opt_debug = 0;
my $help = 0;
+my $opt_nosplit = 0;
GetOptions(
"all!" => \$opt_all,
"master=s" => \$opt_master, # location of the TL tree
"catalogue=s" => \$opt_catalogue, # location of the TeX Catalogue
+ "nosplit!" => \$opt_nosplit,
"debug!", "help|?" => \$help) or pod2usage(1);
pod2usage(-exitstatus => 0, -verbose => 2) if $help;
@@ -87,7 +89,14 @@ sub main
# merge TeX Catalogue information
$tlp->update_from_catalogue ($tlc);
}
-
+
+ # split bin packages
+ if (not($opt_nosplit)) {
+ my @binobjs = $tlp->split_package;
+ foreach (@binobjs) {
+ $tldb->add_tlpobj($_);
+ }
+ }
$tldb->add_tlpobj ($tlp);
}
warn "\n";
@@ -134,6 +143,11 @@ gathered from the TeX Catalogue.
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<-nosplit>
+Do NOT split files with binaries into several packages, one for the arch
+independent and one for each of the architectures with only the respective
+binaries.
+
=back
The standard options C<-help> and C<-debug> are also accepted.
diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb
index e50e356c209..a1c02ef094c 100644
--- a/Master/tlpkg/texlive.tlpdb
+++ b/Master/tlpkg/texlive.tlpdb
@@ -9,6 +9,7 @@ longdesc $1\ldotp\ldotp m$, or $\{j:1\leq j\leq m\}$, and that journal
longdesc you're submitting to might want something else entirely. \otm{}
longdesc provides an interface that makes changing from one to another a
longdesc one-line change.
+depend 12many.ARCH
docfiles size=98
texmf-dist/doc/latex/12many/12many.pdf
texmf-dist/doc/latex/12many/README
@@ -29,6 +30,7 @@ shortdesc LaTeX document shell for ANU final exam
longdesc This LaTeX document shell is created for the standard
longdesc formatting of final exams in The Australian National
longdesc University.
+depend ANUfinalexam.ARCH
docfiles size=2
texmf-dist/doc/latex/ANUfinalexam/ANUfinalexam.tex
texmf-dist/doc/latex/ANUfinalexam/README
@@ -48,6 +50,7 @@ longdesc macros for mathematical texts; – layout providing a non-empty
longdesc parskip with extended length corrections and new section
longdesc definition commands; – easy label creation for counters; and
longdesc – german language tools and predefined abbreviations.
+depend AkkTeX.ARCH
docfiles size=1
texmf-dist/doc/latex/AkkTeX/README details="Bundle README"
runfiles size=37
@@ -85,6 +88,7 @@ catalogue-license lppl
name Asana-Math
category Package
revision 5445
+depend Asana-Math.ARCH
docfiles size=1
texmf-dist/doc/fonts/Asana-Math/README.1ST
runfiles size=90
@@ -99,6 +103,7 @@ depend garuda
depend norasi
depend uhc
depend wadalab
+depend CJK.ARCH
docfiles size=728
texmf-dist/doc/latex/CJK/ChangeLog
texmf-dist/doc/latex/CJK/MANIFEST
@@ -441,6 +446,7 @@ runfiles size=274
name ESIEEcv
category Package
revision 1487
+depend ESIEEcv.ARCH
docfiles size=4
texmf-dist/doc/latex/ESIEEcv/cvtest.dvi
texmf-dist/doc/latex/ESIEEcv/cvtest.tex
@@ -453,6 +459,7 @@ runfiles size=1
name FAQ-en
category Documentation
revision 2808
+depend FAQ-en.ARCH
docfiles size=1568
texmf-doc/doc/english/FAQ-en/00readme
texmf-doc/doc/english/FAQ-en/CHANGES-3.11
@@ -902,6 +909,7 @@ docfiles size=1568
name FAQ-fr
category Documentation
revision 16
+depend FAQ-fr.ARCH
docfiles size=135
texmf-doc/doc/french/FAQ-fr/docs-francaises
texmf-doc/doc/french/FAQ-fr/part1
@@ -914,6 +922,7 @@ docfiles size=135
name FAQ-ge
category Documentation
revision 16
+depend FAQ-ge.ARCH
docfiles size=762
texmf-doc/doc/german/FAQ-ge/de-tex-faq.pdf
texmf-doc/doc/german/FAQ-ge/html/allgemein.html
@@ -961,6 +970,7 @@ docfiles size=762
name GuIT
category Package
revision 1606
+depend GuIT.ARCH
docfiles size=85
texmf-dist/doc/latex/GuIT/README
texmf-dist/doc/latex/GuIT/guit.pdf
@@ -976,6 +986,7 @@ runfiles size=4
name HA-prosper
category Package
revision 633
+depend HA-prosper.ARCH
docfiles size=62
texmf-dist/doc/latex/HA-prosper/HA-prosper.pdf
texmf-dist/doc/latex/HA-prosper/HAPBigtest.tex
@@ -1011,6 +1022,7 @@ revision 3551
shortdesc Macros for IEEE conference proceedings.
longdesc The IEEEconf class implements the formatting dictated by the
longdesc IEEE Computer Society Press for conference proceedings.
+depend IEEEconf.ARCH
docfiles size=58
texmf-dist/doc/latex/IEEEconf/IEEEconf.pdf details="Package documentation"
texmf-dist/doc/latex/IEEEconf/README details="Readme"
@@ -1032,6 +1044,7 @@ longdesc This IEEEtran.cls is now the official LaTeX class for authors
longdesc of the Institute of Electrical and Electronics Engineers (IEEE)
longdesc transactions journals and conferences. IEEEtran.cls is mirrored
longdesc within IEEE's site as well.
+depend IEEEtran.ARCH
docfiles size=476
texmf-dist/doc/latex/IEEEtran/IEEEtran_HOWTO.pdf details="Package documentation"
texmf-dist/doc/latex/IEEEtran/IEEEtran_bst_HOWTO.pdf
@@ -1071,6 +1084,7 @@ catalogue-license lppl
name MemoirChapStyles
category Documentation
revision 2240
+depend MemoirChapStyles.ARCH
docfiles size=206
texmf-doc/doc/english/MemoirChapStyles/MemoirChapStyles.pdf
texmf-doc/doc/english/MemoirChapStyles/MemoirChapStyles.tex
@@ -1083,6 +1097,7 @@ shortdesc Package to typeset SI units, numbers and angles.
longdesc This package typesets SI units, numbers and angles according to
longdesc the ISO requirements. Care is taken with font setup and
longdesc requirements, and language customisation is available.
+depend SIstyle.ARCH
docfiles size=233
texmf-dist/doc/latex/SIstyle/README
texmf-dist/doc/latex/SIstyle/SIstyle-2.3.pdf
@@ -1104,6 +1119,7 @@ catalogue-license lppl
name SIunits
category Package
revision 637
+depend SIunits.ARCH
docfiles size=131
texmf-dist/doc/latex/SIunits/SIunits.pdf
texmf-dist/doc/latex/SIunits/readme.txt
@@ -1120,6 +1136,7 @@ name Susy
category Package
revision 5503
shortdesc Macros for supersymmetry-related work.
+depend Susy.ARCH
docfiles size=1
texmf-dist/doc/latex/Susy/README
runfiles size=1
@@ -1132,6 +1149,7 @@ catalogue-license lppl
name Tabbing
category Package
revision 638
+depend Tabbing.ARCH
docfiles size=1
texmf-dist/doc/latex/Tabbing/00readme
srcfiles size=3
@@ -1143,6 +1161,7 @@ runfiles size=1
name Type1fonts
category Documentation
revision 19
+depend Type1fonts.ARCH
docfiles size=216
texmf-doc/doc/english/Type1fonts/README
texmf-doc/doc/english/Type1fonts/figuide-examples.tar.gz
@@ -1158,6 +1177,7 @@ longdesc that in math formulas the symbols appear in the right size. Can
longdesc also create a PostScript header file for dvips which ensures
longdesc that the poster will be printed in the right size. Supported
longdesc sizes are DIN A0, DIN A1, DIN A2 and DIN A3.
+depend a0poster.ARCH
docfiles size=47
texmf-dist/doc/latex/a0poster/a0.pdf details="Package documentation (German)" language="de"
texmf-dist/doc/latex/a0poster/a0.tex
@@ -1179,6 +1199,7 @@ longdesc The bundle provides a document class for preparing papers for
longdesc American Astronomical Society publications. Authors who wish to
longdesc submit papers to AAS journals are strongly urged to use this
longdesc class in preference to any of the alternatives available.
+depend aastex.ARCH
docfiles size=559
texmf-dist/doc/latex/aastex/README details="Readme"
texmf-dist/doc/latex/aastex/aasclass.tex
@@ -1213,6 +1234,7 @@ longdesc Abbr is a set of some simple macros to support abbreviations in
longdesc Plain or LaTeX. It allows writing e.g. \<TEX> instead of \TeX,
longdesc hence frees users from having to escape space after
longdesc parameterless macros.
+depend abbr.ARCH
docfiles size=1
texmf-dist/doc/generic/abbr/README
runfiles size=2
@@ -1231,6 +1253,7 @@ longdesc ABC Plus language. The package will then employ the \write18
longdesc facility to convert your notation to PostScript (using the
longdesc established utility abcm2ps) and hence to the format needed for
longdesc inclusion in your document.
+depend abc.ARCH
docfiles size=43
texmf-dist/doc/latex/abc/README details="Readme"
texmf-dist/doc/latex/abc/abc.pdf details="Package documentation"
@@ -1253,6 +1276,7 @@ shortdesc Control the typesetting of the abstract environment.
longdesc The abstract package gives you control over the typesetting of
longdesc the abstract environment, and in particular provides for a one
longdesc column abstract in a two column paper.
+depend abstract.ARCH
docfiles size=44
texmf-dist/doc/latex/abstract/README details="Package Readme"
texmf-dist/doc/latex/abstract/abstract.pdf details="Package documentation"
@@ -1269,6 +1293,7 @@ catalogue-license lppl
name abstyles
category Package
revision 4150
+depend abstyles.ARCH
docfiles size=74
texmf-dist/doc/bibtex/abstyles/README
texmf-dist/doc/bibtex/abstyles/a4c.sty
@@ -1307,6 +1332,7 @@ longdesc accents, and over the provision of kerning information for new
longdesc characters; mkt1font also generates suitable "hints" to enhance
longdesc quality at small sizes or poor resolutions. The programs are
longdesc written in Perl.
+depend accfonts.ARCH
docfiles size=31
texmf-dist/doc/latex/accfonts/CHANGES
texmf-dist/doc/latex/accfonts/COPYING
@@ -1332,6 +1358,7 @@ longdesc Provides a BibTeX style in accordance with the requirements of
longdesc the journals of the American Chemical Society, along with a
longdesc supporting LaTeX package. Also provided is a BibTeX style file
longdesc to be used for bibliography database listings.
+depend achemso.ARCH
docfiles size=40
texmf-dist/doc/latex/achemso/README details="Package Readme"
texmf-dist/doc/latex/achemso/achemso.pdf details="Package documentation"
@@ -1359,6 +1386,7 @@ longdesc This class may be used to typeset articles to be published in
longdesc the proceedings of ACM (Association for Computing Machinery)
longdesc conferences and workshops. The layout produced by the acmconf
longdesc class is based on the ACM’s own specification.
+depend acmconf.ARCH
docfiles size=57
texmf-dist/doc/latex/acmconf/README
texmf-dist/doc/latex/acmconf/THIS-IS-VERSION-1.3
@@ -1398,6 +1426,7 @@ longdesc transactions. Users who have prepared their document with LaTeX
longdesc can, with very little effort, produce camera-ready copy for
longdesc these journals. The accompanying BibTeX style is based on the
longdesc chicago style.
+depend acmtrans.ARCH
docfiles size=55
texmf-dist/doc/latex/acmtrans/acmtr2e.pdf details="Documentation in the form of an ACM paper"
texmf-dist/doc/latex/acmtrans/acmtr2e.tex
@@ -1418,6 +1447,7 @@ longdesc This package ensures that all acronyms used in the text are
longdesc spelled out in full at least once. It also provides an
longdesc environment to build a list of acronyms used. The package is
longdesc compatible with pdf bookmarks.
+depend acronym.ARCH
docfiles size=42
texmf-dist/doc/latex/acronym/CHANGES
texmf-dist/doc/latex/acronym/README details="Package Readme"
@@ -1443,6 +1473,7 @@ longdesc intended for the 2006 conference in Adelaide, Australia. The
longdesc class is based on article with more flexible front-matter, and
longdesc can be customised for conferences in future years with a header
longdesc file.
+depend active-conf.ARCH
docfiles size=150
texmf-dist/doc/latex/active-conf/README details="Readme"
texmf-dist/doc/latex/active-conf/active-conf.pdf details="Class documentation:"
@@ -1475,6 +1506,7 @@ longdesc removing space in the textblock of the page it's used on. E.g.,
longdesc adding an extra line of text to the page so that a section fits
longdesc better on the next page. It will also add space to the facing
longdesc page in a two-sided document.
+depend addlines.ARCH
docfiles size=26
texmf-dist/doc/latex/addlines/README details="Readme"
texmf-dist/doc/latex/addlines/addlines-example.ltx
@@ -1499,6 +1531,7 @@ longdesc for printing as address books or included into letter classes
longdesc like akletter or scrletter2. Adrconv will sort the data either
longdesc by name or birthday and create output files in various formats
longdesc for address books or time planers.
+depend adrconv.ARCH
docfiles size=39
texmf-dist/doc/latex/adrconv/adrconv.tex
texmf-dist/doc/latex/adrconv/adrdir.tex
@@ -1530,6 +1563,7 @@ revision 1487
shortdesc Using address lists in LaTeX.
longdesc The package provides a read-file command (\ForEachAdress) and a
longdesc set of commands for unpicking the address data in the file.
+depend adrlist.ARCH
docfiles size=3
texmf-dist/doc/latex/adrlist/adrlist.dvi
srcfiles size=4
@@ -1554,6 +1588,7 @@ longdesc was to produce PDF files using Adobe Type 1 versions of the CM
longdesc fonts instead of bitmapped EC fonts. Note that direct
longdesc substitutes for the bitmapped fonts are now available, via the
longdesc CM-super, Latin Modern and CM-LGC font sets.
+depend ae.ARCH
docfiles size=14
texmf-dist/doc/fonts/ae/COPYING
texmf-dist/doc/fonts/ae/MANIFEST
@@ -1731,6 +1766,7 @@ longdesc The package adds several kinds of guillemets (Polish cmr,
longdesc Cyrillic cmr, lasy and ec) to the ae fonts. It is useful if you
longdesc are using the ae fonts to produce PDF files, since the
longdesc additional guillemets exist in Type 1 versions.
+depend aeguill.ARCH
docfiles size=6
texmf-dist/doc/latex/aeguill/README
texmf-dist/doc/latex/aeguill/guil-test1.dvi
@@ -1752,6 +1788,7 @@ shortdesc Styles for American Geophysical Union.
longdesc This is an extension to the AGU’s own published styles; this
longdesc extension provides extra facilities and improved usability, by
longdesc comparison with the AGU’s offering.
+depend aguplus.ARCH
docfiles size=23
texmf-dist/doc/latex/aguplus/README.aguplus
texmf-dist/doc/latex/aguplus/aguplus.tex
@@ -1772,6 +1809,7 @@ catalogue-license lppl
name ai
category Package
revision 111
+depend ai.ARCH
execute addMap aifonts.map
docfiles size=3
texmf-dist/doc/fonts/ai/README
@@ -2070,6 +2108,7 @@ longdesc A bundle of LaTeX/BibTeX files and sample documents to aid
longdesc those producing papers and journal articles according to the
longdesc guidelines of the American Institute of Aeronautics and
longdesc Astronautics (AIAA).
+depend aiaa.ARCH
docfiles size=494
texmf-dist/doc/latex/aiaa/README details="Package README"
texmf-dist/doc/latex/aiaa/aiaa.pdf details="Package documentation"
@@ -2127,6 +2166,7 @@ longdesc binders that cover a part of the left margin. The class’s
longdesc handling of dates has inspired an extended version of date-
longdesc handling in the isodate package. The class supersedes an
longdesc earlier class called myletter.
+depend akletter.ARCH
docfiles size=72
texmf-dist/doc/latex/akletter/akletter.dvi
texmf-dist/doc/latex/akletter/akletter.tex
@@ -2163,6 +2203,7 @@ longdesc ALaTeX provides the user with all the functionality of LaTeX
longdesc but with one small change: a general, legal way to override
longdesc standard LaTeX behavior without altering source files. ALaTeX
longdesc can interpret official LaTeX markup in an abstract way.
+depend alatex.ARCH
docfiles size=1
texmf-dist/doc/alatex/base/alatex.tex
srcfiles size=23
@@ -2189,6 +2230,7 @@ catalogue-license gpl
name albertus
category Package
revision 90
+depend albertus.ARCH
runfiles size=24
texmf-dist/fonts/tfm/cg/albertus/ale10u.tfm
texmf-dist/fonts/tfm/cg/albertus/ale6j.tfm
@@ -2213,6 +2255,7 @@ revision 77
shortdesc Extended TeX.
longdesc An development of omega, using most of the extensions of TeX
longdesc itself developed for e-TeX.
+depend aleph.ARCH
docfiles size=2
texmf-dist/doc/aleph/base/News
texmf-dist/doc/aleph/base/readme.txt
@@ -2231,6 +2274,7 @@ longdesc automatically numbered lines. The algorithm environment can be
longdesc used to encapsulate the algtab environment algorithm in a
longdesc floating body together with a header, a caption, etc.
longdesc \listofalgorithms is defined.
+depend alg.ARCH
docfiles size=1
texmf-dist/doc/latex/alg/readme.txt
srcfiles size=6
@@ -2246,6 +2290,7 @@ catalogue-license lppl
name algorithm2e
category Package
revision 655
+depend algorithm2e.ARCH
docfiles size=103
texmf-dist/doc/latex/algorithm2e/README
texmf-dist/doc/latex/algorithm2e/algorithm2e.pdf
@@ -2273,6 +2318,7 @@ longdesc papers. It has built in support for Pseudocode, Pascal, C, and
longdesc powerful means to create definitions for any programming
longdesc language. You can easily adapt a Pseudocode style to your
longdesc native language.
+depend algorithmicx.ARCH
docfiles size=61
texmf-dist/doc/latex/algorithmicx/README details="Package README"
texmf-dist/doc/latex/algorithmicx/algorithmicx.pdf details="Package documentation"
@@ -2298,6 +2344,7 @@ longdesc algorithm package defines a floating algorithm environment
longdesc designed to work with the algorithmic style. Within an
longdesc algorithmic environment a number of commands for typesetting
longdesc popular algorithmic constructs are available.
+depend algorithms.ARCH
docfiles size=113
texmf-dist/doc/latex/algorithms/COPYING
texmf-dist/doc/latex/algorithms/README
@@ -2320,6 +2367,7 @@ longdesc This large collection of fonts (in Adobe Type 1 format), with
longdesc the LaTeX package gives access to almost all runes ever used in
longdesc Europe. The bundle covers not only the main forms but also a
longdesc lot of varieties.
+depend allrunes.ARCH
execute addMixedMap allrunes.map
docfiles size=259
texmf-dist/doc/fonts/allrunes/README details="Package Readme"
@@ -2834,6 +2882,7 @@ longdesc similar to alphanum.sty, but you can use the standard LaTeX
longdesc sectioning commands. Thus it is possible to switch numbering
longdesc schemes easily. Greek letters, double letters (bb) and
longdesc different delimiters around them are supported.
+depend alnumsec.ARCH
docfiles size=37
texmf-dist/doc/latex/alnumsec/README
texmf-dist/doc/latex/alnumsec/alnumsec.pdf
@@ -2855,6 +2904,7 @@ longdesc The package provides a replacement for that part of psnfss and
longdesc mfnfss that changes the default font. The package is
longdesc distributed together with the psfont package, by the same
longdesc author.
+depend altfont.ARCH
docfiles size=59
texmf-dist/doc/latex/altfont/README details="Readme"
texmf-dist/doc/latex/altfont/altfont.pdf details="Package documentation"
@@ -2883,6 +2933,7 @@ longdesc article using latex for the American Meteorological Society
longdesc journals. The article and bibliography style files are provided
longdesc along with two PDFs describing the use of the files and a blank
longdesc template for authors to use in writing their article.
+depend ametsoc.ARCH
docfiles size=74
texmf-dist/doc/latex/ametsoc/AMS_References.pdf details="Bibliography style documentation"
texmf-dist/doc/latex/ametsoc/README details="Readme"
@@ -2903,6 +2954,7 @@ catalogue-license lppl
name ams
category Package
revision 5189
+depend ams.ARCH
execute addMixedMap ams-bsr-interpolated.map
execute addMixedMap ams-bsr.map
execute addMixedMap ams-cmcsc-bsr-interpolated.map
@@ -3206,6 +3258,7 @@ longdesc lets you move the authors’ affiliations either just below the
longdesc authors’ names on the front page or as footnotes on the first
longdesc page. The email addresses are always listed as a footnote on
longdesc the front page.
+depend amsaddr.ARCH
docfiles size=17
texmf-dist/doc/latex/amsaddr/README details="Readme"
texmf-dist/doc/latex/amsaddr/amsaddr.pdf details="Package documentation"
@@ -3226,6 +3279,7 @@ shortdesc AMS document classes for LaTeX.
longdesc This directory contains two AMS classes, amsart and amsproc,
longdesc together with some supporting material. The material is made
longdesc available as part of the AMS-LaTeX distribution.
+depend amscls.ARCH
docfiles size=451
texmf-dist/doc/latex/amscls/amsart.template
texmf-dist/doc/latex/amscls/amsbook.template
@@ -3281,6 +3335,7 @@ longdesc Washington); Euler mathematical fonts. Adobe Type 1 versions of
longdesc these fonts are also available, and bitmap PK font versions are
longdesc available via the fonts' home page
depend ams
+depend amsfonts.ARCH
docfiles size=238
texmf-dist/doc/fonts/amsfonts/READ.ME
texmf-dist/doc/fonts/amsfonts/README-amsps.txt
@@ -3353,6 +3408,7 @@ longdesc This is a tutorial on writing papers, etc., using the AMS
longdesc classes and of course amsmath and the other AMS packages. Note
longdesc that the document describes AMS-LaTeX version 1.2, which is no
longdesc longer current.
+depend amslatex-primer.ARCH
docfiles size=16
texmf-doc/doc/english/amslatex-primer/amshelp.tex
texmf-doc/doc/english/amslatex-primer/template.tex
@@ -3364,6 +3420,7 @@ catalogue-license unknown
name amsldoc-it
category Documentation
revision 1620
+depend amsldoc-it.ARCH
docfiles size=105
texmf-doc/doc/italian/amsldoc-it/itamsldoc.pdf
texmf-doc/doc/italian/amsldoc-it/itamsldoc.tex
@@ -3371,6 +3428,7 @@ docfiles size=105
name amsldoc-vn
category Documentation
revision 12
+depend amsldoc-vn.ARCH
docfiles size=370
texmf-doc/doc/vietnamese/amsldoc-vn/Makefile
texmf-doc/doc/vietnamese/amsldoc-vn/README
@@ -3396,6 +3454,7 @@ longdesc contributed packages add still further to its appeal; examples
longdesc are empheq, which provides functions for decorating and
longdesc highlighting mathematics, and ntheorem, for specifying theorem
longdesc (and similar) definitions.
+depend amsmath.ARCH
docfiles size=679
texmf-dist/doc/latex/amsmath/amsbsy.pdf
texmf-dist/doc/latex/amsmath/amscd.pdf
@@ -3444,6 +3503,7 @@ catalogue-license lppl
name amsmath-it
category Documentation
revision 14
+depend amsmath-it.ARCH
docfiles size=11
texmf-doc/doc/italian/amsmath-it/amsmath.faq
texmf-doc/doc/italian/amsmath-it/diffs-m_it.txt
@@ -3457,6 +3517,7 @@ longdesc archival data format similar to the format of BibTeX database
longdesc files, but adapted to make direct processing by LaTeX easier.
longdesc The package can be used either in conjunction with BibTeX or as
longdesc a replacement for BibTeX.
+depend amsrefs.ARCH
docfiles size=622
texmf-dist/doc/latex/amsrefs/amsrdoc.pdf details="Package documentation"
texmf-dist/doc/latex/amsrefs/amsrefs.faq
@@ -3522,6 +3583,7 @@ longdesc It is based on Plain TeX, and provides many features for
longdesc producing more professional-looking maths formulas with less
longdesc burden on authors. More recently, the focus of attention has
longdesc switched to amslatex, but AMSTeX remains as a working system.
+depend amstex.ARCH
docfiles size=185
texmf-dist/doc/amstex/base/README
texmf-dist/doc/amstex/base/amsguide.pdf
@@ -3547,6 +3609,7 @@ catalogue-license lppl
name amsthdoc-it
category Documentation
revision 1622
+depend amsthdoc-it.ARCH
docfiles size=31
texmf-doc/doc/italian/amsthdoc-it/amsthdoc_it.pdf
texmf-doc/doc/italian/amsthdoc-it/amsthdoc_it.tex
@@ -3560,6 +3623,7 @@ longdesc JavaScript driven PDF animations from sets of graphics files or
longdesc from inline graphics, such as LaTeX picture environment,
longdesc PSTricks or pgf/TikZ generated pictures, or just from typeset
longdesc text.
+depend animate.ARCH
docfiles size=353
texmf-dist/doc/latex/animate/README details="Readme"
texmf-dist/doc/latex/animate/doc/animate.pdf details="Package documentation"
@@ -3588,6 +3652,7 @@ longdesc The package allows a lot of flexibility in constructing
longdesc question and answer sheets. (The author is no longer active
longdesc with TeX: the CTAN team can assign licence ownership to anyone
longdesc who wants to adopt the package.)
+depend answers.ARCH
docfiles size=10
texmf-dist/doc/latex/answers/ans1.tex
texmf-dist/doc/latex/answers/ans2.tex
@@ -3612,6 +3677,7 @@ catalogue-license unknown
name antiqua
category Package
revision 664
+depend antiqua.ARCH
execute addMap uaq.map
docfiles size=3
texmf-dist/doc/fonts/antiqua/README.base35
@@ -3655,6 +3721,7 @@ longdesc original omega package for use with Lambda, and provides extra
longdesc facilities (including Babel-like language switching, which
longdesc eases porting of LaTeX documents to Lambda).
depend omega
+depend antomega.ARCH
docfiles size=51
texmf-dist/doc/lambda/antomega/README details="Readme"
texmf-dist/doc/lambda/antomega/antomega.pdf
@@ -3780,6 +3847,7 @@ longdesc artist and a typographer Adam Półtawski. It was widely used
longdesc by Polish printing houses as long as metal types were in use
longdesc (until ca. the 'sixties). Perhaps the first complete font
longdesc family programmed and parametrized in MetaPost.
+depend antp.ARCH
execute addMap antp.map
docfiles size=22
texmf-dist/doc/fonts/antp/README.ENG details="Package README in English" language="en"
@@ -3822,6 +3890,7 @@ shortdesc Antykwa Toruńska: a Type 1 family of a Polish traditional type.
longdesc Antykwa Toruńska is a serif font designed by the late Polish
longdesc typographer Zygfryd Gardzielewski, reconstructed and digitized
longdesc as as Type 1.
+depend antt.ARCH
execute addMap antt.map
docfiles size=761
texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf details="Documentation in English:" language="en"
@@ -4340,6 +4409,7 @@ longdesc then scale the font to the size actually requested. Similar
longdesc functionality is available for the CM family, for the EC
longdesc family, or for either computer modern encoding; the present
longdesc package generalises the facility.
+depend anyfontsize.ARCH
docfiles size=1
texmf-dist/doc/latex/anyfontsize/README
runfiles size=1
@@ -4356,6 +4426,7 @@ shortdesc A simple package to set up document margins.
longdesc This package is considered obsolete; alternatives are the
longdesc typearea package from the koma-script bundle, or the geometry
longdesc package.
+depend anysize.ARCH
docfiles size=3
texmf-dist/doc/latex/anysize/README details="Package Readme"
texmf-dist/doc/latex/anysize/anysize.dvi
@@ -4380,6 +4451,7 @@ longdesc specifications for manuscripts or to the APA journal look found
longdesc in journals like the Journal of Experimental Psychology etc. In
longdesc addition, it provides regular LaTeX-like output with a few
longdesc enhancements and APA-motivated changes.
+depend apa.ARCH
docfiles size=10
texmf-dist/doc/latex/apa/README
texmf-dist/doc/latex/apa/apacls.txt details="Outline of the class:"
@@ -4408,6 +4480,7 @@ longdesc document. The package is compatible with chapterbib and (to
longdesc some extent) with hyperref (for limits of compatibility, see
longdesc the manual). The package also includes a means of generating an
longdesc author index for a document.
+depend apacite.ARCH
docfiles size=126
texmf-dist/doc/latex/apacite/README details="Package Readme"
texmf-dist/doc/latex/apacite/apacite.pdf details="Package documentation"
@@ -4441,6 +4514,7 @@ revision 4689
shortdesc Fonts for typesetting APL programs.
longdesc Includes macros for using the fonts, and the source of the
longdesc TUGboat paper (and of a ‘second thoughts’ version).
+depend apl.ARCH
srcfiles size=33
texmf-dist/source/fonts/apl/apldef.tex
texmf-dist/source/fonts/apl/aplstyle.tex
@@ -4481,6 +4555,7 @@ longdesc before the appendices are listed. The word `Appendices' or
longdesc similar can be typeset as a \part-like heading (page) in the
longdesc body. An appendices environment is provided which can be used
longdesc instead of the \appendix command.
+depend appendix.ARCH
docfiles size=49
texmf-dist/doc/latex/appendix/README details="Package Readme"
texmf-dist/doc/latex/appendix/appendix.pdf details="Package documentation"
@@ -4502,6 +4577,7 @@ longdesc Provides MetaFont files and a LaTeX package for producing and
longdesc using the uppercase A/R ligature as used by scientists and
longdesc engineers in the field of aeronautics as the symbol for
longdesc “aspect ratio”.
+depend ar.ARCH
docfiles size=2
texmf-dist/doc/latex/ar/ar.txt details="README"
runfiles size=22
@@ -4538,6 +4614,7 @@ longdesc Arabi will accept input in several 8-bit encodings, including
longdesc UTF-8. Arabi can make use of a wide variety of Arabic and Farsi
longdesc fonts; PDF files generated using Arabi may be searched, and
longdesc text may be copied from them and pasted elsewhere.
+depend arabi.ARCH
execute addMap arabi.map
docfiles size=1016
texmf-dist/doc/latex/arabi/README details="Readme"
@@ -4766,6 +4843,7 @@ longdesc Arabic and Hebrew fonts (provided both in Metafont format and
longdesc Adobe Type 1). The Arabic font is presently only available in
longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with
longdesc LaTeX.
+depend arabtex.ARCH
execute addMixedMap arabtex.map
docfiles size=128
texmf-dist/doc/latex/arabtex/announce.txt
@@ -4950,6 +5028,7 @@ longdesc typesetting the Holy Quran, typesetting bidirectional critical
longdesc editions (with ednotes), and information on various recommended
longdesc OpenType fonts for the Arabic script and for transliterating
longdesc Oriental languages.
+depend arabxetex.ARCH
docfiles size=148
texmf-dist/doc/xelatex/arabxetex/README details="Readme"
texmf-dist/doc/xelatex/arabxetex/arabtex-kurdish.maps
@@ -5100,6 +5179,7 @@ longdesc Ugaritic and Viking scripts. The bundle also includes a small
longdesc font for use in phonetic transcription of the archaic writings.
longdesc The bundle's own directory includes a font installation map
longdesc file for the whole collection.
+depend archaic.ARCH
execute addMap archaicprw.map
docfiles size=954
texmf-dist/doc/fonts/archaic/README.PRW details="A description of Peter Wilson's contribution"
@@ -5332,6 +5412,7 @@ longdesc The package provides two commands for placing an arc over
longdesc (\overarc) or under (\underarc) a piece of text. (The text may
longdesc be up to three letters long.) The commands generate an \hbox,
longdesc and may be used both in text and in maths formulae.
+depend arcs.ARCH
docfiles size=22
texmf-dist/doc/latex/arcs/README details="Package README"
texmf-dist/doc/latex/arcs/arcs.pdf details="Package documentation"
@@ -5363,6 +5444,7 @@ longdesc and thick stems. The style is very similar to the SliTeX font
longdesc lcmss, but heavier. Arev is one of a very small number of sans-
longdesc font mathematics support packages. Others are cmbright, hvmath
longdesc and kerkis.
+depend arev.ARCH
execute addMap arev.map
docfiles size=232
texmf-dist/doc/fonts/arev/ArevSansLicense.txt
@@ -5470,6 +5552,7 @@ catalogue-license lppl
name armenian
category Package
revision 677
+depend armenian.ARCH
docfiles size=51
texmf-dist/doc/fonts/armenian/examples/latex/manual.tex
texmf-dist/doc/fonts/armenian/examples/latex/raffi.tex
@@ -5515,6 +5598,7 @@ longdesc These are font bundles for the Chinese Arphic fonts which work
longdesc with the CJK package. Arphic is actually the name of the
longdesc company that which created the fonts (and put them under a GPL-
longdesc like licence).
+depend arphic.ARCH
execute addMap bsmiu.map
execute addMap gbsnu.map
docfiles size=10
@@ -6321,6 +6405,7 @@ longdesc Fortran, Ada or C, and macros to manipulate them. Arrays can be
longdesc mono or bi-dimensional. This is useful for applications which
longdesc require high level programming techniques, like algorithmic
longdesc graphics programmed in the TeX language.
+depend arrayjob.ARCH
docfiles size=133
texmf-dist/doc/generic/arrayjob/README details="Package Readme"
texmf-dist/doc/generic/arrayjob/arrayjob.doc
@@ -6342,6 +6427,7 @@ longdesc \hdashline and \cdashline while vertical ones can be specified
longdesc as a part of preamble using ‘:’. The shape of dashed lines
longdesc may be controlled through style parameters or optional
longdesc arguments. The package is compatible with array and colortab.
+depend arydshln.ARCH
docfiles size=158
texmf-dist/doc/latex/arydshln/README
texmf-dist/doc/latex/arydshln/arydshln-man.pdf details="User manual:"
@@ -6365,6 +6451,7 @@ longdesc A class and BibTeX style for submissions to the Transactions of
longdesc the American Society of Agricultural Engineers. Also included
longdesc is the MetaFont source of a slanted Computer Modern Caps and
longdesc Small Caps font.
+depend asaetr.ARCH
docfiles size=7
texmf-dist/doc/latex/asaetr/asaetr.dvi
texmf-dist/doc/latex/asaetr/asaetr.tex
@@ -6391,6 +6478,7 @@ longdesc Civil Engineers (ASCE). These are unofficial files, not
longdesc sanctioned by that organization, and the files specifically
longdesc give this caveat. Also included is a short
longdesc documentation/example of how to use the class.
+depend ascelike.ARCH
docfiles size=75
texmf-dist/doc/latex/ascelike/Readme
texmf-dist/doc/latex/ascelike/ascexmpl.pdf
@@ -6412,6 +6500,7 @@ shortdesc Support for IBM "standard ASCII" font.
longdesc This package makes available the graphical reprensentation of
longdesc the ASCII characters as defined in the IBM PC Code Page 437 C0
longdesc Graphics. A Type 1 font of the glyphs is included.
+depend ascii.ARCH
execute addMap ascii.map
docfiles size=123
texmf-dist/doc/fonts/ascii/ascii2006.pdf
@@ -6434,6 +6523,7 @@ category Package
revision 681
shortdesc A class file for typesetting homework and lab assignments
longdesc A class file for typesetting homework and lab assignments.
+depend assignment.ARCH
docfiles size=30
texmf-dist/doc/latex/assignment/Changelog
texmf-dist/doc/latex/assignment/LICENSE
@@ -6455,6 +6545,7 @@ longdesc Astrosym is a font containing astronomical symbols, including
longdesc those used for the planets, four planetoids, the phases of the
longdesc moon, the signs of the zodiac, and some additional symbols. The
longdesc font is distributed in MetaFont format.
+depend astro.ARCH
docfiles size=3
texmf-dist/doc/fonts/astro/astrosym.tex
texmf-dist/doc/fonts/astro/astrosym.txt
@@ -6474,6 +6565,7 @@ catalogue-license unknown
name atqolive
category Package
revision 90
+depend atqolive.ARCH
runfiles size=36
texmf-dist/fonts/tfm/cg/atqolive/anb10u.tfm
texmf-dist/fonts/tfm/cg/atqolive/anb6j.tfm
@@ -6516,6 +6608,7 @@ longdesc attachment basis. Attachfile makes it easy to attach files and
longdesc customize their appearance in the enclosing document. The
longdesc package supports the Created, Modified, and Size keys in the
longdesc EmbeddedFile’s Params dictionary.
+depend attachfile.ARCH
docfiles size=73
texmf-dist/doc/latex/attachfile/README details="Readme"
texmf-dist/doc/latex/attachfile/attachfile.pdf details="Package README"
@@ -6535,6 +6628,7 @@ revision 683
shortdesc Calligraphic font for typesetting handwriting.
longdesc A calligraphic font for simulating American-style informal
longdesc handwriting. The font is distributed in Adobe Type 1 format.
+depend augie.ARCH
execute addMap augie.map
docfiles size=3
texmf-dist/doc/latex/augie/README.augie
@@ -6572,6 +6666,7 @@ longdesc three calligraphic fonts derived from the author's handwriting
longdesc in Adobe Type 1 Format, T1 (Cork) encoding for use with LaTeX:
longdesc – Auriocus Kalligraphicus; – Lukas Svatba; and – Jana
longdesc Skrivana.
+depend aurical.ARCH
execute addMap aurical.map
docfiles size=30
texmf-dist/doc/latex/aurical/aurical.pdf details="Package introduction and samples"
@@ -6672,6 +6767,7 @@ longdesc document. Aurora can be run from any type of computer, as it
longdesc depends only on a black-and-white PostScript printer for its
longdesc execution. It is capable of handling colour images as well as
longdesc ordinary graphics, though image handling is very slow.
+depend aurora.ARCH
docfiles size=48
texmf-dist/doc/dvips/aurora/aurora.ps.gz
texmf-dist/doc/dvips/aurora/readme
@@ -6700,6 +6796,7 @@ shortdesc Make author, etc., available after \maketitle.
longdesc This jiffy package makes the author, title and date of the
longdesc package available to the user (as \MyAuthor, etc) after the
longdesc \maketitle command has been executed.
+depend authoraftertitle.ARCH
runfiles size=1
texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty
catalogue-version 0.9
@@ -6718,6 +6815,7 @@ longdesc the package can list the labels of the citations that appear in
longdesc the references rather than the text pages. The package relies
longdesc on BibTeX being used to handle citations. Additionally, it
longdesc requires Perl (version 5 or higher).
+depend authorindex.ARCH
docfiles size=64
texmf-dist/doc/latex/authorindex/COPYING
texmf-dist/doc/latex/authorindex/NEWS
@@ -6743,6 +6841,7 @@ longdesc Wrappers are provided for various psfrag-related features so
longdesc that Matlab figures via laprint, Mathematica figures via
longdesc MathPSfrag, and regular psfrag figures can all be input
longdesc consistently and easily.
+depend auto-pst-pdf.ARCH
docfiles size=1
texmf-dist/doc/latex/auto-pst-pdf/README details="Package Readme"
runfiles size=2
@@ -6762,6 +6861,7 @@ longdesc graphs, etc. The user defines nodes, which may be isolated or
longdesc arranged into matrices or trees; edges connect pairs of nodes
longdesc through arbitrary paths. Parameters, that specify the shapes of
longdesc nodes and the styles of edges, may be adjusted.
+depend automata.ARCH
docfiles size=17
texmf-dist/doc/metapost/automata/README details="Readme"
texmf-dist/doc/metapost/automata/example.mp
@@ -6784,6 +6884,7 @@ longdesc argument <n> specifies the number of fields to appear in the
longdesc table being generated; the package reads <n> lines at a time
longdesc from the data file, and creates one tabular line from each such
longdesc set.
+depend autotab.ARCH
docfiles size=1
texmf-dist/doc/latex/autotab/autotab.tex
runfiles size=1
@@ -6796,6 +6897,7 @@ catalogue-license unknown
name avantgar
category Package
revision 2488
+depend avantgar.ARCH
runfiles size=412
texmf-dist/dvips/avantgar/config.uag
texmf-dist/fonts/afm/adobe/avantgar/pagd8a.afm
@@ -6984,6 +7086,7 @@ name babel
category Package
revision 5335
shortdesc Multilingual support for Plain TeX or LaTeX.
+depend babel.ARCH
docfiles size=858
texmf-dist/doc/generic/babel/00readme.heb
texmf-dist/doc/generic/babel/00readme.txt
@@ -7284,6 +7387,7 @@ longdesc citation may be written in another language, or the whole
longdesc bibliography can be typeset in a language chosen by the user.
longdesc In addition, the package supports commands to change the
longdesc typography of the bibliographies.
+depend babelbib.ARCH
docfiles size=333
texmf-dist/doc/latex/babelbib/ChangeLog
texmf-dist/doc/latex/babelbib/README details="Readme"
@@ -7345,6 +7449,7 @@ shortdesc Package for typesetting backgammon.
longdesc The package was designed to annotate backgammon matches and
longdesc positions; it is accompanied by a font (distributed as MetaFont
longdesc source).
+depend backgammon.ARCH
docfiles size=9
texmf-dist/doc/latex/backgammon/description.ps.gz
texmf-dist/doc/latex/backgammon/sampletext.dvi
@@ -7367,6 +7472,7 @@ revision 1487
shortdesc Writing Bangla and Assamese with LaTeX.
longdesc The bundle provides class files for writing Bangla and Assamese
longdesc with LaTeX, and MetaFont sources for fonts.
+depend bangtex.ARCH
docfiles size=41
texmf-dist/doc/latex/bangtex/README.bangtex
texmf-dist/doc/latex/bangtex/bangfont.tex
@@ -7414,6 +7520,7 @@ shortdesc Fonts for making barcodes.
longdesc The package deals with EAN barcodes; MetaFont fonts are
longdesc provided, and a set of examples; for some codes, a small Perl
longdesc script is needed.
+depend barcodes.ARCH
docfiles size=74
texmf-dist/doc/latex/barcodes/README details="Package Readme"
texmf-dist/doc/latex/barcodes/bcfaq.tex
@@ -7455,6 +7562,7 @@ shortdesc LateX package for drawing bar diagrams.
longdesc The main purpose of the package is to make the drawing of bar
longdesc diagrams possible and easy in LaTeX. The BarDiag package is
longdesc inspired by and based on PSTricks.
+depend bardiag.ARCH
docfiles size=606
texmf-dist/doc/latex/bardiag/README details="Readme"
texmf-dist/doc/latex/bardiag/bardiag.ps
@@ -7527,6 +7635,7 @@ catalogue-license lppl
name barr
category Package
revision 693
+depend barr.ARCH
docfiles size=18
texmf-dist/doc/latex/barr/diagdoc.tex
texmf-dist/doc/latex/barr/diaxydoc.tex
@@ -7537,6 +7646,7 @@ runfiles size=20
name bayer
category Package
revision 695
+depend bayer.ARCH
docfiles size=5
texmf-dist/doc/latex/bayer/README
texmf-dist/doc/latex/bayer/forms.eps
@@ -7574,6 +7684,7 @@ shortdesc A symbol (dingbat) font and LaTeX macros for its use.
longdesc A symbol font (distributed as MetaFont source) that contains
longdesc many of the symbols of the Zapf dingbats set, together with an
longdesc NFSS interface for using the font.
+depend bbding.ARCH
srcfiles size=9
texmf-dist/source/latex/bbding/bbding.dtx
texmf-dist/source/latex/bbding/bbding.ins
@@ -7597,6 +7708,7 @@ longdesc available with the bbm-macros package. The Sauter font package
longdesc has MetaFont parameter source files for building the fonts at
longdesc more sizes than you could reasonably imagine. These fonts
longdesc appear in the blackboard bold sampler.
+depend bbm.ARCH
docfiles size=4
texmf-dist/doc/fonts/bbm/bbm.readme
texmf-dist/doc/fonts/bbm/gfbatch.batch
@@ -7715,6 +7827,7 @@ longdesc Provides LaTeX support for Blackboard variants of Computer
longdesc Modern fonts. Declares a font family bbm so you can in
longdesc principle write running text in blackboard bold, and lots of
longdesc math alphabets for using the fonts within maths.
+depend bbm-macros.ARCH
docfiles size=2
texmf-dist/doc/latex/bbm-macros/bbm
texmf-dist/doc/latex/bbm-macros/readme.bbm
@@ -7742,6 +7855,7 @@ longdesc for use with LaTeX. The Sauter font package has MetaFont
longdesc parameter source files for building the fonts at more sizes
longdesc than you could reasonably imagine. See the blackboard sampler
longdesc for a feel for the font's appearance.
+depend bbold.ARCH
docfiles size=2
texmf-dist/doc/latex/bbold/INSTALL
texmf-dist/doc/latex/bbold/README
@@ -7802,6 +7916,7 @@ longdesc transparency effects, a \transduration command, animation
longdesc commands, a pauses environment. Beamer also provides
longdesc compatibility with other packages like prosper.
depend pgf
+depend beamer.ARCH
docfiles size=1008
texmf-dist/doc/latex/beamer/AUTHORS
texmf-dist/doc/latex/beamer/ChangeLog
@@ -8015,6 +8130,7 @@ catalogue-license gpl
name beamer-contrib
category Package
revision 4016
+depend beamer-contrib.ARCH
docfiles size=1
texmf-dist/doc/latex/beamer-contrib/README.themes
runfiles size=1
@@ -8024,6 +8140,7 @@ name beamer-tut-pt
category Documentation
revision 1754
shortdesc An introduction to the Beamer class, in Portuguese.
+depend beamer-tut-pt.ARCH
docfiles size=1022
texmf-doc/doc/portuguese/beamer-tut-pt/AnnArbor1.ps
texmf-doc/doc/portuguese/beamer-tut-pt/AnnArbor2.ps
@@ -8061,6 +8178,7 @@ catalogue-license gpl
name beebe
category Package
revision 1634
+depend beebe.ARCH
runfiles size=1073
texmf-dist/bibtex/bib/beebe/gut.bib
texmf-dist/bibtex/bib/beebe/komoedie.bib
@@ -8125,6 +8243,7 @@ revision 2336
shortdesc Typeset Begriffschrift.
longdesc The package defines maths mode commands for typesetting Frege's
longdesc Begriffschrift.
+depend begriff.ARCH
docfiles size=20
texmf-dist/doc/latex/begriff/COPYING
texmf-dist/doc/latex/begriff/README
@@ -8144,6 +8263,7 @@ shortdesc Free replacement for basic MathTime fonts.
longdesc This package replaces the original MathTime fonts, not
longdesc MathTime-Plus or MathTime Professional (the last being the only
longdesc currently available commercial bundle).
+depend belleek.ARCH
execute addMap belleek.map
docfiles size=1
texmf-dist/doc/fonts/belleek/README details="Readme"
@@ -8167,6 +8287,7 @@ catalogue-license pd
name bengali
category Package
revision 701
+depend bengali.ARCH
srcfiles size=16
texmf-dist/source/latex/bengali/beng.c
texmf-dist/source/latex/bengali/bengdoc.bn
@@ -8206,6 +8327,7 @@ longdesc three font families: Bera Serif (a slab-serif Roman), Bera Sans
longdesc (a Frutiger descendant), and Bera Mono (monospaced/typewriter).
longdesc Support for use in LaTeX is also provided. The Bera family is a
longdesc repackaging, for use with TeX, of the Bitstream Vera family.
+depend bera.ARCH
execute addMap bera.map
docfiles size=10
texmf-dist/doc/fonts/bera/LICENSE
@@ -8329,6 +8451,7 @@ longdesc diacritical characters into your document using the commonly
longdesc used Beta Code transliteration. You can directly insert Beta
longdesc Code texts — as they can be found at the Perseus project, for
longdesc example — without modification.
+depend betababel.ARCH
docfiles size=48
texmf-dist/doc/latex/betababel/betatest.pdf
texmf-dist/doc/latex/betababel/betatest.tex
@@ -8345,6 +8468,7 @@ revision 1487
shortdesc Use Concrete fonts.
longdesc Typeset a LaTeX2e document with the Concrete fonts designed by
longdesc Don Knuth and used in his book “Concrete Mathematics”.
+depend beton.ARCH
docfiles size=4
texmf-dist/doc/latex/beton/beton.dvi
srcfiles size=6
@@ -8367,6 +8491,7 @@ longdesc drawing linear, cubic, and rational quadratic Bezier curves
longdesc (standard LaTeX only offers non-rational quadratic splines).
longdesc Provides a package multiply that provides a command for
longdesc multiplication of a length without numerical overflow.
+depend bez123.ARCH
srcfiles size=18
texmf-dist/source/latex/bez123/README
texmf-dist/source/latex/bez123/bez123.dtx
@@ -8389,6 +8514,7 @@ longdesc arabic; – a tool for making end-environment checking more
longdesc meaningful; – tensorial indexes; – tools for easy entry of
longdesc Spanish index entries; and – dotless i's and j's for maths
longdesc fonts.
+depend bezos.ARCH
docfiles size=29
texmf-dist/doc/latex/bezos/README
texmf-dist/doc/latex/bezos/accents.tex
@@ -8417,6 +8543,7 @@ longdesc for the Russian hyphenation files. To use with Babel, simply
longdesc drop the .tex files in an appropriate place, tell babel that
longdesc bghyphen.tex is the hyphenation file for Bulgarian (typically
longdesc in the file language.dat), and produce new format files.
+depend bghyphen.ARCH
docfiles size=41
texmf-dist/doc/generic/bghyphen/README
texmf-dist/doc/generic/bghyphen/azbukaExtended.pdf
@@ -8439,6 +8566,7 @@ longdesc the way that is common in the arts; it requires an auxiliary
longdesc program, for which source and a DOS executable are provided.
longdesc (Documentation is in German, though bibarts.sty does contain a
longdesc brief introduction in English, as a comment.)
+depend bibarts.ARCH
docfiles size=35
texmf-dist/doc/latex/bibarts/bibarts.dvi
texmf-dist/doc/latex/bibarts/bibarts.tex
@@ -8468,6 +8596,7 @@ longdesc is defined in the entry within the BibTeX database file, then
longdesc the generated bibliography entry is linked to this. The package
longdesc provides three different style files derived from each of the
longdesc standard plain.bst and alpha.bst (i.e., six in total).
+depend bibhtml.ARCH
docfiles size=16
texmf-dist/doc/latex/bibhtml/LICENCE
texmf-dist/doc/latex/bibhtml/bibhtml
@@ -8493,6 +8622,7 @@ shortdesc Format bible citations.
longdesc The bibleref package is designed to offer consistent formatting
longdesc of references to parts of the Christian bible, in a number of
longdesc well-defined formats.
+depend bibleref.ARCH
docfiles size=62
texmf-dist/doc/latex/bibleref/README details="Readme"
texmf-dist/doc/latex/bibleref/bibleref-manual.html
@@ -8517,6 +8647,7 @@ shortdesc Print a BibTeX database.
longdesc The package provides the means of listing an entire BibTeX
longdesc database, avoiding the potentially large (macro) impact
longdesc associated with \nocite{*}.
+depend biblist.ARCH
docfiles size=2
texmf-dist/doc/latex/biblist/README
texmf-dist/doc/latex/biblist/biblist.gde
@@ -8538,6 +8669,7 @@ longdesc form, while printing citations in a document in the form
longdesc specified by a BibTeX style, to be specified in the document
longdesc itself. BibTeX itself is an ASCII-only program; there is,
longdesc however, a version that copes with 8-bit character sets.
+depend bibtex.ARCH
docfiles size=100
texmf-dist/doc/bibtex/base/bibshare
texmf-dist/doc/bibtex/base/btxbst.doc
@@ -8566,6 +8698,7 @@ longdesc bibliographic ‘topic’, each of which will be processed
longdesc separately by BibTeX. If you want to have bibliographies
longdesc specific to one part of a document, see the packages bibunits
longdesc or chapterbib.
+depend bibtopic.ARCH
docfiles size=64
texmf-dist/doc/latex/bibtopic/README
texmf-dist/doc/latex/bibtopic/bibtopic.pdf
@@ -8589,6 +8722,7 @@ shortdesc Prefix references to bibliographies produced by bibtopic.
longdesc The package permits users to apply prefixes (fixed strings) to
longdesc references to entries in bibliographies produced by the
longdesc bibtopic package.
+depend bibtopicprefix.ARCH
docfiles size=98
texmf-dist/doc/latex/bibtopicprefix/README
texmf-dist/doc/latex/bibtopicprefix/bibtopicprefix.pdf details="Package documentation"
@@ -8617,6 +8751,7 @@ longdesc by LaTeX may also appear in the document and citations can be
longdesc placed in both the local unit and the global bibliographies at
longdesc the same time. The package is compatible with koma-script and
longdesc with the babel French option frenchb.
+depend bibunits.ARCH
docfiles size=68
texmf-dist/doc/latex/bibunits/README details="Readme"
texmf-dist/doc/latex/bibunits/bibtexall
@@ -8638,6 +8773,7 @@ shortdesc Support for bidirectional typesetting with XeLaTeX.
longdesc A convenient interface for typesetting bidirectional texts with
longdesc XeLaTeX. (Also works with pdfLaTeX, though in this case its
longdesc usefulness is doubtful).
+depend bidi.ARCH
docfiles size=39
texmf-dist/doc/xelatex/bidi/README.txt details="Readme"
texmf-dist/doc/xelatex/bidi/bidi.pdf details="Package documentation"
@@ -8665,6 +8801,7 @@ longdesc Note that the majority of the bigfoot package's interface is
longdesc identical to that of manyfoot; users should seek information
longdesc from that package's documentation. The bigfoot bundle also
longdesc provides the perpage and suffix packages.
+depend bigfoot.ARCH
docfiles size=64
texmf-dist/doc/latex/bigfoot/README details="Readme"
texmf-dist/doc/latex/bigfoot/bigfoot.pdf details="Package documentation"
@@ -8690,6 +8827,7 @@ catalogue-license gpl2
name bin-afm2pl
category TLCore
revision 5403
+depend bin-afm2pl.ARCH
docfiles size=4
texmf/doc/man/man1/afm2pl.1
runfiles size=26
@@ -8711,172 +8849,506 @@ runfiles size=26
texmf/tex/fontinst/afm2pl/ly1c.etx
texmf/tex/fontinst/afm2pl/makesc8y.tex
texmf/tex/latex/afm2pl/uclcptm.sty
+
+name bin-afm2pl.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for alpha-linux
+binfiles arch=alpha-linux size=28
+ bin/alpha-linux/afm2pl
+
+name bin-afm2pl.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for hppa-hpux
+binfiles arch=hppa-hpux size=29
+ bin/hppa-hpux/afm2pl
+
+name bin-afm2pl.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for i386-darwin
+binfiles arch=i386-darwin size=22
+ bin/i386-darwin/afm2pl
+
+name bin-afm2pl.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for i386-freebsd
+binfiles arch=i386-freebsd size=18
+ bin/i386-freebsd/afm2pl
+
+name bin-afm2pl.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for i386-linux
+binfiles arch=i386-linux size=17
+ bin/i386-linux/afm2pl
+
+name bin-afm2pl.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for i386-openbsd
binfiles arch=i386-openbsd size=17
bin/i386-openbsd/afm2pl
+
+name bin-afm2pl.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for i386-solaris
binfiles arch=i386-solaris size=19
bin/i386-solaris/afm2pl
-binfiles arch=i386-linux size=17
- bin/i386-linux/afm2pl
-binfiles arch=hppa-hpux size=29
- bin/hppa-hpux/afm2pl
+
+name bin-afm2pl.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for mips-irix
binfiles arch=mips-irix size=34
bin/mips-irix/afm2pl
-binfiles arch=alpha-linux size=28
- bin/alpha-linux/afm2pl
+
+name bin-afm2pl.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for powerpc-aix
+binfiles arch=powerpc-aix size=26
+ bin/powerpc-aix/afm2pl
+
+name bin-afm2pl.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for powerpc-darwin
+binfiles arch=powerpc-darwin size=21
+ bin/powerpc-darwin/afm2pl
+
+name bin-afm2pl.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for powerpc-linux
+binfiles arch=powerpc-linux size=21
+ bin/powerpc-linux/afm2pl
+
+name bin-afm2pl.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for sparc-linux
binfiles arch=sparc-linux size=20
bin/sparc-linux/afm2pl
+
+name bin-afm2pl.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for sparc-solaris
binfiles arch=sparc-solaris size=37
bin/sparc-solaris/afm2pl
-binfiles arch=i386-freebsd size=18
- bin/i386-freebsd/afm2pl
+
+name bin-afm2pl.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for win32
binfiles arch=win32 size=6
bin/win32/afm2pl.exe
-binfiles arch=i386-darwin size=22
- bin/i386-darwin/afm2pl
-binfiles arch=powerpc-linux size=21
- bin/powerpc-linux/afm2pl
-binfiles arch=powerpc-aix size=26
- bin/powerpc-aix/afm2pl
+
+name bin-afm2pl.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-afm2pl for x86_64-linux
binfiles arch=x86_64-linux size=22
bin/x86_64-linux/afm2pl
-binfiles arch=powerpc-darwin size=21
- bin/powerpc-darwin/afm2pl
name bin-aleph
category TLCore
revision 5403
depend bin-omega
+depend bin-aleph.ARCH
execute BuildFormat aleph
runfiles size=9
texmf/fmtutil/format.aleph.cnf
texmf/web2c/aleph.pool
+
+name bin-aleph.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for alpha-linux
+execute BuildFormat aleph
+binfiles arch=alpha-linux size=164
+ bin/alpha-linux/aleph
+ bin/alpha-linux/lamed
+
+name bin-aleph.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for hppa-hpux
+execute BuildFormat aleph
+binfiles arch=hppa-hpux size=140
+ bin/hppa-hpux/aleph
+ bin/hppa-hpux/lamed
+
+name bin-aleph.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for i386-darwin
+execute BuildFormat aleph
+binfiles arch=i386-darwin size=129
+ bin/i386-darwin/aleph
+ bin/i386-darwin/lamed
+
+name bin-aleph.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for i386-freebsd
+execute BuildFormat aleph
+binfiles arch=i386-freebsd size=113
+ bin/i386-freebsd/aleph
+ bin/i386-freebsd/lamed
+
+name bin-aleph.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for i386-linux
+execute BuildFormat aleph
+binfiles arch=i386-linux size=101
+ bin/i386-linux/aleph
+ bin/i386-linux/lamed
+
+name bin-aleph.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for i386-openbsd
+execute BuildFormat aleph
binfiles arch=i386-openbsd size=107
bin/i386-openbsd/aleph
bin/i386-openbsd/lamed
+
+name bin-aleph.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for i386-solaris
+execute BuildFormat aleph
binfiles arch=i386-solaris size=118
bin/i386-solaris/aleph
bin/i386-solaris/lamed
-binfiles arch=i386-linux size=101
- bin/i386-linux/aleph
- bin/i386-linux/lamed
-binfiles arch=hppa-hpux size=140
- bin/hppa-hpux/aleph
- bin/hppa-hpux/lamed
+
+name bin-aleph.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for mips-irix
+execute BuildFormat aleph
binfiles arch=mips-irix size=200
bin/mips-irix/aleph
bin/mips-irix/lamed
-binfiles arch=alpha-linux size=164
- bin/alpha-linux/aleph
- bin/alpha-linux/lamed
+
+name bin-aleph.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for powerpc-aix
+execute BuildFormat aleph
+binfiles arch=powerpc-aix size=135
+ bin/powerpc-aix/aleph
+ bin/powerpc-aix/lamed
+
+name bin-aleph.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for powerpc-darwin
+execute BuildFormat aleph
+binfiles arch=powerpc-darwin size=131
+ bin/powerpc-darwin/aleph
+ bin/powerpc-darwin/lamed
+
+name bin-aleph.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for powerpc-linux
+execute BuildFormat aleph
+binfiles arch=powerpc-linux size=127
+ bin/powerpc-linux/aleph
+ bin/powerpc-linux/lamed
+
+name bin-aleph.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for sparc-linux
+execute BuildFormat aleph
binfiles arch=sparc-linux size=125
bin/sparc-linux/aleph
bin/sparc-linux/lamed
+
+name bin-aleph.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for sparc-solaris
+execute BuildFormat aleph
binfiles arch=sparc-solaris size=173
bin/sparc-solaris/aleph
bin/sparc-solaris/lamed
-binfiles arch=i386-freebsd size=113
- bin/i386-freebsd/aleph
- bin/i386-freebsd/lamed
+
+name bin-aleph.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for win32
+execute BuildFormat aleph
binfiles arch=win32 size=96
bin/win32/aleph.dll
bin/win32/aleph.exe
bin/win32/lamed.exe
-binfiles arch=i386-darwin size=129
- bin/i386-darwin/aleph
- bin/i386-darwin/lamed
-binfiles arch=powerpc-linux size=127
- bin/powerpc-linux/aleph
- bin/powerpc-linux/lamed
-binfiles arch=powerpc-aix size=135
- bin/powerpc-aix/aleph
- bin/powerpc-aix/lamed
+
+name bin-aleph.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-aleph for x86_64-linux
+execute BuildFormat aleph
binfiles arch=x86_64-linux size=117
bin/x86_64-linux/aleph
bin/x86_64-linux/lamed
-binfiles arch=powerpc-darwin size=131
- bin/powerpc-darwin/aleph
- bin/powerpc-darwin/lamed
name bin-amstex
category TLCore
revision 5403
depend bin-tex
+depend bin-amstex.ARCH
execute BuildFormat amstex
docfiles size=1
texmf/doc/man/man1/amstex.1
runfiles size=1
texmf/fmtutil/format.amstex.cnf
+
+name bin-amstex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for alpha-linux
+execute BuildFormat amstex
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/amstex
+
+name bin-amstex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for hppa-hpux
+execute BuildFormat amstex
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/amstex
+
+name bin-amstex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for i386-darwin
+execute BuildFormat amstex
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/amstex
+
+name bin-amstex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for i386-freebsd
+execute BuildFormat amstex
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/amstex
+
+name bin-amstex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for i386-linux
+execute BuildFormat amstex
+binfiles arch=i386-linux size=1
+ bin/i386-linux/amstex
+
+name bin-amstex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for i386-openbsd
+execute BuildFormat amstex
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/amstex
+
+name bin-amstex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for i386-solaris
+execute BuildFormat amstex
binfiles arch=i386-solaris size=1
bin/i386-solaris/amstex
-binfiles arch=i386-linux size=1
- bin/i386-linux/amstex
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/amstex
+
+name bin-amstex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for mips-irix
+execute BuildFormat amstex
binfiles arch=mips-irix size=1
bin/mips-irix/amstex
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/amstex
+
+name bin-amstex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for powerpc-aix
+execute BuildFormat amstex
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/amstex
+
+name bin-amstex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for powerpc-darwin
+execute BuildFormat amstex
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/amstex
+
+name bin-amstex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for powerpc-linux
+execute BuildFormat amstex
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/amstex
+
+name bin-amstex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for sparc-linux
+execute BuildFormat amstex
binfiles arch=sparc-linux size=1
bin/sparc-linux/amstex
+
+name bin-amstex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for sparc-solaris
+execute BuildFormat amstex
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/amstex
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/amstex
+
+name bin-amstex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for win32
+execute BuildFormat amstex
binfiles arch=win32 size=1
bin/win32/amstex.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/amstex
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/amstex
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/amstex
+
+name bin-amstex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-amstex for x86_64-linux
+execute BuildFormat amstex
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/amstex
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/amstex
name bin-bibtex
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-bibtex.ARCH
docfiles size=2
texmf/doc/man/man1/bibtex.1
+
+name bin-bibtex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for alpha-linux
+binfiles arch=alpha-linux size=50
+ bin/alpha-linux/bibtex
+
+name bin-bibtex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for hppa-hpux
+binfiles arch=hppa-hpux size=45
+ bin/hppa-hpux/bibtex
+
+name bin-bibtex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for i386-darwin
+binfiles arch=i386-darwin size=40
+ bin/i386-darwin/bibtex
+
+name bin-bibtex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for i386-freebsd
+binfiles arch=i386-freebsd size=32
+ bin/i386-freebsd/bibtex
+
+name bin-bibtex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for i386-linux
+binfiles arch=i386-linux size=30
+ bin/i386-linux/bibtex
+
+name bin-bibtex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for i386-openbsd
binfiles arch=i386-openbsd size=32
bin/i386-openbsd/bibtex
+
+name bin-bibtex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for i386-solaris
binfiles arch=i386-solaris size=36
bin/i386-solaris/bibtex
-binfiles arch=i386-linux size=30
- bin/i386-linux/bibtex
-binfiles arch=hppa-hpux size=45
- bin/hppa-hpux/bibtex
+
+name bin-bibtex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for mips-irix
binfiles arch=mips-irix size=63
bin/mips-irix/bibtex
-binfiles arch=alpha-linux size=50
- bin/alpha-linux/bibtex
+
+name bin-bibtex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for powerpc-aix
+binfiles arch=powerpc-aix size=42
+ bin/powerpc-aix/bibtex
+
+name bin-bibtex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for powerpc-darwin
+binfiles arch=powerpc-darwin size=41
+ bin/powerpc-darwin/bibtex
+
+name bin-bibtex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for powerpc-linux
+binfiles arch=powerpc-linux size=38
+ bin/powerpc-linux/bibtex
+
+name bin-bibtex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for sparc-linux
binfiles arch=sparc-linux size=35
bin/sparc-linux/bibtex
+
+name bin-bibtex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for sparc-solaris
binfiles arch=sparc-solaris size=63
bin/sparc-solaris/bibtex
-binfiles arch=i386-freebsd size=32
- bin/i386-freebsd/bibtex
+
+name bin-bibtex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for win32
binfiles arch=win32 size=18
bin/win32/bibtex.exe
-binfiles arch=i386-darwin size=40
- bin/i386-darwin/bibtex
-binfiles arch=powerpc-linux size=38
- bin/powerpc-linux/bibtex
-binfiles arch=powerpc-aix size=42
- bin/powerpc-aix/bibtex
+
+name bin-bibtex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex for x86_64-linux
binfiles arch=x86_64-linux size=37
bin/x86_64-linux/bibtex
-binfiles arch=powerpc-darwin size=41
- bin/powerpc-darwin/bibtex
name bin-bibtex8
category TLCore
revision 5403
+depend bin-bibtex8.ARCH
docfiles size=15
texmf/doc/bibtex8/00readme.txt
texmf/doc/bibtex8/HISTORY
@@ -8890,64 +9362,292 @@ runfiles size=21
texmf/bibtex/csf/base/cp850lat.csf
texmf/bibtex/csf/base/cp850sca.csf
texmf/bibtex/csf/base/cp866rus.csf
+
+name bin-bibtex8.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for alpha-linux
+binfiles arch=alpha-linux size=62
+ bin/alpha-linux/bibtex8
+
+name bin-bibtex8.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for hppa-hpux
+binfiles arch=hppa-hpux size=51
+ bin/hppa-hpux/bibtex8
+
+name bin-bibtex8.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for i386-darwin
+binfiles arch=i386-darwin size=49
+ bin/i386-darwin/bibtex8
+
+name bin-bibtex8.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for i386-freebsd
+binfiles arch=i386-freebsd size=38
+ bin/i386-freebsd/bibtex8
+
+name bin-bibtex8.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for i386-linux
+binfiles arch=i386-linux size=36
+ bin/i386-linux/bibtex8
+
+name bin-bibtex8.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for i386-openbsd
binfiles arch=i386-openbsd size=38
bin/i386-openbsd/bibtex8
+
+name bin-bibtex8.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for i386-solaris
binfiles arch=i386-solaris size=43
bin/i386-solaris/bibtex8
-binfiles arch=i386-linux size=36
- bin/i386-linux/bibtex8
-binfiles arch=hppa-hpux size=51
- bin/hppa-hpux/bibtex8
+
+name bin-bibtex8.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for mips-irix
binfiles arch=mips-irix size=74
bin/mips-irix/bibtex8
-binfiles arch=alpha-linux size=62
- bin/alpha-linux/bibtex8
+
+name bin-bibtex8.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for powerpc-aix
+binfiles arch=powerpc-aix size=50
+ bin/powerpc-aix/bibtex8
+
+name bin-bibtex8.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for powerpc-darwin
+binfiles arch=powerpc-darwin size=48
+ bin/powerpc-darwin/bibtex8
+
+name bin-bibtex8.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for powerpc-linux
+binfiles arch=powerpc-linux size=45
+ bin/powerpc-linux/bibtex8
+
+name bin-bibtex8.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for sparc-linux
binfiles arch=sparc-linux size=42
bin/sparc-linux/bibtex8
+
+name bin-bibtex8.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for sparc-solaris
binfiles arch=sparc-solaris size=71
bin/sparc-solaris/bibtex8
-binfiles arch=i386-freebsd size=38
- bin/i386-freebsd/bibtex8
+
+name bin-bibtex8.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for win32
binfiles arch=win32 size=25
bin/win32/bibtex8.exe
-binfiles arch=i386-darwin size=49
- bin/i386-darwin/bibtex8
-binfiles arch=powerpc-linux size=45
- bin/powerpc-linux/bibtex8
-binfiles arch=powerpc-aix size=50
- bin/powerpc-aix/bibtex8
+
+name bin-bibtex8.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bibtex8 for x86_64-linux
binfiles arch=x86_64-linux size=45
bin/x86_64-linux/bibtex8
-binfiles arch=powerpc-darwin size=48
- bin/powerpc-darwin/bibtex8
name bin-bzip2
category TLCore
revision 5403
+depend bin-bzip2.ARCH
docfiles size=79
texmf/doc/bzip2/bzip2.html
texmf/doc/bzip2/bzip2.pdf
texmf/doc/bzip2/manual.html
+
+name bin-bzip2.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for alpha-linux
+
+name bin-bzip2.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for hppa-hpux
+
+name bin-bzip2.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for i386-darwin
+
+name bin-bzip2.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for i386-freebsd
+
+name bin-bzip2.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for i386-linux
+
+name bin-bzip2.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for i386-openbsd
+
+name bin-bzip2.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for i386-solaris
+
+name bin-bzip2.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for mips-irix
+
+name bin-bzip2.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for powerpc-aix
+
+name bin-bzip2.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for powerpc-darwin
+
+name bin-bzip2.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for powerpc-linux
+
+name bin-bzip2.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for sparc-linux
+
+name bin-bzip2.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for sparc-solaris
+
+name bin-bzip2.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for win32
binfiles arch=win32 size=33
bin/win32/bzip2.exe
bin/win32/bzip2recover.exe
bin/win32/tl90bzip2.dll
+name bin-bzip2.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-bzip2 for x86_64-linux
+
name bin-chktex
category TLCore
revision 5403
+depend bin-chktex.ARCH
docfiles size=147
texmf/doc/chktex/ChkTeX.html
texmf/doc/chktex/ChkTeX.pdf
texmf/doc/chktex/chktex.dvi
runfiles size=5
texmf/chktex/.chktexrc
+
+name bin-chktex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for alpha-linux
+
+name bin-chktex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for hppa-hpux
+
+name bin-chktex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for i386-darwin
+
+name bin-chktex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for i386-freebsd
+
+name bin-chktex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for i386-linux
+
+name bin-chktex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for i386-openbsd
+
+name bin-chktex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for i386-solaris
+
+name bin-chktex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for mips-irix
+
+name bin-chktex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for powerpc-aix
+
+name bin-chktex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for powerpc-darwin
+
+name bin-chktex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for powerpc-linux
+
+name bin-chktex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for sparc-linux
+
+name bin-chktex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for sparc-solaris
+
+name bin-chktex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for win32
binfiles arch=win32 size=10
bin/win32/chktex.exe
+name bin-chktex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-chktex for x86_64-linux
+
name bin-cjkutils
category TLCore
revision 5403
+depend bin-cjkutils.ARCH
docfiles size=146
texmf/doc/bg5conv/bg5conv.pdf
texmf/doc/bg5conv/man/pdf/bg5conv.pdf
@@ -8988,6 +9688,146 @@ runfiles size=16
texmf/hbf2gf/j2so12.cfg
texmf/hbf2gf/jsso12.cfg
texmf/hbf2gf/ksso17.cfg
+
+name bin-cjkutils.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for alpha-linux
+binfiles arch=alpha-linux size=61
+ bin/alpha-linux/bg5+latex
+ bin/alpha-linux/bg5+pdflatex
+ bin/alpha-linux/bg5conv
+ bin/alpha-linux/bg5latex
+ bin/alpha-linux/bg5pdflatex
+ bin/alpha-linux/cef5conv
+ bin/alpha-linux/cef5latex
+ bin/alpha-linux/cef5pdflatex
+ bin/alpha-linux/cefconv
+ bin/alpha-linux/ceflatex
+ bin/alpha-linux/cefpdflatex
+ bin/alpha-linux/cefsconv
+ bin/alpha-linux/cefslatex
+ bin/alpha-linux/cefspdflatex
+ bin/alpha-linux/extconv
+ bin/alpha-linux/gbklatex
+ bin/alpha-linux/gbkpdflatex
+ bin/alpha-linux/hbf2gf
+ bin/alpha-linux/sjisconv
+ bin/alpha-linux/sjislatex
+ bin/alpha-linux/sjispdflatex
+
+name bin-cjkutils.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for hppa-hpux
+binfiles arch=hppa-hpux size=77
+ bin/hppa-hpux/bg5+latex
+ bin/hppa-hpux/bg5+pdflatex
+ bin/hppa-hpux/bg5conv
+ bin/hppa-hpux/bg5latex
+ bin/hppa-hpux/bg5pdflatex
+ bin/hppa-hpux/cef5conv
+ bin/hppa-hpux/cef5latex
+ bin/hppa-hpux/cef5pdflatex
+ bin/hppa-hpux/cefconv
+ bin/hppa-hpux/ceflatex
+ bin/hppa-hpux/cefpdflatex
+ bin/hppa-hpux/cefsconv
+ bin/hppa-hpux/cefslatex
+ bin/hppa-hpux/cefspdflatex
+ bin/hppa-hpux/extconv
+ bin/hppa-hpux/gbklatex
+ bin/hppa-hpux/gbkpdflatex
+ bin/hppa-hpux/hbf2gf
+ bin/hppa-hpux/sjisconv
+ bin/hppa-hpux/sjislatex
+ bin/hppa-hpux/sjispdflatex
+
+name bin-cjkutils.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for i386-darwin
+binfiles arch=i386-darwin size=62
+ bin/i386-darwin/bg5+latex
+ bin/i386-darwin/bg5+pdflatex
+ bin/i386-darwin/bg5conv
+ bin/i386-darwin/bg5latex
+ bin/i386-darwin/bg5pdflatex
+ bin/i386-darwin/cef5conv
+ bin/i386-darwin/cef5latex
+ bin/i386-darwin/cef5pdflatex
+ bin/i386-darwin/cefconv
+ bin/i386-darwin/ceflatex
+ bin/i386-darwin/cefpdflatex
+ bin/i386-darwin/cefsconv
+ bin/i386-darwin/cefslatex
+ bin/i386-darwin/cefspdflatex
+ bin/i386-darwin/extconv
+ bin/i386-darwin/gbklatex
+ bin/i386-darwin/gbkpdflatex
+ bin/i386-darwin/hbf2gf
+ bin/i386-darwin/sjisconv
+ bin/i386-darwin/sjislatex
+ bin/i386-darwin/sjispdflatex
+
+name bin-cjkutils.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for i386-freebsd
+binfiles arch=i386-freebsd size=42
+ bin/i386-freebsd/bg5+latex
+ bin/i386-freebsd/bg5+pdflatex
+ bin/i386-freebsd/bg5conv
+ bin/i386-freebsd/bg5latex
+ bin/i386-freebsd/bg5pdflatex
+ bin/i386-freebsd/cef5conv
+ bin/i386-freebsd/cef5latex
+ bin/i386-freebsd/cef5pdflatex
+ bin/i386-freebsd/cefconv
+ bin/i386-freebsd/ceflatex
+ bin/i386-freebsd/cefpdflatex
+ bin/i386-freebsd/cefsconv
+ bin/i386-freebsd/cefslatex
+ bin/i386-freebsd/cefspdflatex
+ bin/i386-freebsd/extconv
+ bin/i386-freebsd/gbklatex
+ bin/i386-freebsd/gbkpdflatex
+ bin/i386-freebsd/hbf2gf
+ bin/i386-freebsd/sjisconv
+ bin/i386-freebsd/sjislatex
+ bin/i386-freebsd/sjispdflatex
+
+name bin-cjkutils.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for i386-linux
+binfiles arch=i386-linux size=42
+ bin/i386-linux/bg5+latex
+ bin/i386-linux/bg5+pdflatex
+ bin/i386-linux/bg5conv
+ bin/i386-linux/bg5latex
+ bin/i386-linux/bg5pdflatex
+ bin/i386-linux/cef5conv
+ bin/i386-linux/cef5latex
+ bin/i386-linux/cef5pdflatex
+ bin/i386-linux/cefconv
+ bin/i386-linux/ceflatex
+ bin/i386-linux/cefpdflatex
+ bin/i386-linux/cefsconv
+ bin/i386-linux/cefslatex
+ bin/i386-linux/cefspdflatex
+ bin/i386-linux/extconv
+ bin/i386-linux/gbklatex
+ bin/i386-linux/gbkpdflatex
+ bin/i386-linux/hbf2gf
+ bin/i386-linux/sjisconv
+ bin/i386-linux/sjislatex
+ bin/i386-linux/sjispdflatex
+
+name bin-cjkutils.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for i386-openbsd
binfiles arch=i386-openbsd size=45
bin/i386-openbsd/bg5+latex
bin/i386-openbsd/bg5+pdflatex
@@ -9010,6 +9850,11 @@ binfiles arch=i386-openbsd size=45
bin/i386-openbsd/sjisconv
bin/i386-openbsd/sjislatex
bin/i386-openbsd/sjispdflatex
+
+name bin-cjkutils.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for i386-solaris
binfiles arch=i386-solaris size=47
bin/i386-solaris/bg5+latex
bin/i386-solaris/bg5+pdflatex
@@ -9032,50 +9877,11 @@ binfiles arch=i386-solaris size=47
bin/i386-solaris/sjisconv
bin/i386-solaris/sjislatex
bin/i386-solaris/sjispdflatex
-binfiles arch=i386-linux size=42
- bin/i386-linux/bg5+latex
- bin/i386-linux/bg5+pdflatex
- bin/i386-linux/bg5conv
- bin/i386-linux/bg5latex
- bin/i386-linux/bg5pdflatex
- bin/i386-linux/cef5conv
- bin/i386-linux/cef5latex
- bin/i386-linux/cef5pdflatex
- bin/i386-linux/cefconv
- bin/i386-linux/ceflatex
- bin/i386-linux/cefpdflatex
- bin/i386-linux/cefsconv
- bin/i386-linux/cefslatex
- bin/i386-linux/cefspdflatex
- bin/i386-linux/extconv
- bin/i386-linux/gbklatex
- bin/i386-linux/gbkpdflatex
- bin/i386-linux/hbf2gf
- bin/i386-linux/sjisconv
- bin/i386-linux/sjislatex
- bin/i386-linux/sjispdflatex
-binfiles arch=hppa-hpux size=77
- bin/hppa-hpux/bg5+latex
- bin/hppa-hpux/bg5+pdflatex
- bin/hppa-hpux/bg5conv
- bin/hppa-hpux/bg5latex
- bin/hppa-hpux/bg5pdflatex
- bin/hppa-hpux/cef5conv
- bin/hppa-hpux/cef5latex
- bin/hppa-hpux/cef5pdflatex
- bin/hppa-hpux/cefconv
- bin/hppa-hpux/ceflatex
- bin/hppa-hpux/cefpdflatex
- bin/hppa-hpux/cefsconv
- bin/hppa-hpux/cefslatex
- bin/hppa-hpux/cefspdflatex
- bin/hppa-hpux/extconv
- bin/hppa-hpux/gbklatex
- bin/hppa-hpux/gbkpdflatex
- bin/hppa-hpux/hbf2gf
- bin/hppa-hpux/sjisconv
- bin/hppa-hpux/sjislatex
- bin/hppa-hpux/sjispdflatex
+
+name bin-cjkutils.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for mips-irix
binfiles arch=mips-irix size=78
bin/mips-irix/bg5+latex
bin/mips-irix/bg5+pdflatex
@@ -9098,28 +9904,92 @@ binfiles arch=mips-irix size=78
bin/mips-irix/sjisconv
bin/mips-irix/sjislatex
bin/mips-irix/sjispdflatex
-binfiles arch=alpha-linux size=61
- bin/alpha-linux/bg5+latex
- bin/alpha-linux/bg5+pdflatex
- bin/alpha-linux/bg5conv
- bin/alpha-linux/bg5latex
- bin/alpha-linux/bg5pdflatex
- bin/alpha-linux/cef5conv
- bin/alpha-linux/cef5latex
- bin/alpha-linux/cef5pdflatex
- bin/alpha-linux/cefconv
- bin/alpha-linux/ceflatex
- bin/alpha-linux/cefpdflatex
- bin/alpha-linux/cefsconv
- bin/alpha-linux/cefslatex
- bin/alpha-linux/cefspdflatex
- bin/alpha-linux/extconv
- bin/alpha-linux/gbklatex
- bin/alpha-linux/gbkpdflatex
- bin/alpha-linux/hbf2gf
- bin/alpha-linux/sjisconv
- bin/alpha-linux/sjislatex
- bin/alpha-linux/sjispdflatex
+
+name bin-cjkutils.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for powerpc-aix
+binfiles arch=powerpc-aix size=44
+ bin/powerpc-aix/bg5+latex
+ bin/powerpc-aix/bg5+pdflatex
+ bin/powerpc-aix/bg5conv
+ bin/powerpc-aix/bg5latex
+ bin/powerpc-aix/bg5pdflatex
+ bin/powerpc-aix/cef5conv
+ bin/powerpc-aix/cef5latex
+ bin/powerpc-aix/cef5pdflatex
+ bin/powerpc-aix/cefconv
+ bin/powerpc-aix/ceflatex
+ bin/powerpc-aix/cefpdflatex
+ bin/powerpc-aix/cefsconv
+ bin/powerpc-aix/cefslatex
+ bin/powerpc-aix/cefspdflatex
+ bin/powerpc-aix/extconv
+ bin/powerpc-aix/gbklatex
+ bin/powerpc-aix/gbkpdflatex
+ bin/powerpc-aix/hbf2gf
+ bin/powerpc-aix/sjisconv
+ bin/powerpc-aix/sjislatex
+ bin/powerpc-aix/sjispdflatex
+
+name bin-cjkutils.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for powerpc-darwin
+binfiles arch=powerpc-darwin size=59
+ bin/powerpc-darwin/bg5+latex
+ bin/powerpc-darwin/bg5+pdflatex
+ bin/powerpc-darwin/bg5conv
+ bin/powerpc-darwin/bg5latex
+ bin/powerpc-darwin/bg5pdflatex
+ bin/powerpc-darwin/cef5conv
+ bin/powerpc-darwin/cef5latex
+ bin/powerpc-darwin/cef5pdflatex
+ bin/powerpc-darwin/cefconv
+ bin/powerpc-darwin/ceflatex
+ bin/powerpc-darwin/cefpdflatex
+ bin/powerpc-darwin/cefsconv
+ bin/powerpc-darwin/cefslatex
+ bin/powerpc-darwin/cefspdflatex
+ bin/powerpc-darwin/extconv
+ bin/powerpc-darwin/gbklatex
+ bin/powerpc-darwin/gbkpdflatex
+ bin/powerpc-darwin/hbf2gf
+ bin/powerpc-darwin/sjisconv
+ bin/powerpc-darwin/sjislatex
+ bin/powerpc-darwin/sjispdflatex
+
+name bin-cjkutils.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for powerpc-linux
+binfiles arch=powerpc-linux size=48
+ bin/powerpc-linux/bg5+latex
+ bin/powerpc-linux/bg5+pdflatex
+ bin/powerpc-linux/bg5conv
+ bin/powerpc-linux/bg5latex
+ bin/powerpc-linux/bg5pdflatex
+ bin/powerpc-linux/cef5conv
+ bin/powerpc-linux/cef5latex
+ bin/powerpc-linux/cef5pdflatex
+ bin/powerpc-linux/cefconv
+ bin/powerpc-linux/ceflatex
+ bin/powerpc-linux/cefpdflatex
+ bin/powerpc-linux/cefsconv
+ bin/powerpc-linux/cefslatex
+ bin/powerpc-linux/cefspdflatex
+ bin/powerpc-linux/extconv
+ bin/powerpc-linux/gbklatex
+ bin/powerpc-linux/gbkpdflatex
+ bin/powerpc-linux/hbf2gf
+ bin/powerpc-linux/sjisconv
+ bin/powerpc-linux/sjislatex
+ bin/powerpc-linux/sjispdflatex
+
+name bin-cjkutils.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for sparc-linux
binfiles arch=sparc-linux size=45
bin/sparc-linux/bg5+latex
bin/sparc-linux/bg5+pdflatex
@@ -9142,6 +10012,11 @@ binfiles arch=sparc-linux size=45
bin/sparc-linux/sjisconv
bin/sparc-linux/sjislatex
bin/sparc-linux/sjispdflatex
+
+name bin-cjkutils.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for sparc-solaris
binfiles arch=sparc-solaris size=65
bin/sparc-solaris/bg5+latex
bin/sparc-solaris/bg5+pdflatex
@@ -9164,28 +10039,11 @@ binfiles arch=sparc-solaris size=65
bin/sparc-solaris/sjisconv
bin/sparc-solaris/sjislatex
bin/sparc-solaris/sjispdflatex
-binfiles arch=i386-freebsd size=42
- bin/i386-freebsd/bg5+latex
- bin/i386-freebsd/bg5+pdflatex
- bin/i386-freebsd/bg5conv
- bin/i386-freebsd/bg5latex
- bin/i386-freebsd/bg5pdflatex
- bin/i386-freebsd/cef5conv
- bin/i386-freebsd/cef5latex
- bin/i386-freebsd/cef5pdflatex
- bin/i386-freebsd/cefconv
- bin/i386-freebsd/ceflatex
- bin/i386-freebsd/cefpdflatex
- bin/i386-freebsd/cefsconv
- bin/i386-freebsd/cefslatex
- bin/i386-freebsd/cefspdflatex
- bin/i386-freebsd/extconv
- bin/i386-freebsd/gbklatex
- bin/i386-freebsd/gbkpdflatex
- bin/i386-freebsd/hbf2gf
- bin/i386-freebsd/sjisconv
- bin/i386-freebsd/sjislatex
- bin/i386-freebsd/sjispdflatex
+
+name bin-cjkutils.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for win32
binfiles arch=win32 size=40
bin/win32/bg5conv.exe
bin/win32/bg5latex.exe
@@ -9206,72 +10064,11 @@ binfiles arch=win32 size=40
bin/win32/sjisconv.exe
bin/win32/sjislatex.exe
bin/win32/sjispdflatex.exe
-binfiles arch=i386-darwin size=62
- bin/i386-darwin/bg5+latex
- bin/i386-darwin/bg5+pdflatex
- bin/i386-darwin/bg5conv
- bin/i386-darwin/bg5latex
- bin/i386-darwin/bg5pdflatex
- bin/i386-darwin/cef5conv
- bin/i386-darwin/cef5latex
- bin/i386-darwin/cef5pdflatex
- bin/i386-darwin/cefconv
- bin/i386-darwin/ceflatex
- bin/i386-darwin/cefpdflatex
- bin/i386-darwin/cefsconv
- bin/i386-darwin/cefslatex
- bin/i386-darwin/cefspdflatex
- bin/i386-darwin/extconv
- bin/i386-darwin/gbklatex
- bin/i386-darwin/gbkpdflatex
- bin/i386-darwin/hbf2gf
- bin/i386-darwin/sjisconv
- bin/i386-darwin/sjislatex
- bin/i386-darwin/sjispdflatex
-binfiles arch=powerpc-linux size=48
- bin/powerpc-linux/bg5+latex
- bin/powerpc-linux/bg5+pdflatex
- bin/powerpc-linux/bg5conv
- bin/powerpc-linux/bg5latex
- bin/powerpc-linux/bg5pdflatex
- bin/powerpc-linux/cef5conv
- bin/powerpc-linux/cef5latex
- bin/powerpc-linux/cef5pdflatex
- bin/powerpc-linux/cefconv
- bin/powerpc-linux/ceflatex
- bin/powerpc-linux/cefpdflatex
- bin/powerpc-linux/cefsconv
- bin/powerpc-linux/cefslatex
- bin/powerpc-linux/cefspdflatex
- bin/powerpc-linux/extconv
- bin/powerpc-linux/gbklatex
- bin/powerpc-linux/gbkpdflatex
- bin/powerpc-linux/hbf2gf
- bin/powerpc-linux/sjisconv
- bin/powerpc-linux/sjislatex
- bin/powerpc-linux/sjispdflatex
-binfiles arch=powerpc-aix size=44
- bin/powerpc-aix/bg5+latex
- bin/powerpc-aix/bg5+pdflatex
- bin/powerpc-aix/bg5conv
- bin/powerpc-aix/bg5latex
- bin/powerpc-aix/bg5pdflatex
- bin/powerpc-aix/cef5conv
- bin/powerpc-aix/cef5latex
- bin/powerpc-aix/cef5pdflatex
- bin/powerpc-aix/cefconv
- bin/powerpc-aix/ceflatex
- bin/powerpc-aix/cefpdflatex
- bin/powerpc-aix/cefsconv
- bin/powerpc-aix/cefslatex
- bin/powerpc-aix/cefspdflatex
- bin/powerpc-aix/extconv
- bin/powerpc-aix/gbklatex
- bin/powerpc-aix/gbkpdflatex
- bin/powerpc-aix/hbf2gf
- bin/powerpc-aix/sjisconv
- bin/powerpc-aix/sjislatex
- bin/powerpc-aix/sjispdflatex
+
+name bin-cjkutils.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cjkutils for x86_64-linux
binfiles arch=x86_64-linux size=49
bin/x86_64-linux/bg5+latex
bin/x86_64-linux/bg5+pdflatex
@@ -9294,33 +10091,12 @@ binfiles arch=x86_64-linux size=49
bin/x86_64-linux/sjisconv
bin/x86_64-linux/sjislatex
bin/x86_64-linux/sjispdflatex
-binfiles arch=powerpc-darwin size=59
- bin/powerpc-darwin/bg5+latex
- bin/powerpc-darwin/bg5+pdflatex
- bin/powerpc-darwin/bg5conv
- bin/powerpc-darwin/bg5latex
- bin/powerpc-darwin/bg5pdflatex
- bin/powerpc-darwin/cef5conv
- bin/powerpc-darwin/cef5latex
- bin/powerpc-darwin/cef5pdflatex
- bin/powerpc-darwin/cefconv
- bin/powerpc-darwin/ceflatex
- bin/powerpc-darwin/cefpdflatex
- bin/powerpc-darwin/cefsconv
- bin/powerpc-darwin/cefslatex
- bin/powerpc-darwin/cefspdflatex
- bin/powerpc-darwin/extconv
- bin/powerpc-darwin/gbklatex
- bin/powerpc-darwin/gbkpdflatex
- bin/powerpc-darwin/hbf2gf
- bin/powerpc-darwin/sjisconv
- bin/powerpc-darwin/sjislatex
- bin/powerpc-darwin/sjispdflatex
name bin-context
category TLCore
revision 5403
depend bin-pdftex
+depend bin-context.ARCH
execute BuildFormat context
docfiles size=18
texmf/doc/man/man1/ctxtools.1
@@ -9337,6 +10113,137 @@ docfiles size=18
texmf/doc/man/man1/texutil.1
runfiles size=1
texmf/fmtutil/format.context.cnf
+
+name bin-context.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for alpha-linux
+execute BuildFormat context
+binfiles arch=alpha-linux size=39
+ bin/alpha-linux/ctxtools
+ bin/alpha-linux/exatools
+ bin/alpha-linux/luatools
+ bin/alpha-linux/makempy
+ bin/alpha-linux/mpstools
+ bin/alpha-linux/mptopdf
+ bin/alpha-linux/mtxtools
+ bin/alpha-linux/pdftools
+ bin/alpha-linux/pstopdf
+ bin/alpha-linux/rlxtools
+ bin/alpha-linux/runtools
+ bin/alpha-linux/texexec
+ bin/alpha-linux/texfont
+ bin/alpha-linux/texmfstart
+ bin/alpha-linux/textools
+ bin/alpha-linux/texutil
+ bin/alpha-linux/tmftools
+ bin/alpha-linux/xmltools
+
+name bin-context.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for hppa-hpux
+execute BuildFormat context
+binfiles arch=hppa-hpux size=39
+ bin/hppa-hpux/ctxtools
+ bin/hppa-hpux/exatools
+ bin/hppa-hpux/luatools
+ bin/hppa-hpux/makempy
+ bin/hppa-hpux/mpstools
+ bin/hppa-hpux/mptopdf
+ bin/hppa-hpux/mtxtools
+ bin/hppa-hpux/pdftools
+ bin/hppa-hpux/pstopdf
+ bin/hppa-hpux/rlxtools
+ bin/hppa-hpux/runtools
+ bin/hppa-hpux/texexec
+ bin/hppa-hpux/texfont
+ bin/hppa-hpux/texmfstart
+ bin/hppa-hpux/textools
+ bin/hppa-hpux/texutil
+ bin/hppa-hpux/tmftools
+ bin/hppa-hpux/xmltools
+
+name bin-context.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for i386-darwin
+execute BuildFormat context
+binfiles arch=i386-darwin size=39
+ bin/i386-darwin/ctxtools
+ bin/i386-darwin/exatools
+ bin/i386-darwin/luatools
+ bin/i386-darwin/makempy
+ bin/i386-darwin/mpstools
+ bin/i386-darwin/mptopdf
+ bin/i386-darwin/mtxtools
+ bin/i386-darwin/pdftools
+ bin/i386-darwin/pstopdf
+ bin/i386-darwin/rlxtools
+ bin/i386-darwin/runtools
+ bin/i386-darwin/texexec
+ bin/i386-darwin/texfont
+ bin/i386-darwin/texmfstart
+ bin/i386-darwin/textools
+ bin/i386-darwin/texutil
+ bin/i386-darwin/tmftools
+ bin/i386-darwin/xmltools
+
+name bin-context.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for i386-freebsd
+execute BuildFormat context
+binfiles arch=i386-freebsd size=39
+ bin/i386-freebsd/ctxtools
+ bin/i386-freebsd/exatools
+ bin/i386-freebsd/luatools
+ bin/i386-freebsd/makempy
+ bin/i386-freebsd/mpstools
+ bin/i386-freebsd/mptopdf
+ bin/i386-freebsd/mtxtools
+ bin/i386-freebsd/pdftools
+ bin/i386-freebsd/pstopdf
+ bin/i386-freebsd/rlxtools
+ bin/i386-freebsd/runtools
+ bin/i386-freebsd/texexec
+ bin/i386-freebsd/texfont
+ bin/i386-freebsd/texmfstart
+ bin/i386-freebsd/textools
+ bin/i386-freebsd/texutil
+ bin/i386-freebsd/tmftools
+ bin/i386-freebsd/xmltools
+
+name bin-context.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for i386-linux
+execute BuildFormat context
+binfiles arch=i386-linux size=39
+ bin/i386-linux/ctxtools
+ bin/i386-linux/exatools
+ bin/i386-linux/luatools
+ bin/i386-linux/makempy
+ bin/i386-linux/mpstools
+ bin/i386-linux/mptopdf
+ bin/i386-linux/mtxtools
+ bin/i386-linux/pdftools
+ bin/i386-linux/pstopdf
+ bin/i386-linux/rlxtools
+ bin/i386-linux/runtools
+ bin/i386-linux/texexec
+ bin/i386-linux/texfont
+ bin/i386-linux/texmfstart
+ bin/i386-linux/textools
+ bin/i386-linux/texutil
+ bin/i386-linux/tmftools
+ bin/i386-linux/xmltools
+
+name bin-context.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for i386-openbsd
+execute BuildFormat context
binfiles arch=i386-openbsd size=39
bin/i386-openbsd/ctxtools
bin/i386-openbsd/exatools
@@ -9356,6 +10263,12 @@ binfiles arch=i386-openbsd size=39
bin/i386-openbsd/texutil
bin/i386-openbsd/tmftools
bin/i386-openbsd/xmltools
+
+name bin-context.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for i386-solaris
+execute BuildFormat context
binfiles arch=i386-solaris size=39
bin/i386-solaris/ctxtools
bin/i386-solaris/exatools
@@ -9375,44 +10288,12 @@ binfiles arch=i386-solaris size=39
bin/i386-solaris/texutil
bin/i386-solaris/tmftools
bin/i386-solaris/xmltools
-binfiles arch=i386-linux size=39
- bin/i386-linux/ctxtools
- bin/i386-linux/exatools
- bin/i386-linux/luatools
- bin/i386-linux/makempy
- bin/i386-linux/mpstools
- bin/i386-linux/mptopdf
- bin/i386-linux/mtxtools
- bin/i386-linux/pdftools
- bin/i386-linux/pstopdf
- bin/i386-linux/rlxtools
- bin/i386-linux/runtools
- bin/i386-linux/texexec
- bin/i386-linux/texfont
- bin/i386-linux/texmfstart
- bin/i386-linux/textools
- bin/i386-linux/texutil
- bin/i386-linux/tmftools
- bin/i386-linux/xmltools
-binfiles arch=hppa-hpux size=39
- bin/hppa-hpux/ctxtools
- bin/hppa-hpux/exatools
- bin/hppa-hpux/luatools
- bin/hppa-hpux/makempy
- bin/hppa-hpux/mpstools
- bin/hppa-hpux/mptopdf
- bin/hppa-hpux/mtxtools
- bin/hppa-hpux/pdftools
- bin/hppa-hpux/pstopdf
- bin/hppa-hpux/rlxtools
- bin/hppa-hpux/runtools
- bin/hppa-hpux/texexec
- bin/hppa-hpux/texfont
- bin/hppa-hpux/texmfstart
- bin/hppa-hpux/textools
- bin/hppa-hpux/texutil
- bin/hppa-hpux/tmftools
- bin/hppa-hpux/xmltools
+
+name bin-context.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for mips-irix
+execute BuildFormat context
binfiles arch=mips-irix size=39
bin/mips-irix/ctxtools
bin/mips-irix/exatools
@@ -9432,25 +10313,87 @@ binfiles arch=mips-irix size=39
bin/mips-irix/texutil
bin/mips-irix/tmftools
bin/mips-irix/xmltools
-binfiles arch=alpha-linux size=39
- bin/alpha-linux/ctxtools
- bin/alpha-linux/exatools
- bin/alpha-linux/luatools
- bin/alpha-linux/makempy
- bin/alpha-linux/mpstools
- bin/alpha-linux/mptopdf
- bin/alpha-linux/mtxtools
- bin/alpha-linux/pdftools
- bin/alpha-linux/pstopdf
- bin/alpha-linux/rlxtools
- bin/alpha-linux/runtools
- bin/alpha-linux/texexec
- bin/alpha-linux/texfont
- bin/alpha-linux/texmfstart
- bin/alpha-linux/textools
- bin/alpha-linux/texutil
- bin/alpha-linux/tmftools
- bin/alpha-linux/xmltools
+
+name bin-context.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for powerpc-aix
+execute BuildFormat context
+binfiles arch=powerpc-aix size=39
+ bin/powerpc-aix/ctxtools
+ bin/powerpc-aix/exatools
+ bin/powerpc-aix/luatools
+ bin/powerpc-aix/makempy
+ bin/powerpc-aix/mpstools
+ bin/powerpc-aix/mptopdf
+ bin/powerpc-aix/mtxtools
+ bin/powerpc-aix/pdftools
+ bin/powerpc-aix/pstopdf
+ bin/powerpc-aix/rlxtools
+ bin/powerpc-aix/runtools
+ bin/powerpc-aix/texexec
+ bin/powerpc-aix/texfont
+ bin/powerpc-aix/texmfstart
+ bin/powerpc-aix/textools
+ bin/powerpc-aix/texutil
+ bin/powerpc-aix/tmftools
+ bin/powerpc-aix/xmltools
+
+name bin-context.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for powerpc-darwin
+execute BuildFormat context
+binfiles arch=powerpc-darwin size=39
+ bin/powerpc-darwin/ctxtools
+ bin/powerpc-darwin/exatools
+ bin/powerpc-darwin/luatools
+ bin/powerpc-darwin/makempy
+ bin/powerpc-darwin/mpstools
+ bin/powerpc-darwin/mptopdf
+ bin/powerpc-darwin/mtxtools
+ bin/powerpc-darwin/pdftools
+ bin/powerpc-darwin/pstopdf
+ bin/powerpc-darwin/rlxtools
+ bin/powerpc-darwin/runtools
+ bin/powerpc-darwin/texexec
+ bin/powerpc-darwin/texfont
+ bin/powerpc-darwin/texmfstart
+ bin/powerpc-darwin/textools
+ bin/powerpc-darwin/texutil
+ bin/powerpc-darwin/tmftools
+ bin/powerpc-darwin/xmltools
+
+name bin-context.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for powerpc-linux
+execute BuildFormat context
+binfiles arch=powerpc-linux size=39
+ bin/powerpc-linux/ctxtools
+ bin/powerpc-linux/exatools
+ bin/powerpc-linux/luatools
+ bin/powerpc-linux/makempy
+ bin/powerpc-linux/mpstools
+ bin/powerpc-linux/mptopdf
+ bin/powerpc-linux/mtxtools
+ bin/powerpc-linux/pdftools
+ bin/powerpc-linux/pstopdf
+ bin/powerpc-linux/rlxtools
+ bin/powerpc-linux/runtools
+ bin/powerpc-linux/texexec
+ bin/powerpc-linux/texfont
+ bin/powerpc-linux/texmfstart
+ bin/powerpc-linux/textools
+ bin/powerpc-linux/texutil
+ bin/powerpc-linux/tmftools
+ bin/powerpc-linux/xmltools
+
+name bin-context.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for sparc-linux
+execute BuildFormat context
binfiles arch=sparc-linux size=39
bin/sparc-linux/ctxtools
bin/sparc-linux/exatools
@@ -9470,6 +10413,12 @@ binfiles arch=sparc-linux size=39
bin/sparc-linux/texutil
bin/sparc-linux/tmftools
bin/sparc-linux/xmltools
+
+name bin-context.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for sparc-solaris
+execute BuildFormat context
binfiles arch=sparc-solaris size=39
bin/sparc-solaris/ctxtools
bin/sparc-solaris/exatools
@@ -9489,25 +10438,12 @@ binfiles arch=sparc-solaris size=39
bin/sparc-solaris/texutil
bin/sparc-solaris/tmftools
bin/sparc-solaris/xmltools
-binfiles arch=i386-freebsd size=39
- bin/i386-freebsd/ctxtools
- bin/i386-freebsd/exatools
- bin/i386-freebsd/luatools
- bin/i386-freebsd/makempy
- bin/i386-freebsd/mpstools
- bin/i386-freebsd/mptopdf
- bin/i386-freebsd/mtxtools
- bin/i386-freebsd/pdftools
- bin/i386-freebsd/pstopdf
- bin/i386-freebsd/rlxtools
- bin/i386-freebsd/runtools
- bin/i386-freebsd/texexec
- bin/i386-freebsd/texfont
- bin/i386-freebsd/texmfstart
- bin/i386-freebsd/textools
- bin/i386-freebsd/texutil
- bin/i386-freebsd/tmftools
- bin/i386-freebsd/xmltools
+
+name bin-context.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for win32
+execute BuildFormat context
binfiles arch=win32 size=239
bin/win32/ctxtools.bat
bin/win32/exatools.bat
@@ -9527,63 +10463,12 @@ binfiles arch=win32 size=239
bin/win32/texutil.bat
bin/win32/tmftools.bat
bin/win32/xmltools.bat
-binfiles arch=i386-darwin size=39
- bin/i386-darwin/ctxtools
- bin/i386-darwin/exatools
- bin/i386-darwin/luatools
- bin/i386-darwin/makempy
- bin/i386-darwin/mpstools
- bin/i386-darwin/mptopdf
- bin/i386-darwin/mtxtools
- bin/i386-darwin/pdftools
- bin/i386-darwin/pstopdf
- bin/i386-darwin/rlxtools
- bin/i386-darwin/runtools
- bin/i386-darwin/texexec
- bin/i386-darwin/texfont
- bin/i386-darwin/texmfstart
- bin/i386-darwin/textools
- bin/i386-darwin/texutil
- bin/i386-darwin/tmftools
- bin/i386-darwin/xmltools
-binfiles arch=powerpc-linux size=39
- bin/powerpc-linux/ctxtools
- bin/powerpc-linux/exatools
- bin/powerpc-linux/luatools
- bin/powerpc-linux/makempy
- bin/powerpc-linux/mpstools
- bin/powerpc-linux/mptopdf
- bin/powerpc-linux/mtxtools
- bin/powerpc-linux/pdftools
- bin/powerpc-linux/pstopdf
- bin/powerpc-linux/rlxtools
- bin/powerpc-linux/runtools
- bin/powerpc-linux/texexec
- bin/powerpc-linux/texfont
- bin/powerpc-linux/texmfstart
- bin/powerpc-linux/textools
- bin/powerpc-linux/texutil
- bin/powerpc-linux/tmftools
- bin/powerpc-linux/xmltools
-binfiles arch=powerpc-aix size=39
- bin/powerpc-aix/ctxtools
- bin/powerpc-aix/exatools
- bin/powerpc-aix/luatools
- bin/powerpc-aix/makempy
- bin/powerpc-aix/mpstools
- bin/powerpc-aix/mptopdf
- bin/powerpc-aix/mtxtools
- bin/powerpc-aix/pdftools
- bin/powerpc-aix/pstopdf
- bin/powerpc-aix/rlxtools
- bin/powerpc-aix/runtools
- bin/powerpc-aix/texexec
- bin/powerpc-aix/texfont
- bin/powerpc-aix/texmfstart
- bin/powerpc-aix/textools
- bin/powerpc-aix/texutil
- bin/powerpc-aix/tmftools
- bin/powerpc-aix/xmltools
+
+name bin-context.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-context for x86_64-linux
+execute BuildFormat context
binfiles arch=x86_64-linux size=39
bin/x86_64-linux/ctxtools
bin/x86_64-linux/exatools
@@ -9603,225 +10488,541 @@ binfiles arch=x86_64-linux size=39
bin/x86_64-linux/texutil
bin/x86_64-linux/tmftools
bin/x86_64-linux/xmltools
-binfiles arch=powerpc-darwin size=39
- bin/powerpc-darwin/ctxtools
- bin/powerpc-darwin/exatools
- bin/powerpc-darwin/luatools
- bin/powerpc-darwin/makempy
- bin/powerpc-darwin/mpstools
- bin/powerpc-darwin/mptopdf
- bin/powerpc-darwin/mtxtools
- bin/powerpc-darwin/pdftools
- bin/powerpc-darwin/pstopdf
- bin/powerpc-darwin/rlxtools
- bin/powerpc-darwin/runtools
- bin/powerpc-darwin/texexec
- bin/powerpc-darwin/texfont
- bin/powerpc-darwin/texmfstart
- bin/powerpc-darwin/textools
- bin/powerpc-darwin/texutil
- bin/powerpc-darwin/tmftools
- bin/powerpc-darwin/xmltools
name bin-cslatex
category TLCore
revision 5403
depend bin-latex
+depend bin-cslatex.ARCH
execute BuildFormat cslatex
runfiles size=1
texmf/fmtutil/format.cslatex.cnf
+
+name bin-cslatex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for alpha-linux
+execute BuildFormat cslatex
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/cslatex
+ bin/alpha-linux/pdfcslatex
+
+name bin-cslatex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for hppa-hpux
+execute BuildFormat cslatex
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/cslatex
+ bin/hppa-hpux/pdfcslatex
+
+name bin-cslatex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for i386-darwin
+execute BuildFormat cslatex
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/cslatex
+ bin/i386-darwin/pdfcslatex
+
+name bin-cslatex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for i386-freebsd
+execute BuildFormat cslatex
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/cslatex
+ bin/i386-freebsd/pdfcslatex
+
+name bin-cslatex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for i386-linux
+execute BuildFormat cslatex
+binfiles arch=i386-linux size=2
+ bin/i386-linux/cslatex
+ bin/i386-linux/pdfcslatex
+
+name bin-cslatex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for i386-openbsd
+execute BuildFormat cslatex
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/cslatex
bin/i386-openbsd/pdfcslatex
+
+name bin-cslatex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for i386-solaris
+execute BuildFormat cslatex
binfiles arch=i386-solaris size=2
bin/i386-solaris/cslatex
bin/i386-solaris/pdfcslatex
-binfiles arch=i386-linux size=2
- bin/i386-linux/cslatex
- bin/i386-linux/pdfcslatex
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/cslatex
- bin/hppa-hpux/pdfcslatex
+
+name bin-cslatex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for mips-irix
+execute BuildFormat cslatex
binfiles arch=mips-irix size=2
bin/mips-irix/cslatex
bin/mips-irix/pdfcslatex
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/cslatex
- bin/alpha-linux/pdfcslatex
+
+name bin-cslatex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for powerpc-aix
+execute BuildFormat cslatex
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/cslatex
+ bin/powerpc-aix/pdfcslatex
+
+name bin-cslatex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for powerpc-darwin
+execute BuildFormat cslatex
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/cslatex
+ bin/powerpc-darwin/pdfcslatex
+
+name bin-cslatex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for powerpc-linux
+execute BuildFormat cslatex
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/cslatex
+ bin/powerpc-linux/pdfcslatex
+
+name bin-cslatex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for sparc-linux
+execute BuildFormat cslatex
binfiles arch=sparc-linux size=2
bin/sparc-linux/cslatex
bin/sparc-linux/pdfcslatex
+
+name bin-cslatex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for sparc-solaris
+execute BuildFormat cslatex
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/cslatex
bin/sparc-solaris/pdfcslatex
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/cslatex
- bin/i386-freebsd/pdfcslatex
+
+name bin-cslatex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for win32
+execute BuildFormat cslatex
binfiles arch=win32 size=2
bin/win32/cslatex.exe
bin/win32/pdfcslatex.exe
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/cslatex
- bin/i386-darwin/pdfcslatex
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/cslatex
- bin/powerpc-linux/pdfcslatex
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/cslatex
- bin/powerpc-aix/pdfcslatex
+
+name bin-cslatex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cslatex for x86_64-linux
+execute BuildFormat cslatex
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/cslatex
bin/x86_64-linux/pdfcslatex
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/cslatex
- bin/powerpc-darwin/pdfcslatex
name bin-csplain
category TLCore
revision 5403
depend bin-tex
+depend bin-csplain.ARCH
execute BuildFormat csplain
runfiles size=1
texmf/fmtutil/format.csplain.cnf
+
+name bin-csplain.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for alpha-linux
+execute BuildFormat csplain
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/csplain
+ bin/alpha-linux/pdfcsplain
+
+name bin-csplain.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for hppa-hpux
+execute BuildFormat csplain
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/csplain
+ bin/hppa-hpux/pdfcsplain
+
+name bin-csplain.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for i386-darwin
+execute BuildFormat csplain
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/csplain
+ bin/i386-darwin/pdfcsplain
+
+name bin-csplain.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for i386-freebsd
+execute BuildFormat csplain
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/csplain
+ bin/i386-freebsd/pdfcsplain
+
+name bin-csplain.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for i386-linux
+execute BuildFormat csplain
+binfiles arch=i386-linux size=2
+ bin/i386-linux/csplain
+ bin/i386-linux/pdfcsplain
+
+name bin-csplain.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for i386-openbsd
+execute BuildFormat csplain
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/csplain
bin/i386-openbsd/pdfcsplain
+
+name bin-csplain.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for i386-solaris
+execute BuildFormat csplain
binfiles arch=i386-solaris size=2
bin/i386-solaris/csplain
bin/i386-solaris/pdfcsplain
-binfiles arch=i386-linux size=2
- bin/i386-linux/csplain
- bin/i386-linux/pdfcsplain
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/csplain
- bin/hppa-hpux/pdfcsplain
+
+name bin-csplain.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for mips-irix
+execute BuildFormat csplain
binfiles arch=mips-irix size=2
bin/mips-irix/csplain
bin/mips-irix/pdfcsplain
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/csplain
- bin/alpha-linux/pdfcsplain
+
+name bin-csplain.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for powerpc-aix
+execute BuildFormat csplain
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/csplain
+ bin/powerpc-aix/pdfcsplain
+
+name bin-csplain.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for powerpc-darwin
+execute BuildFormat csplain
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/csplain
+ bin/powerpc-darwin/pdfcsplain
+
+name bin-csplain.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for powerpc-linux
+execute BuildFormat csplain
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/csplain
+ bin/powerpc-linux/pdfcsplain
+
+name bin-csplain.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for sparc-linux
+execute BuildFormat csplain
binfiles arch=sparc-linux size=2
bin/sparc-linux/csplain
bin/sparc-linux/pdfcsplain
+
+name bin-csplain.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for sparc-solaris
+execute BuildFormat csplain
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/csplain
bin/sparc-solaris/pdfcsplain
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/csplain
- bin/i386-freebsd/pdfcsplain
+
+name bin-csplain.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for win32
+execute BuildFormat csplain
binfiles arch=win32 size=2
bin/win32/csplain.exe
bin/win32/pdfcsplain.exe
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/csplain
- bin/i386-darwin/pdfcsplain
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/csplain
- bin/powerpc-linux/pdfcsplain
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/csplain
- bin/powerpc-aix/pdfcsplain
+
+name bin-csplain.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-csplain for x86_64-linux
+execute BuildFormat csplain
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/csplain
bin/x86_64-linux/pdfcsplain
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/csplain
- bin/powerpc-darwin/pdfcsplain
name bin-ctie
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-ctie.ARCH
docfiles size=1
texmf/doc/man/man1/ctie.1
+
+name bin-ctie.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for alpha-linux
+binfiles arch=alpha-linux size=24
+ bin/alpha-linux/ctie
+
+name bin-ctie.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for hppa-hpux
+binfiles arch=hppa-hpux size=22
+ bin/hppa-hpux/ctie
+
+name bin-ctie.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for i386-darwin
+binfiles arch=i386-darwin size=19
+ bin/i386-darwin/ctie
+
+name bin-ctie.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for i386-freebsd
+binfiles arch=i386-freebsd size=15
+ bin/i386-freebsd/ctie
+
+name bin-ctie.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for i386-linux
+binfiles arch=i386-linux size=15
+ bin/i386-linux/ctie
+
+name bin-ctie.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for i386-openbsd
binfiles arch=i386-openbsd size=15
bin/i386-openbsd/ctie
+
+name bin-ctie.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for i386-solaris
binfiles arch=i386-solaris size=16
bin/i386-solaris/ctie
-binfiles arch=i386-linux size=15
- bin/i386-linux/ctie
-binfiles arch=hppa-hpux size=22
- bin/hppa-hpux/ctie
+
+name bin-ctie.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for mips-irix
binfiles arch=mips-irix size=28
bin/mips-irix/ctie
-binfiles arch=alpha-linux size=24
- bin/alpha-linux/ctie
+
+name bin-ctie.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for powerpc-aix
+binfiles arch=powerpc-aix size=18
+ bin/powerpc-aix/ctie
+
+name bin-ctie.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for powerpc-darwin
+binfiles arch=powerpc-darwin size=18
+ bin/powerpc-darwin/ctie
+
+name bin-ctie.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for powerpc-linux
+binfiles arch=powerpc-linux size=17
+ bin/powerpc-linux/ctie
+
+name bin-ctie.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for sparc-linux
binfiles arch=sparc-linux size=17
bin/sparc-linux/ctie
+
+name bin-ctie.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for sparc-solaris
binfiles arch=sparc-solaris size=33
bin/sparc-solaris/ctie
-binfiles arch=i386-freebsd size=15
- bin/i386-freebsd/ctie
+
+name bin-ctie.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for win32
binfiles arch=win32 size=3
bin/win32/ctie.exe
-binfiles arch=i386-darwin size=19
- bin/i386-darwin/ctie
-binfiles arch=powerpc-linux size=17
- bin/powerpc-linux/ctie
-binfiles arch=powerpc-aix size=18
- bin/powerpc-aix/ctie
+
+name bin-ctie.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ctie for x86_64-linux
binfiles arch=x86_64-linux size=18
bin/x86_64-linux/ctie
-binfiles arch=powerpc-darwin size=18
- bin/powerpc-darwin/ctie
name bin-cweb
category TLCore
revision 5403
+depend bin-cweb.ARCH
docfiles size=3
texmf/doc/man/man1/ctangle.1
texmf/doc/man/man1/cweave.1
texmf/doc/man/man1/cweb.1
+
+name bin-cweb.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for alpha-linux
+binfiles arch=alpha-linux size=76
+ bin/alpha-linux/ctangle
+ bin/alpha-linux/cweave
+
+name bin-cweb.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for hppa-hpux
+binfiles arch=hppa-hpux size=66
+ bin/hppa-hpux/ctangle
+ bin/hppa-hpux/cweave
+
+name bin-cweb.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for i386-darwin
+binfiles arch=i386-darwin size=59
+ bin/i386-darwin/ctangle
+ bin/i386-darwin/cweave
+
+name bin-cweb.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for i386-freebsd
+binfiles arch=i386-freebsd size=49
+ bin/i386-freebsd/ctangle
+ bin/i386-freebsd/cweave
+
+name bin-cweb.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for i386-linux
+binfiles arch=i386-linux size=45
+ bin/i386-linux/ctangle
+ bin/i386-linux/cweave
+
+name bin-cweb.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for i386-openbsd
binfiles arch=i386-openbsd size=47
bin/i386-openbsd/ctangle
bin/i386-openbsd/cweave
+
+name bin-cweb.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for i386-solaris
binfiles arch=i386-solaris size=52
bin/i386-solaris/ctangle
bin/i386-solaris/cweave
-binfiles arch=i386-linux size=45
- bin/i386-linux/ctangle
- bin/i386-linux/cweave
-binfiles arch=hppa-hpux size=66
- bin/hppa-hpux/ctangle
- bin/hppa-hpux/cweave
+
+name bin-cweb.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for mips-irix
binfiles arch=mips-irix size=87
bin/mips-irix/ctangle
bin/mips-irix/cweave
-binfiles arch=alpha-linux size=76
- bin/alpha-linux/ctangle
- bin/alpha-linux/cweave
+
+name bin-cweb.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for powerpc-aix
+binfiles arch=powerpc-aix size=58
+ bin/powerpc-aix/ctangle
+ bin/powerpc-aix/cweave
+
+name bin-cweb.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for powerpc-darwin
+binfiles arch=powerpc-darwin size=56
+ bin/powerpc-darwin/ctangle
+ bin/powerpc-darwin/cweave
+
+name bin-cweb.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for powerpc-linux
+binfiles arch=powerpc-linux size=55
+ bin/powerpc-linux/ctangle
+ bin/powerpc-linux/cweave
+
+name bin-cweb.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for sparc-linux
binfiles arch=sparc-linux size=53
bin/sparc-linux/ctangle
bin/sparc-linux/cweave
+
+name bin-cweb.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for sparc-solaris
binfiles arch=sparc-solaris size=93
bin/sparc-solaris/ctangle
bin/sparc-solaris/cweave
-binfiles arch=i386-freebsd size=49
- bin/i386-freebsd/ctangle
- bin/i386-freebsd/cweave
+
+name bin-cweb.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for win32
binfiles arch=win32 size=22
bin/win32/ctangle.exe
bin/win32/cweave.exe
-binfiles arch=i386-darwin size=59
- bin/i386-darwin/ctangle
- bin/i386-darwin/cweave
-binfiles arch=powerpc-linux size=55
- bin/powerpc-linux/ctangle
- bin/powerpc-linux/cweave
-binfiles arch=powerpc-aix size=58
- bin/powerpc-aix/ctangle
- bin/powerpc-aix/cweave
+
+name bin-cweb.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-cweb for x86_64-linux
binfiles arch=x86_64-linux size=56
bin/x86_64-linux/ctangle
bin/x86_64-linux/cweave
-binfiles arch=powerpc-darwin size=56
- bin/powerpc-darwin/ctangle
- bin/powerpc-darwin/cweave
name bin-cyrillic
category TLCore
revision 3920
+depend bin-cyrillic.ARCH
docfiles size=2
texmf/doc/man/man1/rubibtex.1
texmf/doc/man/man1/rumakeindex.1
@@ -9829,333 +11030,941 @@ runfiles size=3
texmf/fmtutil/format.cyramstex.cnf
texmf/fmtutil/format.cyrtex.cnf
texmf/fmtutil/format.cyrtexinfo.cnf
+
+name bin-cyrillic.alpha-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for alpha-linux
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/rubibtex
+ bin/alpha-linux/rumakeindex
+
+name bin-cyrillic.hppa-hpux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for hppa-hpux
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/rubibtex
+ bin/hppa-hpux/rumakeindex
+
+name bin-cyrillic.i386-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for i386-darwin
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/rubibtex
+ bin/i386-darwin/rumakeindex
+
+name bin-cyrillic.i386-freebsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for i386-freebsd
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/rubibtex
+ bin/i386-freebsd/rumakeindex
+
+name bin-cyrillic.i386-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for i386-linux
+binfiles arch=i386-linux size=2
+ bin/i386-linux/rubibtex
+ bin/i386-linux/rumakeindex
+
+name bin-cyrillic.i386-openbsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for i386-openbsd
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/rubibtex
bin/i386-openbsd/rumakeindex
+
+name bin-cyrillic.i386-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for i386-solaris
binfiles arch=i386-solaris size=2
bin/i386-solaris/rubibtex
bin/i386-solaris/rumakeindex
-binfiles arch=i386-linux size=2
- bin/i386-linux/rubibtex
- bin/i386-linux/rumakeindex
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/rubibtex
- bin/hppa-hpux/rumakeindex
+
+name bin-cyrillic.mips-irix
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for mips-irix
binfiles arch=mips-irix size=2
bin/mips-irix/rubibtex
bin/mips-irix/rumakeindex
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/rubibtex
- bin/alpha-linux/rumakeindex
+
+name bin-cyrillic.powerpc-aix
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for powerpc-aix
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/rubibtex
+ bin/powerpc-aix/rumakeindex
+
+name bin-cyrillic.powerpc-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for powerpc-darwin
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/rubibtex
+ bin/powerpc-darwin/rumakeindex
+
+name bin-cyrillic.powerpc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for powerpc-linux
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/rubibtex
+ bin/powerpc-linux/rumakeindex
+
+name bin-cyrillic.sparc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for sparc-linux
binfiles arch=sparc-linux size=2
bin/sparc-linux/rubibtex
bin/sparc-linux/rumakeindex
+
+name bin-cyrillic.sparc-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for sparc-solaris
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/rubibtex
bin/sparc-solaris/rumakeindex
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/rubibtex
- bin/i386-freebsd/rumakeindex
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/rubibtex
- bin/i386-darwin/rumakeindex
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/rubibtex
- bin/powerpc-linux/rumakeindex
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/rubibtex
- bin/powerpc-aix/rumakeindex
+
+name bin-cyrillic.win32
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for win32
+
+name bin-cyrillic.x86_64-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-cyrillic for x86_64-linux
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/rubibtex
bin/x86_64-linux/rumakeindex
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/rubibtex
- bin/powerpc-darwin/rumakeindex
name bin-detex
category TLCore
revision 5403
+depend bin-detex.ARCH
docfiles size=1
texmf/doc/man/man1/detex.1
+
+name bin-detex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for alpha-linux
+binfiles arch=alpha-linux size=27
+ bin/alpha-linux/detex
+
+name bin-detex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for hppa-hpux
+binfiles arch=hppa-hpux size=25
+ bin/hppa-hpux/detex
+
+name bin-detex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for i386-darwin
+binfiles arch=i386-darwin size=22
+ bin/i386-darwin/detex
+
+name bin-detex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for i386-freebsd
+binfiles arch=i386-freebsd size=19
+ bin/i386-freebsd/detex
+
+name bin-detex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for i386-linux
+binfiles arch=i386-linux size=17
+ bin/i386-linux/detex
+
+name bin-detex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for i386-openbsd
binfiles arch=i386-openbsd size=18
bin/i386-openbsd/detex
+
+name bin-detex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for i386-solaris
binfiles arch=i386-solaris size=19
bin/i386-solaris/detex
-binfiles arch=i386-linux size=17
- bin/i386-linux/detex
-binfiles arch=hppa-hpux size=25
- bin/hppa-hpux/detex
+
+name bin-detex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for mips-irix
binfiles arch=mips-irix size=30
bin/mips-irix/detex
-binfiles arch=alpha-linux size=27
- bin/alpha-linux/detex
+
+name bin-detex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for powerpc-aix
+binfiles arch=powerpc-aix size=21
+ bin/powerpc-aix/detex
+
+name bin-detex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for powerpc-darwin
+binfiles arch=powerpc-darwin size=21
+ bin/powerpc-darwin/detex
+
+name bin-detex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for powerpc-linux
+binfiles arch=powerpc-linux size=20
+ bin/powerpc-linux/detex
+
+name bin-detex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for sparc-linux
binfiles arch=sparc-linux size=20
bin/sparc-linux/detex
+
+name bin-detex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for sparc-solaris
binfiles arch=sparc-solaris size=36
bin/sparc-solaris/detex
-binfiles arch=i386-freebsd size=19
- bin/i386-freebsd/detex
+
+name bin-detex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for win32
binfiles arch=win32 size=5
bin/win32/detex.exe
-binfiles arch=i386-darwin size=22
- bin/i386-darwin/detex
-binfiles arch=powerpc-linux size=20
- bin/powerpc-linux/detex
-binfiles arch=powerpc-aix size=21
- bin/powerpc-aix/detex
+
+name bin-detex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-detex for x86_64-linux
binfiles arch=x86_64-linux size=21
bin/x86_64-linux/detex
-binfiles arch=powerpc-darwin size=21
- bin/powerpc-darwin/detex
name bin-devnag
category TLCore
revision 5403
+depend bin-devnag.ARCH
+
+name bin-devnag.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for alpha-linux
+binfiles arch=alpha-linux size=11
+ bin/alpha-linux/devnag
+
+name bin-devnag.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for hppa-hpux
+binfiles arch=hppa-hpux size=12
+ bin/hppa-hpux/devnag
+
+name bin-devnag.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for i386-darwin
+binfiles arch=i386-darwin size=9
+ bin/i386-darwin/devnag
+
+name bin-devnag.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for i386-freebsd
+binfiles arch=i386-freebsd size=6
+ bin/i386-freebsd/devnag
+
+name bin-devnag.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for i386-linux
+binfiles arch=i386-linux size=6
+ bin/i386-linux/devnag
+
+name bin-devnag.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for i386-openbsd
binfiles arch=i386-openbsd size=7
bin/i386-openbsd/devnag
+
+name bin-devnag.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for i386-solaris
binfiles arch=i386-solaris size=7
bin/i386-solaris/devnag
-binfiles arch=i386-linux size=6
- bin/i386-linux/devnag
-binfiles arch=hppa-hpux size=12
- bin/hppa-hpux/devnag
+
+name bin-devnag.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for mips-irix
binfiles arch=mips-irix size=12
bin/mips-irix/devnag
-binfiles arch=alpha-linux size=11
- bin/alpha-linux/devnag
+
+name bin-devnag.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for powerpc-aix
+binfiles arch=powerpc-aix size=8
+ bin/powerpc-aix/devnag
+
+name bin-devnag.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for powerpc-darwin
+binfiles arch=powerpc-darwin size=9
+ bin/powerpc-darwin/devnag
+
+name bin-devnag.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for powerpc-linux
+binfiles arch=powerpc-linux size=8
+ bin/powerpc-linux/devnag
+
+name bin-devnag.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for sparc-linux
binfiles arch=sparc-linux size=8
bin/sparc-linux/devnag
+
+name bin-devnag.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for sparc-solaris
binfiles arch=sparc-solaris size=9
bin/sparc-solaris/devnag
-binfiles arch=i386-freebsd size=6
- bin/i386-freebsd/devnag
+
+name bin-devnag.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for win32
binfiles arch=win32 size=6
bin/win32/devnag.exe
-binfiles arch=i386-darwin size=9
- bin/i386-darwin/devnag
-binfiles arch=powerpc-linux size=8
- bin/powerpc-linux/devnag
-binfiles arch=powerpc-aix size=8
- bin/powerpc-aix/devnag
+
+name bin-devnag.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-devnag for x86_64-linux
binfiles arch=x86_64-linux size=8
bin/x86_64-linux/devnag
-binfiles arch=powerpc-darwin size=9
- bin/powerpc-darwin/devnag
name bin-dialog
category TLCore
revision 5391
+depend bin-dialog.ARCH
docfiles size=2
texmf/doc/man/man1/tcdialog.1
+
+name bin-dialog.alpha-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for alpha-linux
+binfiles arch=alpha-linux size=46
+ bin/alpha-linux/tcdialog
+
+name bin-dialog.hppa-hpux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for hppa-hpux
+binfiles arch=hppa-hpux size=36
+ bin/hppa-hpux/tcdialog
+
+name bin-dialog.i386-darwin
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for i386-darwin
+binfiles arch=i386-darwin size=35
+ bin/i386-darwin/tcdialog
+
+name bin-dialog.i386-freebsd
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for i386-freebsd
+binfiles arch=i386-freebsd size=31
+ bin/i386-freebsd/tcdialog
+
+name bin-dialog.i386-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for i386-linux
+binfiles arch=i386-linux size=30
+ bin/i386-linux/tcdialog
+
+name bin-dialog.i386-openbsd
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for i386-openbsd
binfiles arch=i386-openbsd size=29
bin/i386-openbsd/tcdialog
+
+name bin-dialog.i386-solaris
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for i386-solaris
binfiles arch=i386-solaris size=33
bin/i386-solaris/tcdialog
-binfiles arch=i386-linux size=30
- bin/i386-linux/tcdialog
-binfiles arch=hppa-hpux size=36
- bin/hppa-hpux/tcdialog
+
+name bin-dialog.mips-irix
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for mips-irix
binfiles arch=mips-irix size=53
bin/mips-irix/tcdialog
-binfiles arch=alpha-linux size=46
- bin/alpha-linux/tcdialog
+
+name bin-dialog.powerpc-aix
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for powerpc-aix
+binfiles arch=powerpc-aix size=39
+ bin/powerpc-aix/tcdialog
+
+name bin-dialog.powerpc-darwin
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for powerpc-darwin
+binfiles arch=powerpc-darwin size=32
+ bin/powerpc-darwin/tcdialog
+
+name bin-dialog.powerpc-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for powerpc-linux
+binfiles arch=powerpc-linux size=35
+ bin/powerpc-linux/tcdialog
+
+name bin-dialog.sparc-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for sparc-linux
binfiles arch=sparc-linux size=36
bin/sparc-linux/tcdialog
+
+name bin-dialog.sparc-solaris
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for sparc-solaris
binfiles arch=sparc-solaris size=67
bin/sparc-solaris/tcdialog
-binfiles arch=i386-freebsd size=31
- bin/i386-freebsd/tcdialog
-binfiles arch=i386-darwin size=35
- bin/i386-darwin/tcdialog
-binfiles arch=powerpc-linux size=35
- bin/powerpc-linux/tcdialog
-binfiles arch=powerpc-aix size=39
- bin/powerpc-aix/tcdialog
+
+name bin-dialog.win32
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for win32
+
+name bin-dialog.x86_64-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-dialog for x86_64-linux
binfiles arch=x86_64-linux size=35
bin/x86_64-linux/tcdialog
-binfiles arch=powerpc-darwin size=32
- bin/powerpc-darwin/tcdialog
name bin-dtl
category TLCore
revision 5403
+depend bin-dtl.ARCH
runfiles size=6
texmf/doc/man/man1/dt2dv.1
texmf/doc/man/man1/dv2dt.1
+
+name bin-dtl.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for alpha-linux
+binfiles arch=alpha-linux size=16
+ bin/alpha-linux/dt2dv
+ bin/alpha-linux/dv2dt
+
+name bin-dtl.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for hppa-hpux
+binfiles arch=hppa-hpux size=21
+ bin/hppa-hpux/dt2dv
+ bin/hppa-hpux/dv2dt
+
+name bin-dtl.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for i386-darwin
+binfiles arch=i386-darwin size=16
+ bin/i386-darwin/dt2dv
+ bin/i386-darwin/dv2dt
+
+name bin-dtl.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for i386-freebsd
+binfiles arch=i386-freebsd size=11
+ bin/i386-freebsd/dt2dv
+ bin/i386-freebsd/dv2dt
+
+name bin-dtl.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for i386-linux
+binfiles arch=i386-linux size=10
+ bin/i386-linux/dt2dv
+ bin/i386-linux/dv2dt
+
+name bin-dtl.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for i386-openbsd
binfiles arch=i386-openbsd size=11
bin/i386-openbsd/dt2dv
bin/i386-openbsd/dv2dt
+
+name bin-dtl.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for i386-solaris
binfiles arch=i386-solaris size=11
bin/i386-solaris/dt2dv
bin/i386-solaris/dv2dt
-binfiles arch=i386-linux size=10
- bin/i386-linux/dt2dv
- bin/i386-linux/dv2dt
-binfiles arch=hppa-hpux size=21
- bin/hppa-hpux/dt2dv
- bin/hppa-hpux/dv2dt
+
+name bin-dtl.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for mips-irix
binfiles arch=mips-irix size=19
bin/mips-irix/dt2dv
bin/mips-irix/dv2dt
-binfiles arch=alpha-linux size=16
- bin/alpha-linux/dt2dv
- bin/alpha-linux/dv2dt
+
+name bin-dtl.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for powerpc-aix
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/dt2dv
+ bin/powerpc-aix/dv2dt
+
+name bin-dtl.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for powerpc-darwin
+binfiles arch=powerpc-darwin size=15
+ bin/powerpc-darwin/dt2dv
+ bin/powerpc-darwin/dv2dt
+
+name bin-dtl.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for powerpc-linux
+binfiles arch=powerpc-linux size=12
+ bin/powerpc-linux/dt2dv
+ bin/powerpc-linux/dv2dt
+
+name bin-dtl.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for sparc-linux
binfiles arch=sparc-linux size=11
bin/sparc-linux/dt2dv
bin/sparc-linux/dv2dt
+
+name bin-dtl.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for sparc-solaris
binfiles arch=sparc-solaris size=13
bin/sparc-solaris/dt2dv
bin/sparc-solaris/dv2dt
-binfiles arch=i386-freebsd size=11
- bin/i386-freebsd/dt2dv
- bin/i386-freebsd/dv2dt
+
+name bin-dtl.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for win32
binfiles arch=win32 size=9
bin/win32/dt2dv.exe
bin/win32/dv2dt.exe
-binfiles arch=i386-darwin size=16
- bin/i386-darwin/dt2dv
- bin/i386-darwin/dv2dt
-binfiles arch=powerpc-linux size=12
- bin/powerpc-linux/dt2dv
- bin/powerpc-linux/dv2dt
-binfiles arch=powerpc-aix size=12
- bin/powerpc-aix/dt2dv
- bin/powerpc-aix/dv2dt
+
+name bin-dtl.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dtl for x86_64-linux
binfiles arch=x86_64-linux size=14
bin/x86_64-linux/dt2dv
bin/x86_64-linux/dv2dt
-binfiles arch=powerpc-darwin size=15
- bin/powerpc-darwin/dt2dv
- bin/powerpc-darwin/dv2dt
name bin-dvi2tty
category TLCore
revision 5403
+depend bin-dvi2tty.ARCH
runfiles size=2
texmf/doc/man/man1/dvi2tty.1
+
+name bin-dvi2tty.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for alpha-linux
+binfiles arch=alpha-linux size=12
+ bin/alpha-linux/disdvi
+ bin/alpha-linux/dvi2tty
+
+name bin-dvi2tty.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for hppa-hpux
+binfiles arch=hppa-hpux size=19
+ bin/hppa-hpux/disdvi
+ bin/hppa-hpux/dvi2tty
+
+name bin-dvi2tty.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for i386-darwin
+binfiles arch=i386-darwin size=14
+ bin/i386-darwin/disdvi
+ bin/i386-darwin/dvi2tty
+
+name bin-dvi2tty.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for i386-freebsd
+binfiles arch=i386-freebsd size=8
+ bin/i386-freebsd/disdvi
+ bin/i386-freebsd/dvi2tty
+
+name bin-dvi2tty.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for i386-linux
+binfiles arch=i386-linux size=8
+ bin/i386-linux/disdvi
+ bin/i386-linux/dvi2tty
+
+name bin-dvi2tty.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for i386-openbsd
binfiles arch=i386-openbsd size=9
bin/i386-openbsd/disdvi
bin/i386-openbsd/dvi2tty
+
+name bin-dvi2tty.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for i386-solaris
binfiles arch=i386-solaris size=9
bin/i386-solaris/disdvi
bin/i386-solaris/dvi2tty
-binfiles arch=i386-linux size=8
- bin/i386-linux/disdvi
- bin/i386-linux/dvi2tty
-binfiles arch=hppa-hpux size=19
- bin/hppa-hpux/disdvi
- bin/hppa-hpux/dvi2tty
+
+name bin-dvi2tty.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for mips-irix
binfiles arch=mips-irix size=17
bin/mips-irix/disdvi
bin/mips-irix/dvi2tty
-binfiles arch=alpha-linux size=12
- bin/alpha-linux/disdvi
- bin/alpha-linux/dvi2tty
+
+name bin-dvi2tty.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for powerpc-aix
+binfiles arch=powerpc-aix size=8
+ bin/powerpc-aix/disdvi
+ bin/powerpc-aix/dvi2tty
+
+name bin-dvi2tty.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for powerpc-darwin
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/disdvi
+ bin/powerpc-darwin/dvi2tty
+
+name bin-dvi2tty.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for powerpc-linux
+binfiles arch=powerpc-linux size=9
+ bin/powerpc-linux/disdvi
+ bin/powerpc-linux/dvi2tty
+
+name bin-dvi2tty.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for sparc-linux
binfiles arch=sparc-linux size=9
bin/sparc-linux/disdvi
bin/sparc-linux/dvi2tty
+
+name bin-dvi2tty.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for sparc-solaris
binfiles arch=sparc-solaris size=11
bin/sparc-solaris/disdvi
bin/sparc-solaris/dvi2tty
-binfiles arch=i386-freebsd size=8
- bin/i386-freebsd/disdvi
- bin/i386-freebsd/dvi2tty
+
+name bin-dvi2tty.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for win32
binfiles arch=win32 size=8
bin/win32/disdvi.exe
bin/win32/dvi2tty.exe
-binfiles arch=i386-darwin size=14
- bin/i386-darwin/disdvi
- bin/i386-darwin/dvi2tty
-binfiles arch=powerpc-linux size=9
- bin/powerpc-linux/disdvi
- bin/powerpc-linux/dvi2tty
-binfiles arch=powerpc-aix size=8
- bin/powerpc-aix/disdvi
- bin/powerpc-aix/dvi2tty
+
+name bin-dvi2tty.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvi2tty for x86_64-linux
binfiles arch=x86_64-linux size=11
bin/x86_64-linux/disdvi
bin/x86_64-linux/dvi2tty
-binfiles arch=powerpc-darwin size=12
- bin/powerpc-darwin/disdvi
- bin/powerpc-darwin/dvi2tty
name bin-dvicopy
category TLCore
revision 5403
+depend bin-dvicopy.ARCH
docfiles size=1
texmf/doc/man/man1/dvicopy.1
+
+name bin-dvicopy.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for alpha-linux
+binfiles arch=alpha-linux size=39
+ bin/alpha-linux/dvicopy
+
+name bin-dvicopy.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for hppa-hpux
+binfiles arch=hppa-hpux size=35
+ bin/hppa-hpux/dvicopy
+
+name bin-dvicopy.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for i386-darwin
+binfiles arch=i386-darwin size=30
+ bin/i386-darwin/dvicopy
+
+name bin-dvicopy.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for i386-freebsd
+binfiles arch=i386-freebsd size=26
+ bin/i386-freebsd/dvicopy
+
+name bin-dvicopy.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for i386-linux
+binfiles arch=i386-linux size=22
+ bin/i386-linux/dvicopy
+
+name bin-dvicopy.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for i386-openbsd
binfiles arch=i386-openbsd size=24
bin/i386-openbsd/dvicopy
+
+name bin-dvicopy.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for i386-solaris
binfiles arch=i386-solaris size=28
bin/i386-solaris/dvicopy
-binfiles arch=i386-linux size=22
- bin/i386-linux/dvicopy
-binfiles arch=hppa-hpux size=35
- bin/hppa-hpux/dvicopy
+
+name bin-dvicopy.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for mips-irix
binfiles arch=mips-irix size=48
bin/mips-irix/dvicopy
-binfiles arch=alpha-linux size=39
- bin/alpha-linux/dvicopy
+
+name bin-dvicopy.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for powerpc-aix
+binfiles arch=powerpc-aix size=32
+ bin/powerpc-aix/dvicopy
+
+name bin-dvicopy.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for powerpc-darwin
+binfiles arch=powerpc-darwin size=29
+ bin/powerpc-darwin/dvicopy
+
+name bin-dvicopy.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for powerpc-linux
+binfiles arch=powerpc-linux size=27
+ bin/powerpc-linux/dvicopy
+
+name bin-dvicopy.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for sparc-linux
binfiles arch=sparc-linux size=26
bin/sparc-linux/dvicopy
+
+name bin-dvicopy.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for sparc-solaris
binfiles arch=sparc-solaris size=51
bin/sparc-solaris/dvicopy
-binfiles arch=i386-freebsd size=26
- bin/i386-freebsd/dvicopy
+
+name bin-dvicopy.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for win32
binfiles arch=win32 size=10
bin/win32/dvicopy.exe
-binfiles arch=i386-darwin size=30
- bin/i386-darwin/dvicopy
-binfiles arch=powerpc-linux size=27
- bin/powerpc-linux/dvicopy
-binfiles arch=powerpc-aix size=32
- bin/powerpc-aix/dvicopy
+
+name bin-dvicopy.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvicopy for x86_64-linux
binfiles arch=x86_64-linux size=27
bin/x86_64-linux/dvicopy
-binfiles arch=powerpc-darwin size=29
- bin/powerpc-darwin/dvicopy
name bin-dvidvi
category TLCore
revision 5403
+depend bin-dvidvi.ARCH
runfiles size=2
texmf/doc/man/man1/dvidvi.1
+
+name bin-dvidvi.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for alpha-linux
+binfiles arch=alpha-linux size=8
+ bin/alpha-linux/dvidvi
+
+name bin-dvidvi.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for hppa-hpux
+binfiles arch=hppa-hpux size=9
+ bin/hppa-hpux/dvidvi
+
+name bin-dvidvi.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for i386-darwin
+binfiles arch=i386-darwin size=7
+ bin/i386-darwin/dvidvi
+
+name bin-dvidvi.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for i386-freebsd
+binfiles arch=i386-freebsd size=5
+ bin/i386-freebsd/dvidvi
+
+name bin-dvidvi.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for i386-linux
+binfiles arch=i386-linux size=4
+ bin/i386-linux/dvidvi
+
+name bin-dvidvi.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for i386-openbsd
binfiles arch=i386-openbsd size=5
bin/i386-openbsd/dvidvi
+
+name bin-dvidvi.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for i386-solaris
binfiles arch=i386-solaris size=5
bin/i386-solaris/dvidvi
-binfiles arch=i386-linux size=4
- bin/i386-linux/dvidvi
-binfiles arch=hppa-hpux size=9
- bin/hppa-hpux/dvidvi
+
+name bin-dvidvi.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for mips-irix
binfiles arch=mips-irix size=10
bin/mips-irix/dvidvi
-binfiles arch=alpha-linux size=8
- bin/alpha-linux/dvidvi
+
+name bin-dvidvi.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for powerpc-aix
+binfiles arch=powerpc-aix size=5
+ bin/powerpc-aix/dvidvi
+
+name bin-dvidvi.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for powerpc-darwin
+binfiles arch=powerpc-darwin size=7
+ bin/powerpc-darwin/dvidvi
+
+name bin-dvidvi.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for powerpc-linux
+binfiles arch=powerpc-linux size=5
+ bin/powerpc-linux/dvidvi
+
+name bin-dvidvi.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for sparc-linux
binfiles arch=sparc-linux size=5
bin/sparc-linux/dvidvi
+
+name bin-dvidvi.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for sparc-solaris
binfiles arch=sparc-solaris size=6
bin/sparc-solaris/dvidvi
-binfiles arch=i386-freebsd size=5
- bin/i386-freebsd/dvidvi
+
+name bin-dvidvi.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for win32
binfiles arch=win32 size=6
bin/win32/a5bookle.bat
bin/win32/doubside.bat
bin/win32/dvidvi.exe
-binfiles arch=i386-darwin size=7
- bin/i386-darwin/dvidvi
-binfiles arch=powerpc-linux size=5
- bin/powerpc-linux/dvidvi
-binfiles arch=powerpc-aix size=5
- bin/powerpc-aix/dvidvi
+
+name bin-dvidvi.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvidvi for x86_64-linux
binfiles arch=x86_64-linux size=6
bin/x86_64-linux/dvidvi
-binfiles arch=powerpc-darwin size=7
- bin/powerpc-darwin/dvidvi
name bin-dviljk
category TLCore
revision 5403
+depend bin-dviljk.ARCH
docfiles size=8
texmf/doc/man/man1/dvihp.1
texmf/doc/man/man1/dvilj.1
@@ -10163,6 +11972,71 @@ docfiles size=8
texmf/doc/man/man1/dvilj4.1
texmf/doc/man/man1/dvilj4l.1
texmf/doc/man/man1/dvilj6.1
+
+name bin-dviljk.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for alpha-linux
+binfiles arch=alpha-linux size=144
+ bin/alpha-linux/dvihp
+ bin/alpha-linux/dvilj
+ bin/alpha-linux/dvilj2p
+ bin/alpha-linux/dvilj4
+ bin/alpha-linux/dvilj4l
+ bin/alpha-linux/dvilj6
+
+name bin-dviljk.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for hppa-hpux
+binfiles arch=hppa-hpux size=125
+ bin/hppa-hpux/dvihp
+ bin/hppa-hpux/dvilj
+ bin/hppa-hpux/dvilj2p
+ bin/hppa-hpux/dvilj4
+ bin/hppa-hpux/dvilj4l
+ bin/hppa-hpux/dvilj6
+
+name bin-dviljk.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for i386-darwin
+binfiles arch=i386-darwin size=115
+ bin/i386-darwin/dvihp
+ bin/i386-darwin/dvilj
+ bin/i386-darwin/dvilj2p
+ bin/i386-darwin/dvilj4
+ bin/i386-darwin/dvilj4l
+ bin/i386-darwin/dvilj6
+
+name bin-dviljk.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for i386-freebsd
+binfiles arch=i386-freebsd size=93
+ bin/i386-freebsd/dvihp
+ bin/i386-freebsd/dvilj
+ bin/i386-freebsd/dvilj2p
+ bin/i386-freebsd/dvilj4
+ bin/i386-freebsd/dvilj4l
+ bin/i386-freebsd/dvilj6
+
+name bin-dviljk.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for i386-linux
+binfiles arch=i386-linux size=91
+ bin/i386-linux/dvihp
+ bin/i386-linux/dvilj
+ bin/i386-linux/dvilj2p
+ bin/i386-linux/dvilj4
+ bin/i386-linux/dvilj4l
+ bin/i386-linux/dvilj6
+
+name bin-dviljk.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for i386-openbsd
binfiles arch=i386-openbsd size=93
bin/i386-openbsd/dvihp
bin/i386-openbsd/dvilj
@@ -10170,6 +12044,11 @@ binfiles arch=i386-openbsd size=93
bin/i386-openbsd/dvilj4
bin/i386-openbsd/dvilj4l
bin/i386-openbsd/dvilj6
+
+name bin-dviljk.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for i386-solaris
binfiles arch=i386-solaris size=99
bin/i386-solaris/dvihp
bin/i386-solaris/dvilj
@@ -10177,20 +12056,11 @@ binfiles arch=i386-solaris size=99
bin/i386-solaris/dvilj4
bin/i386-solaris/dvilj4l
bin/i386-solaris/dvilj6
-binfiles arch=i386-linux size=91
- bin/i386-linux/dvihp
- bin/i386-linux/dvilj
- bin/i386-linux/dvilj2p
- bin/i386-linux/dvilj4
- bin/i386-linux/dvilj4l
- bin/i386-linux/dvilj6
-binfiles arch=hppa-hpux size=125
- bin/hppa-hpux/dvihp
- bin/hppa-hpux/dvilj
- bin/hppa-hpux/dvilj2p
- bin/hppa-hpux/dvilj4
- bin/hppa-hpux/dvilj4l
- bin/hppa-hpux/dvilj6
+
+name bin-dviljk.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for mips-irix
binfiles arch=mips-irix size=167
bin/mips-irix/dvihp
bin/mips-irix/dvilj
@@ -10198,13 +12068,47 @@ binfiles arch=mips-irix size=167
bin/mips-irix/dvilj4
bin/mips-irix/dvilj4l
bin/mips-irix/dvilj6
-binfiles arch=alpha-linux size=144
- bin/alpha-linux/dvihp
- bin/alpha-linux/dvilj
- bin/alpha-linux/dvilj2p
- bin/alpha-linux/dvilj4
- bin/alpha-linux/dvilj4l
- bin/alpha-linux/dvilj6
+
+name bin-dviljk.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for powerpc-aix
+binfiles arch=powerpc-aix size=111
+ bin/powerpc-aix/dvihp
+ bin/powerpc-aix/dvilj
+ bin/powerpc-aix/dvilj2p
+ bin/powerpc-aix/dvilj4
+ bin/powerpc-aix/dvilj4l
+ bin/powerpc-aix/dvilj6
+
+name bin-dviljk.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for powerpc-darwin
+binfiles arch=powerpc-darwin size=109
+ bin/powerpc-darwin/dvihp
+ bin/powerpc-darwin/dvilj
+ bin/powerpc-darwin/dvilj2p
+ bin/powerpc-darwin/dvilj4
+ bin/powerpc-darwin/dvilj4l
+ bin/powerpc-darwin/dvilj6
+
+name bin-dviljk.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for powerpc-linux
+binfiles arch=powerpc-linux size=107
+ bin/powerpc-linux/dvihp
+ bin/powerpc-linux/dvilj
+ bin/powerpc-linux/dvilj2p
+ bin/powerpc-linux/dvilj4
+ bin/powerpc-linux/dvilj4l
+ bin/powerpc-linux/dvilj6
+
+name bin-dviljk.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for sparc-linux
binfiles arch=sparc-linux size=103
bin/sparc-linux/dvihp
bin/sparc-linux/dvilj
@@ -10212,6 +12116,11 @@ binfiles arch=sparc-linux size=103
bin/sparc-linux/dvilj4
bin/sparc-linux/dvilj4l
bin/sparc-linux/dvilj6
+
+name bin-dviljk.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for sparc-solaris
binfiles arch=sparc-solaris size=175
bin/sparc-solaris/dvihp
bin/sparc-solaris/dvilj
@@ -10219,13 +12128,11 @@ binfiles arch=sparc-solaris size=175
bin/sparc-solaris/dvilj4
bin/sparc-solaris/dvilj4l
bin/sparc-solaris/dvilj6
-binfiles arch=i386-freebsd size=93
- bin/i386-freebsd/dvihp
- bin/i386-freebsd/dvilj
- bin/i386-freebsd/dvilj2p
- bin/i386-freebsd/dvilj4
- bin/i386-freebsd/dvilj4l
- bin/i386-freebsd/dvilj6
+
+name bin-dviljk.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for win32
binfiles arch=win32 size=50
bin/win32/dvihp.exe
bin/win32/dvilj.exe
@@ -10233,27 +12140,11 @@ binfiles arch=win32 size=50
bin/win32/dvilj4.exe
bin/win32/dvilj4l.exe
bin/win32/dvilj6.exe
-binfiles arch=i386-darwin size=115
- bin/i386-darwin/dvihp
- bin/i386-darwin/dvilj
- bin/i386-darwin/dvilj2p
- bin/i386-darwin/dvilj4
- bin/i386-darwin/dvilj4l
- bin/i386-darwin/dvilj6
-binfiles arch=powerpc-linux size=107
- bin/powerpc-linux/dvihp
- bin/powerpc-linux/dvilj
- bin/powerpc-linux/dvilj2p
- bin/powerpc-linux/dvilj4
- bin/powerpc-linux/dvilj4l
- bin/powerpc-linux/dvilj6
-binfiles arch=powerpc-aix size=111
- bin/powerpc-aix/dvihp
- bin/powerpc-aix/dvilj
- bin/powerpc-aix/dvilj2p
- bin/powerpc-aix/dvilj4
- bin/powerpc-aix/dvilj4l
- bin/powerpc-aix/dvilj6
+
+name bin-dviljk.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dviljk for x86_64-linux
binfiles arch=x86_64-linux size=109
bin/x86_64-linux/dvihp
bin/x86_64-linux/dvilj
@@ -10261,17 +12152,11 @@ binfiles arch=x86_64-linux size=109
bin/x86_64-linux/dvilj4
bin/x86_64-linux/dvilj4l
bin/x86_64-linux/dvilj6
-binfiles arch=powerpc-darwin size=109
- bin/powerpc-darwin/dvihp
- bin/powerpc-darwin/dvilj
- bin/powerpc-darwin/dvilj2p
- bin/powerpc-darwin/dvilj4
- bin/powerpc-darwin/dvilj4l
- bin/powerpc-darwin/dvilj6
name bin-dvipdfm
category TLCore
revision 5510
+depend bin-dvipdfm.ARCH
docfiles size=74
texmf/doc/dvipdfm/Makefile
texmf/doc/dvipdfm/dvipdfm.pdf
@@ -10297,70 +12182,146 @@ runfiles size=142
texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
texmf/tex/latex/dvipdfm/dvipdfm.def
+
+name bin-dvipdfm.alpha-linux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for alpha-linux
+binfiles arch=alpha-linux size=227
+ bin/alpha-linux/dvipdfm
+ bin/alpha-linux/dvipdft
+ bin/alpha-linux/ebb
+
+name bin-dvipdfm.hppa-hpux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for hppa-hpux
+binfiles arch=hppa-hpux size=180
+ bin/hppa-hpux/dvipdfm
+ bin/hppa-hpux/dvipdft
+ bin/hppa-hpux/ebb
+
+name bin-dvipdfm.i386-darwin
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for i386-darwin
+binfiles arch=i386-darwin size=136
+ bin/i386-darwin/dvipdfm
+ bin/i386-darwin/dvipdft
+ bin/i386-darwin/ebb
+
+name bin-dvipdfm.i386-freebsd
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for i386-freebsd
+binfiles arch=i386-freebsd size=133
+ bin/i386-freebsd/dvipdfm
+ bin/i386-freebsd/dvipdft
+ bin/i386-freebsd/ebb
+
+name bin-dvipdfm.i386-linux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for i386-linux
+binfiles arch=i386-linux size=135
+ bin/i386-linux/dvipdfm
+ bin/i386-linux/dvipdft
+ bin/i386-linux/ebb
+
+name bin-dvipdfm.i386-openbsd
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for i386-openbsd
binfiles arch=i386-openbsd size=135
bin/i386-openbsd/dvipdfm
bin/i386-openbsd/dvipdft
bin/i386-openbsd/ebb
+
+name bin-dvipdfm.i386-solaris
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for i386-solaris
binfiles arch=i386-solaris size=145
bin/i386-solaris/dvipdfm
bin/i386-solaris/dvipdft
bin/i386-solaris/ebb
-binfiles arch=i386-linux size=135
- bin/i386-linux/dvipdfm
- bin/i386-linux/dvipdft
- bin/i386-linux/ebb
-binfiles arch=hppa-hpux size=180
- bin/hppa-hpux/dvipdfm
- bin/hppa-hpux/dvipdft
- bin/hppa-hpux/ebb
+
+name bin-dvipdfm.mips-irix
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for mips-irix
binfiles arch=mips-irix size=251
bin/mips-irix/dvipdfm
bin/mips-irix/dvipdft
bin/mips-irix/ebb
-binfiles arch=alpha-linux size=227
- bin/alpha-linux/dvipdfm
- bin/alpha-linux/dvipdft
- bin/alpha-linux/ebb
+
+name bin-dvipdfm.powerpc-aix
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for powerpc-aix
+binfiles arch=powerpc-aix size=186
+ bin/powerpc-aix/dvipdfm
+ bin/powerpc-aix/dvipdft
+ bin/powerpc-aix/ebb
+
+name bin-dvipdfm.powerpc-darwin
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for powerpc-darwin
+binfiles arch=powerpc-darwin size=129
+ bin/powerpc-darwin/dvipdfm
+ bin/powerpc-darwin/dvipdft
+ bin/powerpc-darwin/ebb
+
+name bin-dvipdfm.powerpc-linux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for powerpc-linux
+binfiles arch=powerpc-linux size=154
+ bin/powerpc-linux/dvipdfm
+ bin/powerpc-linux/dvipdft
+ bin/powerpc-linux/ebb
+
+name bin-dvipdfm.sparc-linux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for sparc-linux
binfiles arch=sparc-linux size=150
bin/sparc-linux/dvipdfm
bin/sparc-linux/dvipdft
bin/sparc-linux/ebb
+
+name bin-dvipdfm.sparc-solaris
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for sparc-solaris
binfiles arch=sparc-solaris size=232
bin/sparc-solaris/dvipdfm
bin/sparc-solaris/dvipdft
bin/sparc-solaris/ebb
-binfiles arch=i386-freebsd size=133
- bin/i386-freebsd/dvipdfm
- bin/i386-freebsd/dvipdft
- bin/i386-freebsd/ebb
+
+name bin-dvipdfm.win32
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for win32
binfiles arch=win32 size=117
bin/win32/dvipdfm.exe
bin/win32/ebb.exe
-binfiles arch=i386-darwin size=136
- bin/i386-darwin/dvipdfm
- bin/i386-darwin/dvipdft
- bin/i386-darwin/ebb
-binfiles arch=powerpc-linux size=154
- bin/powerpc-linux/dvipdfm
- bin/powerpc-linux/dvipdft
- bin/powerpc-linux/ebb
-binfiles arch=powerpc-aix size=186
- bin/powerpc-aix/dvipdfm
- bin/powerpc-aix/dvipdft
- bin/powerpc-aix/ebb
+
+name bin-dvipdfm.x86_64-linux
+category TLCore
+revision 5510
+shortdesc binary files of bin-dvipdfm for x86_64-linux
binfiles arch=x86_64-linux size=170
bin/x86_64-linux/dvipdfm
bin/x86_64-linux/dvipdft
bin/x86_64-linux/ebb
-binfiles arch=powerpc-darwin size=129
- bin/powerpc-darwin/dvipdfm
- bin/powerpc-darwin/dvipdft
- bin/powerpc-darwin/ebb
name bin-dvipdfmx
category TLCore
revision 5403
depend glyphlist
+depend bin-dvipdfmx.ARCH
runfiles size=33
texmf/dvipdfm/EUC-UCS2
texmf/dvipdfm/README
@@ -10369,114 +12330,342 @@ runfiles size=33
texmf/dvipdfm/dvipdfmx.cfg
texmf/fonts/map/dvipdfm/dvipdfmx/cid-x.map
texmf/tex/latex/dvipdfmx/dvipdfmx.def
+
+name bin-dvipdfmx.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for alpha-linux
+binfiles arch=alpha-linux size=265
+ bin/alpha-linux/dvipdfmx
+
+name bin-dvipdfmx.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for hppa-hpux
+binfiles arch=hppa-hpux size=205
+ bin/hppa-hpux/dvipdfmx
+
+name bin-dvipdfmx.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for i386-darwin
+binfiles arch=i386-darwin size=173
+ bin/i386-darwin/dvipdfmx
+
+name bin-dvipdfmx.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for i386-freebsd
+binfiles arch=i386-freebsd size=160
+ bin/i386-freebsd/dvipdfmx
+
+name bin-dvipdfmx.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for i386-linux
+binfiles arch=i386-linux size=162
+ bin/i386-linux/dvipdfmx
+
+name bin-dvipdfmx.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for i386-openbsd
binfiles arch=i386-openbsd size=165
bin/i386-openbsd/dvipdfmx
+
+name bin-dvipdfmx.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for i386-solaris
binfiles arch=i386-solaris size=172
bin/i386-solaris/dvipdfmx
-binfiles arch=i386-linux size=162
- bin/i386-linux/dvipdfmx
-binfiles arch=hppa-hpux size=205
- bin/hppa-hpux/dvipdfmx
+
+name bin-dvipdfmx.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for mips-irix
binfiles arch=mips-irix size=292
bin/mips-irix/dvipdfmx
-binfiles arch=alpha-linux size=265
- bin/alpha-linux/dvipdfmx
+
+name bin-dvipdfmx.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for powerpc-aix
+binfiles arch=powerpc-aix size=230
+ bin/powerpc-aix/dvipdfmx
+
+name bin-dvipdfmx.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for powerpc-darwin
+binfiles arch=powerpc-darwin size=166
+ bin/powerpc-darwin/dvipdfmx
+
+name bin-dvipdfmx.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for powerpc-linux
+binfiles arch=powerpc-linux size=180
+ bin/powerpc-linux/dvipdfmx
+
+name bin-dvipdfmx.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for sparc-linux
binfiles arch=sparc-linux size=173
bin/sparc-linux/dvipdfmx
+
+name bin-dvipdfmx.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for sparc-solaris
binfiles arch=sparc-solaris size=266
bin/sparc-solaris/dvipdfmx
-binfiles arch=i386-freebsd size=160
- bin/i386-freebsd/dvipdfmx
+
+name bin-dvipdfmx.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for win32
binfiles arch=win32 size=179
bin/win32/dvipdfmx.exe
-binfiles arch=i386-darwin size=173
- bin/i386-darwin/dvipdfmx
-binfiles arch=powerpc-linux size=180
- bin/powerpc-linux/dvipdfmx
-binfiles arch=powerpc-aix size=230
- bin/powerpc-aix/dvipdfmx
+
+name bin-dvipdfmx.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipdfmx for x86_64-linux
binfiles arch=x86_64-linux size=198
bin/x86_64-linux/dvipdfmx
-binfiles arch=powerpc-darwin size=166
- bin/powerpc-darwin/dvipdfmx
name bin-dvipng
category TLCore
revision 5403
+depend bin-dvipng.ARCH
docfiles size=35
texmf/doc/dvipng/dvipng.html
texmf/doc/info/dvipng.info
texmf/doc/man/man1/dvipng.1
+
+name bin-dvipng.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for alpha-linux
+binfiles arch=alpha-linux size=297
+ bin/alpha-linux/dvipng
+
+name bin-dvipng.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for hppa-hpux
+binfiles arch=hppa-hpux size=254
+ bin/hppa-hpux/dvipng
+
+name bin-dvipng.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for i386-darwin
+binfiles arch=i386-darwin size=209
+ bin/i386-darwin/dvipng
+
+name bin-dvipng.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for i386-freebsd
+binfiles arch=i386-freebsd size=192
+ bin/i386-freebsd/dvipng
+
+name bin-dvipng.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for i386-linux
+binfiles arch=i386-linux size=193
+ bin/i386-linux/dvipng
+
+name bin-dvipng.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for i386-openbsd
binfiles arch=i386-openbsd size=118
bin/i386-openbsd/dvipng
+
+name bin-dvipng.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for i386-solaris
binfiles arch=i386-solaris size=205
bin/i386-solaris/dvipng
-binfiles arch=i386-linux size=193
- bin/i386-linux/dvipng
-binfiles arch=hppa-hpux size=254
- bin/hppa-hpux/dvipng
+
+name bin-dvipng.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for mips-irix
binfiles arch=mips-irix size=334
bin/mips-irix/dvipng
-binfiles arch=alpha-linux size=297
- bin/alpha-linux/dvipng
+
+name bin-dvipng.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for powerpc-aix
+binfiles arch=powerpc-aix size=258
+ bin/powerpc-aix/dvipng
+
+name bin-dvipng.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for powerpc-darwin
+binfiles arch=powerpc-darwin size=204
+ bin/powerpc-darwin/dvipng
+
+name bin-dvipng.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for powerpc-linux
+binfiles arch=powerpc-linux size=224
+ bin/powerpc-linux/dvipng
+
+name bin-dvipng.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for sparc-linux
binfiles arch=sparc-linux size=212
bin/sparc-linux/dvipng
+
+name bin-dvipng.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for sparc-solaris
binfiles arch=sparc-solaris size=301
bin/sparc-solaris/dvipng
-binfiles arch=i386-freebsd size=192
- bin/i386-freebsd/dvipng
+
+name bin-dvipng.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for win32
binfiles arch=win32 size=171
bin/win32/dvipng.exe
-binfiles arch=i386-darwin size=209
- bin/i386-darwin/dvipng
-binfiles arch=powerpc-linux size=224
- bin/powerpc-linux/dvipng
-binfiles arch=powerpc-aix size=258
- bin/powerpc-aix/dvipng
+
+name bin-dvipng.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipng for x86_64-linux
binfiles arch=x86_64-linux size=236
bin/x86_64-linux/dvipng
-binfiles arch=powerpc-darwin size=204
- bin/powerpc-darwin/dvipng
name bin-dvipos
category TLCore
revision 5403
+depend bin-dvipos.ARCH
docfiles size=1
texmf/doc/man/man1/dvipos.1
+
+name bin-dvipos.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for alpha-linux
+binfiles arch=alpha-linux size=33
+ bin/alpha-linux/dvipos
+
+name bin-dvipos.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for hppa-hpux
+binfiles arch=hppa-hpux size=33
+ bin/hppa-hpux/dvipos
+
+name bin-dvipos.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for i386-darwin
+binfiles arch=i386-darwin size=26
+ bin/i386-darwin/dvipos
+
+name bin-dvipos.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for i386-freebsd
+binfiles arch=i386-freebsd size=21
+ bin/i386-freebsd/dvipos
+
+name bin-dvipos.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for i386-linux
+binfiles arch=i386-linux size=20
+ bin/i386-linux/dvipos
+
+name bin-dvipos.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for i386-openbsd
binfiles arch=i386-openbsd size=21
bin/i386-openbsd/dvipos
+
+name bin-dvipos.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for i386-solaris
binfiles arch=i386-solaris size=22
bin/i386-solaris/dvipos
-binfiles arch=i386-linux size=20
- bin/i386-linux/dvipos
-binfiles arch=hppa-hpux size=33
- bin/hppa-hpux/dvipos
+
+name bin-dvipos.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for mips-irix
binfiles arch=mips-irix size=40
bin/mips-irix/dvipos
-binfiles arch=alpha-linux size=33
- bin/alpha-linux/dvipos
+
+name bin-dvipos.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for powerpc-aix
+binfiles arch=powerpc-aix size=26
+ bin/powerpc-aix/dvipos
+
+name bin-dvipos.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for powerpc-darwin
+binfiles arch=powerpc-darwin size=25
+ bin/powerpc-darwin/dvipos
+
+name bin-dvipos.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for powerpc-linux
+binfiles arch=powerpc-linux size=23
+ bin/powerpc-linux/dvipos
+
+name bin-dvipos.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for sparc-linux
binfiles arch=sparc-linux size=22
bin/sparc-linux/dvipos
+
+name bin-dvipos.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for sparc-solaris
binfiles arch=sparc-solaris size=42
bin/sparc-solaris/dvipos
-binfiles arch=i386-freebsd size=21
- bin/i386-freebsd/dvipos
+
+name bin-dvipos.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for win32
binfiles arch=win32 size=8
bin/win32/dvipos.exe
-binfiles arch=i386-darwin size=26
- bin/i386-darwin/dvipos
-binfiles arch=powerpc-linux size=23
- bin/powerpc-linux/dvipos
-binfiles arch=powerpc-aix size=26
- bin/powerpc-aix/dvipos
+
+name bin-dvipos.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipos for x86_64-linux
binfiles arch=x86_64-linux size=26
bin/x86_64-linux/dvipos
-binfiles arch=powerpc-darwin size=25
- bin/powerpc-darwin/dvipos
name bin-dvipsk
category TLCore
revision 5403
+depend bin-dvipsk.ARCH
docfiles size=239
texmf/doc/dvips/dvips.html
texmf/doc/dvips/dvips.pdf
@@ -10530,475 +12719,1356 @@ runfiles size=504
texmf/fonts/map/dvips/updmap/psfonts_pk.map
texmf/fonts/map/dvips/updmap/psfonts_t1.map
texmf/scripts/pkfix/pkfix.pl
+
+name bin-dvipsk.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for alpha-linux
+binfiles arch=alpha-linux size=116
+ bin/alpha-linux/afm2tfm
+ bin/alpha-linux/dvips
+ bin/alpha-linux/pkfix
+
+name bin-dvipsk.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for hppa-hpux
+binfiles arch=hppa-hpux size=105
+ bin/hppa-hpux/afm2tfm
+ bin/hppa-hpux/dvips
+ bin/hppa-hpux/pkfix
+
+name bin-dvipsk.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for i386-darwin
+binfiles arch=i386-darwin size=88
+ bin/i386-darwin/afm2tfm
+ bin/i386-darwin/dvips
+ bin/i386-darwin/pkfix
+
+name bin-dvipsk.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for i386-freebsd
+binfiles arch=i386-freebsd size=77
+ bin/i386-freebsd/afm2tfm
+ bin/i386-freebsd/dvips
+ bin/i386-freebsd/pkfix
+
+name bin-dvipsk.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for i386-linux
+binfiles arch=i386-linux size=178
+ bin/i386-linux/afm2tfm
+ bin/i386-linux/dvips
+ bin/i386-linux/pkfix
+
+name bin-dvipsk.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for i386-openbsd
binfiles arch=i386-openbsd size=76
bin/i386-openbsd/afm2tfm
bin/i386-openbsd/dvips
bin/i386-openbsd/pkfix
+
+name bin-dvipsk.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for i386-solaris
binfiles arch=i386-solaris size=82
bin/i386-solaris/afm2tfm
bin/i386-solaris/dvips
bin/i386-solaris/pkfix
-binfiles arch=i386-linux size=178
- bin/i386-linux/afm2tfm
- bin/i386-linux/dvips
- bin/i386-linux/pkfix
-binfiles arch=hppa-hpux size=105
- bin/hppa-hpux/afm2tfm
- bin/hppa-hpux/dvips
- bin/hppa-hpux/pkfix
+
+name bin-dvipsk.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for mips-irix
binfiles arch=mips-irix size=135
bin/mips-irix/afm2tfm
bin/mips-irix/dvips
bin/mips-irix/pkfix
-binfiles arch=alpha-linux size=116
- bin/alpha-linux/afm2tfm
- bin/alpha-linux/dvips
- bin/alpha-linux/pkfix
+
+name bin-dvipsk.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for powerpc-aix
+binfiles arch=powerpc-aix size=96
+ bin/powerpc-aix/afm2tfm
+ bin/powerpc-aix/dvips
+ bin/powerpc-aix/pkfix
+
+name bin-dvipsk.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for powerpc-darwin
+binfiles arch=powerpc-darwin size=88
+ bin/powerpc-darwin/afm2tfm
+ bin/powerpc-darwin/dvips
+ bin/powerpc-darwin/pkfix
+
+name bin-dvipsk.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for powerpc-linux
+binfiles arch=powerpc-linux size=89
+ bin/powerpc-linux/afm2tfm
+ bin/powerpc-linux/dvips
+ bin/powerpc-linux/pkfix
+
+name bin-dvipsk.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for sparc-linux
binfiles arch=sparc-linux size=87
bin/sparc-linux/afm2tfm
bin/sparc-linux/dvips
bin/sparc-linux/pkfix
+
+name bin-dvipsk.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for sparc-solaris
binfiles arch=sparc-solaris size=136
bin/sparc-solaris/afm2tfm
bin/sparc-solaris/dvips
bin/sparc-solaris/pkfix
-binfiles arch=i386-freebsd size=77
- bin/i386-freebsd/afm2tfm
- bin/i386-freebsd/dvips
- bin/i386-freebsd/pkfix
+
+name bin-dvipsk.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for win32
binfiles arch=win32 size=40
bin/win32/afm2tfm.exe
bin/win32/dvips.exe
bin/win32/pkfix.exe
-binfiles arch=i386-darwin size=88
- bin/i386-darwin/afm2tfm
- bin/i386-darwin/dvips
- bin/i386-darwin/pkfix
-binfiles arch=powerpc-linux size=89
- bin/powerpc-linux/afm2tfm
- bin/powerpc-linux/dvips
- bin/powerpc-linux/pkfix
-binfiles arch=powerpc-aix size=96
- bin/powerpc-aix/afm2tfm
- bin/powerpc-aix/dvips
- bin/powerpc-aix/pkfix
+
+name bin-dvipsk.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-dvipsk for x86_64-linux
binfiles arch=x86_64-linux size=88
bin/x86_64-linux/afm2tfm
bin/x86_64-linux/dvips
bin/x86_64-linux/pkfix
-binfiles arch=powerpc-darwin size=88
- bin/powerpc-darwin/afm2tfm
- bin/powerpc-darwin/dvips
- bin/powerpc-darwin/pkfix
name bin-ebong
category TLCore
revision 3920
+depend bin-ebong.ARCH
+
+name bin-ebong.alpha-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/ebong
+
+name bin-ebong.hppa-hpux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/ebong
+
+name bin-ebong.i386-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/ebong
+
+name bin-ebong.i386-freebsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/ebong
+
+name bin-ebong.i386-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/ebong
+
+name bin-ebong.i386-openbsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/ebong
+
+name bin-ebong.i386-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/ebong
-binfiles arch=i386-linux size=3
- bin/i386-linux/ebong
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/ebong
+
+name bin-ebong.mips-irix
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/ebong
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/ebong
+
+name bin-ebong.powerpc-aix
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/ebong
+
+name bin-ebong.powerpc-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/ebong
+
+name bin-ebong.powerpc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/ebong
+
+name bin-ebong.sparc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/ebong
+
+name bin-ebong.sparc-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/ebong
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/ebong
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/ebong
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/ebong
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/ebong
+
+name bin-ebong.win32
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for win32
+
+name bin-ebong.x86_64-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-ebong for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/ebong
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/ebong
name bin-eplain
category TLCore
revision 5403
depend bin-etex
+depend bin-eplain.ARCH
execute BuildFormat eplain
docfiles size=93
texmf/doc/info/eplain.info
texmf/doc/man/man1/eplain.1
runfiles size=1
texmf/fmtutil/format.eplain.cnf
+
+name bin-eplain.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for alpha-linux
+execute BuildFormat eplain
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/eplain
+
+name bin-eplain.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for hppa-hpux
+execute BuildFormat eplain
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/eplain
+
+name bin-eplain.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for i386-darwin
+execute BuildFormat eplain
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/eplain
+
+name bin-eplain.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for i386-freebsd
+execute BuildFormat eplain
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/eplain
+
+name bin-eplain.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for i386-linux
+execute BuildFormat eplain
+binfiles arch=i386-linux size=1
+ bin/i386-linux/eplain
+
+name bin-eplain.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for i386-openbsd
+execute BuildFormat eplain
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/eplain
+
+name bin-eplain.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for i386-solaris
+execute BuildFormat eplain
binfiles arch=i386-solaris size=1
bin/i386-solaris/eplain
-binfiles arch=i386-linux size=1
- bin/i386-linux/eplain
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/eplain
+
+name bin-eplain.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for mips-irix
+execute BuildFormat eplain
binfiles arch=mips-irix size=1
bin/mips-irix/eplain
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/eplain
+
+name bin-eplain.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for powerpc-aix
+execute BuildFormat eplain
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/eplain
+
+name bin-eplain.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for powerpc-darwin
+execute BuildFormat eplain
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/eplain
+
+name bin-eplain.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for powerpc-linux
+execute BuildFormat eplain
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/eplain
+
+name bin-eplain.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for sparc-linux
+execute BuildFormat eplain
binfiles arch=sparc-linux size=1
bin/sparc-linux/eplain
+
+name bin-eplain.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for sparc-solaris
+execute BuildFormat eplain
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/eplain
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/eplain
+
+name bin-eplain.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for win32
+execute BuildFormat eplain
binfiles arch=win32 size=1
bin/win32/eplain.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/eplain
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/eplain
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/eplain
+
+name bin-eplain.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-eplain for x86_64-linux
+execute BuildFormat eplain
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/eplain
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/eplain
name bin-etex
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-etex.ARCH
execute BuildFormat etex
docfiles size=3
texmf/doc/man/man1/etex.1
runfiles size=1
texmf/fmtutil/format.etex.cnf
+
+name bin-etex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for alpha-linux
+execute BuildFormat etex
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/etex
+
+name bin-etex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for hppa-hpux
+execute BuildFormat etex
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/etex
+
+name bin-etex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for i386-darwin
+execute BuildFormat etex
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/etex
+
+name bin-etex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for i386-freebsd
+execute BuildFormat etex
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/etex
+
+name bin-etex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for i386-linux
+execute BuildFormat etex
+binfiles arch=i386-linux size=1
+ bin/i386-linux/etex
+
+name bin-etex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for i386-openbsd
+execute BuildFormat etex
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/etex
+
+name bin-etex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for i386-solaris
+execute BuildFormat etex
binfiles arch=i386-solaris size=1
bin/i386-solaris/etex
-binfiles arch=i386-linux size=1
- bin/i386-linux/etex
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/etex
+
+name bin-etex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for mips-irix
+execute BuildFormat etex
binfiles arch=mips-irix size=1
bin/mips-irix/etex
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/etex
+
+name bin-etex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for powerpc-aix
+execute BuildFormat etex
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/etex
+
+name bin-etex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for powerpc-darwin
+execute BuildFormat etex
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/etex
+
+name bin-etex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for powerpc-linux
+execute BuildFormat etex
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/etex
+
+name bin-etex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for sparc-linux
+execute BuildFormat etex
binfiles arch=sparc-linux size=1
bin/sparc-linux/etex
+
+name bin-etex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for sparc-solaris
+execute BuildFormat etex
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/etex
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/etex
+
+name bin-etex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for win32
+execute BuildFormat etex
binfiles arch=win32 size=1
bin/win32/etex.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/etex
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/etex
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/etex
+
+name bin-etex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-etex for x86_64-linux
+execute BuildFormat etex
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/etex
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/etex
name bin-fontware
category TLCore
revision 5403
+depend bin-fontware.ARCH
docfiles size=4
texmf/doc/man/man1/pltotf.1
texmf/doc/man/man1/tftopl.1
texmf/doc/man/man1/vftovp.1
texmf/doc/man/man1/vptovf.1
+
+name bin-fontware.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for alpha-linux
+binfiles arch=alpha-linux size=119
+ bin/alpha-linux/pltotf
+ bin/alpha-linux/tftopl
+ bin/alpha-linux/vftovp
+ bin/alpha-linux/vptovf
+
+name bin-fontware.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for hppa-hpux
+binfiles arch=hppa-hpux size=104
+ bin/hppa-hpux/pltotf
+ bin/hppa-hpux/tftopl
+ bin/hppa-hpux/vftovp
+ bin/hppa-hpux/vptovf
+
+name bin-fontware.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for i386-darwin
+binfiles arch=i386-darwin size=93
+ bin/i386-darwin/pltotf
+ bin/i386-darwin/tftopl
+ bin/i386-darwin/vftovp
+ bin/i386-darwin/vptovf
+
+name bin-fontware.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for i386-freebsd
+binfiles arch=i386-freebsd size=75
+ bin/i386-freebsd/pltotf
+ bin/i386-freebsd/tftopl
+ bin/i386-freebsd/vftovp
+ bin/i386-freebsd/vptovf
+
+name bin-fontware.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for i386-linux
+binfiles arch=i386-linux size=67
+ bin/i386-linux/pltotf
+ bin/i386-linux/tftopl
+ bin/i386-linux/vftovp
+ bin/i386-linux/vptovf
+
+name bin-fontware.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for i386-openbsd
binfiles arch=i386-openbsd size=75
bin/i386-openbsd/pltotf
bin/i386-openbsd/tftopl
bin/i386-openbsd/vftovp
bin/i386-openbsd/vptovf
+
+name bin-fontware.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for i386-solaris
binfiles arch=i386-solaris size=80
bin/i386-solaris/pltotf
bin/i386-solaris/tftopl
bin/i386-solaris/vftovp
bin/i386-solaris/vptovf
-binfiles arch=i386-linux size=67
- bin/i386-linux/pltotf
- bin/i386-linux/tftopl
- bin/i386-linux/vftovp
- bin/i386-linux/vptovf
-binfiles arch=hppa-hpux size=104
- bin/hppa-hpux/pltotf
- bin/hppa-hpux/tftopl
- bin/hppa-hpux/vftovp
- bin/hppa-hpux/vptovf
+
+name bin-fontware.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for mips-irix
binfiles arch=mips-irix size=136
bin/mips-irix/pltotf
bin/mips-irix/tftopl
bin/mips-irix/vftovp
bin/mips-irix/vptovf
-binfiles arch=alpha-linux size=119
- bin/alpha-linux/pltotf
- bin/alpha-linux/tftopl
- bin/alpha-linux/vftovp
- bin/alpha-linux/vptovf
+
+name bin-fontware.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for powerpc-aix
+binfiles arch=powerpc-aix size=89
+ bin/powerpc-aix/pltotf
+ bin/powerpc-aix/tftopl
+ bin/powerpc-aix/vftovp
+ bin/powerpc-aix/vptovf
+
+name bin-fontware.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for powerpc-darwin
+binfiles arch=powerpc-darwin size=87
+ bin/powerpc-darwin/pltotf
+ bin/powerpc-darwin/tftopl
+ bin/powerpc-darwin/vftovp
+ bin/powerpc-darwin/vptovf
+
+name bin-fontware.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for powerpc-linux
+binfiles arch=powerpc-linux size=78
+ bin/powerpc-linux/pltotf
+ bin/powerpc-linux/tftopl
+ bin/powerpc-linux/vftovp
+ bin/powerpc-linux/vptovf
+
+name bin-fontware.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for sparc-linux
binfiles arch=sparc-linux size=78
bin/sparc-linux/pltotf
bin/sparc-linux/tftopl
bin/sparc-linux/vftovp
bin/sparc-linux/vptovf
+
+name bin-fontware.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for sparc-solaris
binfiles arch=sparc-solaris size=152
bin/sparc-solaris/pltotf
bin/sparc-solaris/tftopl
bin/sparc-solaris/vftovp
bin/sparc-solaris/vptovf
-binfiles arch=i386-freebsd size=75
- bin/i386-freebsd/pltotf
- bin/i386-freebsd/tftopl
- bin/i386-freebsd/vftovp
- bin/i386-freebsd/vptovf
+
+name bin-fontware.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for win32
binfiles arch=win32 size=39
bin/win32/pltotf.exe
bin/win32/tftopl.exe
bin/win32/vftovp.exe
bin/win32/vptovf.exe
-binfiles arch=i386-darwin size=93
- bin/i386-darwin/pltotf
- bin/i386-darwin/tftopl
- bin/i386-darwin/vftovp
- bin/i386-darwin/vptovf
-binfiles arch=powerpc-linux size=78
- bin/powerpc-linux/pltotf
- bin/powerpc-linux/tftopl
- bin/powerpc-linux/vftovp
- bin/powerpc-linux/vptovf
-binfiles arch=powerpc-aix size=89
- bin/powerpc-aix/pltotf
- bin/powerpc-aix/tftopl
- bin/powerpc-aix/vftovp
- bin/powerpc-aix/vptovf
+
+name bin-fontware.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-fontware for x86_64-linux
binfiles arch=x86_64-linux size=80
bin/x86_64-linux/pltotf
bin/x86_64-linux/tftopl
bin/x86_64-linux/vftovp
bin/x86_64-linux/vptovf
-binfiles arch=powerpc-darwin size=87
- bin/powerpc-darwin/pltotf
- bin/powerpc-darwin/tftopl
- bin/powerpc-darwin/vftovp
- bin/powerpc-darwin/vptovf
name bin-getafm
category TLCore
revision 3920
+depend bin-getafm.ARCH
runfiles size=3
texmf/doc/man/man1/getafm.1
texmf/dvips/getafm/getafm.ps
+
+name bin-getafm.alpha-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/getafm
+ bin/alpha-linux/showchar
+
+name bin-getafm.hppa-hpux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/getafm
+ bin/hppa-hpux/showchar
+
+name bin-getafm.i386-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/getafm
+ bin/i386-darwin/showchar
+
+name bin-getafm.i386-freebsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/getafm
+ bin/i386-freebsd/showchar
+
+name bin-getafm.i386-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/getafm
+ bin/i386-linux/showchar
+
+name bin-getafm.i386-openbsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/getafm
bin/i386-openbsd/showchar
+
+name bin-getafm.i386-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/getafm
bin/i386-solaris/showchar
-binfiles arch=i386-linux size=3
- bin/i386-linux/getafm
- bin/i386-linux/showchar
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/getafm
- bin/hppa-hpux/showchar
+
+name bin-getafm.mips-irix
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/getafm
bin/mips-irix/showchar
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/getafm
- bin/alpha-linux/showchar
+
+name bin-getafm.powerpc-aix
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/getafm
+ bin/powerpc-aix/showchar
+
+name bin-getafm.powerpc-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/getafm
+ bin/powerpc-darwin/showchar
+
+name bin-getafm.powerpc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/getafm
+ bin/powerpc-linux/showchar
+
+name bin-getafm.sparc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/getafm
bin/sparc-linux/showchar
+
+name bin-getafm.sparc-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/getafm
bin/sparc-solaris/showchar
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/getafm
- bin/i386-freebsd/showchar
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/getafm
- bin/i386-darwin/showchar
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/getafm
- bin/powerpc-linux/showchar
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/getafm
- bin/powerpc-aix/showchar
+
+name bin-getafm.win32
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for win32
+
+name bin-getafm.x86_64-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-getafm for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/getafm
bin/x86_64-linux/showchar
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/getafm
- bin/powerpc-darwin/showchar
name bin-getnonfreefonts
category TLCore
revision 5402
+depend bin-getnonfreefonts.ARCH
docfiles size=2
texmf/doc/man/man1/getnonfreefonts-sys.1
texmf/doc/man/man1/getnonfreefonts.1
+
+name bin-getnonfreefonts.alpha-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/getnonfreefonts
+ bin/alpha-linux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.hppa-hpux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/getnonfreefonts
+ bin/hppa-hpux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.i386-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/getnonfreefonts
+ bin/i386-darwin/getnonfreefonts-sys
+
+name bin-getnonfreefonts.i386-freebsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/getnonfreefonts
+ bin/i386-freebsd/getnonfreefonts-sys
+
+name bin-getnonfreefonts.i386-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/getnonfreefonts
+ bin/i386-linux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.i386-openbsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/getnonfreefonts
bin/i386-openbsd/getnonfreefonts-sys
+
+name bin-getnonfreefonts.i386-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/getnonfreefonts
bin/i386-solaris/getnonfreefonts-sys
-binfiles arch=i386-linux size=3
- bin/i386-linux/getnonfreefonts
- bin/i386-linux/getnonfreefonts-sys
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/getnonfreefonts
- bin/hppa-hpux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.mips-irix
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/getnonfreefonts
bin/mips-irix/getnonfreefonts-sys
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/getnonfreefonts
- bin/alpha-linux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.powerpc-aix
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/getnonfreefonts
+ bin/powerpc-aix/getnonfreefonts-sys
+
+name bin-getnonfreefonts.powerpc-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/getnonfreefonts
+ bin/powerpc-darwin/getnonfreefonts-sys
+
+name bin-getnonfreefonts.powerpc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/getnonfreefonts
+ bin/powerpc-linux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.sparc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/getnonfreefonts
bin/sparc-linux/getnonfreefonts-sys
+
+name bin-getnonfreefonts.sparc-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/getnonfreefonts
bin/sparc-solaris/getnonfreefonts-sys
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/getnonfreefonts
- bin/i386-freebsd/getnonfreefonts-sys
+
+name bin-getnonfreefonts.win32
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for win32
binfiles arch=win32 size=2
bin/win32/getnonfreefonts.bat
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/getnonfreefonts
- bin/i386-darwin/getnonfreefonts-sys
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/getnonfreefonts
- bin/powerpc-linux/getnonfreefonts-sys
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/getnonfreefonts
- bin/powerpc-aix/getnonfreefonts-sys
+
+name bin-getnonfreefonts.x86_64-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-getnonfreefonts for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/getnonfreefonts
bin/x86_64-linux/getnonfreefonts-sys
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/getnonfreefonts
- bin/powerpc-darwin/getnonfreefonts-sys
name bin-gsftopk
category TLCore
revision 5403
+depend bin-gsftopk.ARCH
docfiles size=2
texmf/doc/man/man1/gsftopk.1
runfiles size=2
texmf/dvips/gsftopk/render.ps
+
+name bin-gsftopk.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for alpha-linux
+binfiles arch=alpha-linux size=27
+ bin/alpha-linux/gsftopk
+
+name bin-gsftopk.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for hppa-hpux
+binfiles arch=hppa-hpux size=25
+ bin/hppa-hpux/gsftopk
+
+name bin-gsftopk.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for i386-darwin
+binfiles arch=i386-darwin size=21
+ bin/i386-darwin/gsftopk
+
+name bin-gsftopk.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for i386-freebsd
+binfiles arch=i386-freebsd size=18
+ bin/i386-freebsd/gsftopk
+
+name bin-gsftopk.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for i386-linux
+binfiles arch=i386-linux size=17
+ bin/i386-linux/gsftopk
+
+name bin-gsftopk.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for i386-openbsd
binfiles arch=i386-openbsd size=17
bin/i386-openbsd/gsftopk
+
+name bin-gsftopk.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for i386-solaris
binfiles arch=i386-solaris size=19
bin/i386-solaris/gsftopk
-binfiles arch=i386-linux size=17
- bin/i386-linux/gsftopk
-binfiles arch=hppa-hpux size=25
- bin/hppa-hpux/gsftopk
+
+name bin-gsftopk.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for mips-irix
binfiles arch=mips-irix size=33
bin/mips-irix/gsftopk
-binfiles arch=alpha-linux size=27
- bin/alpha-linux/gsftopk
+
+name bin-gsftopk.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for powerpc-aix
+binfiles arch=powerpc-aix size=22
+ bin/powerpc-aix/gsftopk
+
+name bin-gsftopk.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for powerpc-darwin
+binfiles arch=powerpc-darwin size=20
+ bin/powerpc-darwin/gsftopk
+
+name bin-gsftopk.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for powerpc-linux
+binfiles arch=powerpc-linux size=20
+ bin/powerpc-linux/gsftopk
+
+name bin-gsftopk.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for sparc-linux
binfiles arch=sparc-linux size=20
bin/sparc-linux/gsftopk
+
+name bin-gsftopk.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for sparc-solaris
binfiles arch=sparc-solaris size=36
bin/sparc-solaris/gsftopk
-binfiles arch=i386-freebsd size=18
- bin/i386-freebsd/gsftopk
+
+name bin-gsftopk.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for win32
binfiles arch=win32 size=5
bin/win32/gsftopk.exe
-binfiles arch=i386-darwin size=21
- bin/i386-darwin/gsftopk
-binfiles arch=powerpc-linux size=20
- bin/powerpc-linux/gsftopk
-binfiles arch=powerpc-aix size=22
- bin/powerpc-aix/gsftopk
+
+name bin-gsftopk.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gsftopk for x86_64-linux
binfiles arch=x86_64-linux size=21
bin/x86_64-linux/gsftopk
-binfiles arch=powerpc-darwin size=20
- bin/powerpc-darwin/gsftopk
name bin-gzip
category TLCore
revision 5403
+depend bin-gzip.ARCH
docfiles size=41
texmf/doc/gzip/gzip.html
texmf/doc/gzip/gzip.pdf
+
+name bin-gzip.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for alpha-linux
+
+name bin-gzip.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for hppa-hpux
+
+name bin-gzip.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for i386-darwin
+
+name bin-gzip.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for i386-freebsd
+
+name bin-gzip.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for i386-linux
+
+name bin-gzip.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for i386-openbsd
+
+name bin-gzip.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for i386-solaris
+
+name bin-gzip.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for mips-irix
+
+name bin-gzip.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for powerpc-aix
+
+name bin-gzip.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for powerpc-darwin
+
+name bin-gzip.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for powerpc-linux
+
+name bin-gzip.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for sparc-linux
+
+name bin-gzip.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for sparc-solaris
+
+name bin-gzip.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for win32
binfiles arch=win32 size=22
bin/win32/gunzip.exe
bin/win32/gzip.exe
+name bin-gzip.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-gzip for x86_64-linux
+
name bin-jadetex
category TLCore
revision 5403
depend bin-pdftex
depend bin-tex
+depend bin-jadetex.ARCH
execute BuildFormat jadetex
runfiles size=1
texmf/fmtutil/format.jadetex.cnf
+
+name bin-jadetex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for alpha-linux
+execute BuildFormat jadetex
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/jadetex
+ bin/alpha-linux/pdfjadetex
+
+name bin-jadetex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for hppa-hpux
+execute BuildFormat jadetex
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/jadetex
+ bin/hppa-hpux/pdfjadetex
+
+name bin-jadetex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for i386-darwin
+execute BuildFormat jadetex
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/jadetex
+ bin/i386-darwin/pdfjadetex
+
+name bin-jadetex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for i386-freebsd
+execute BuildFormat jadetex
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/jadetex
+ bin/i386-freebsd/pdfjadetex
+
+name bin-jadetex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for i386-linux
+execute BuildFormat jadetex
+binfiles arch=i386-linux size=2
+ bin/i386-linux/jadetex
+ bin/i386-linux/pdfjadetex
+
+name bin-jadetex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for i386-openbsd
+execute BuildFormat jadetex
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/jadetex
bin/i386-openbsd/pdfjadetex
+
+name bin-jadetex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for i386-solaris
+execute BuildFormat jadetex
binfiles arch=i386-solaris size=2
bin/i386-solaris/jadetex
bin/i386-solaris/pdfjadetex
-binfiles arch=i386-linux size=2
- bin/i386-linux/jadetex
- bin/i386-linux/pdfjadetex
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/jadetex
- bin/hppa-hpux/pdfjadetex
+
+name bin-jadetex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for mips-irix
+execute BuildFormat jadetex
binfiles arch=mips-irix size=2
bin/mips-irix/jadetex
bin/mips-irix/pdfjadetex
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/jadetex
- bin/alpha-linux/pdfjadetex
+
+name bin-jadetex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for powerpc-aix
+execute BuildFormat jadetex
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/jadetex
+ bin/powerpc-aix/pdfjadetex
+
+name bin-jadetex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for powerpc-darwin
+execute BuildFormat jadetex
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/jadetex
+ bin/powerpc-darwin/pdfjadetex
+
+name bin-jadetex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for powerpc-linux
+execute BuildFormat jadetex
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/jadetex
+ bin/powerpc-linux/pdfjadetex
+
+name bin-jadetex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for sparc-linux
+execute BuildFormat jadetex
binfiles arch=sparc-linux size=2
bin/sparc-linux/jadetex
bin/sparc-linux/pdfjadetex
+
+name bin-jadetex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for sparc-solaris
+execute BuildFormat jadetex
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/jadetex
bin/sparc-solaris/pdfjadetex
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/jadetex
- bin/i386-freebsd/pdfjadetex
+
+name bin-jadetex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for win32
+execute BuildFormat jadetex
binfiles arch=win32 size=2
bin/win32/jadetex.exe
bin/win32/pdfjadetex.exe
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/jadetex
- bin/i386-darwin/pdfjadetex
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/jadetex
- bin/powerpc-linux/pdfjadetex
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/jadetex
- bin/powerpc-aix/pdfjadetex
+
+name bin-jadetex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jadetex for x86_64-linux
+execute BuildFormat jadetex
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/jadetex
bin/x86_64-linux/pdfjadetex
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/jadetex
- bin/powerpc-darwin/pdfjadetex
name bin-jpeg2ps
category TLCore
revision 5403
+depend bin-jpeg2ps.ARCH
+
+name bin-jpeg2ps.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for alpha-linux
+
+name bin-jpeg2ps.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for hppa-hpux
+
+name bin-jpeg2ps.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for i386-darwin
+
+name bin-jpeg2ps.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for i386-freebsd
+
+name bin-jpeg2ps.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for i386-linux
+
+name bin-jpeg2ps.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for i386-openbsd
+
+name bin-jpeg2ps.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for i386-solaris
+
+name bin-jpeg2ps.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for mips-irix
+
+name bin-jpeg2ps.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for powerpc-aix
+
+name bin-jpeg2ps.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for powerpc-darwin
+
+name bin-jpeg2ps.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for powerpc-linux
+
+name bin-jpeg2ps.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for sparc-linux
+
+name bin-jpeg2ps.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for sparc-solaris
+
+name bin-jpeg2ps.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for win32
binfiles arch=win32 size=3
bin/win32/jpeg2ps.exe
+name bin-jpeg2ps.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-jpeg2ps for x86_64-linux
+
name bin-kpathsea
category TLCore
revision 5417
+depend bin-kpathsea.ARCH
docfiles size=611
texmf/doc/info/dir
texmf/doc/info/kpathsea.info
@@ -11058,6 +14128,116 @@ runfiles size=58
texmf/web2c/texmf.cnf
texmf/web2c/texmf.cnf-4WIN
texmf/web2c/viscii-t5.tcx
+
+name bin-kpathsea.alpha-linux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for alpha-linux
+binfiles arch=alpha-linux size=45
+ bin/alpha-linux/kpseaccess
+ bin/alpha-linux/kpsepath
+ bin/alpha-linux/kpsereadlink
+ bin/alpha-linux/kpsestat
+ bin/alpha-linux/kpsetool
+ bin/alpha-linux/kpsewhich
+ bin/alpha-linux/kpsexpand
+ bin/alpha-linux/mkocp
+ bin/alpha-linux/mkofm
+ bin/alpha-linux/mktexfmt
+ bin/alpha-linux/mktexlsr
+ bin/alpha-linux/mktexmf
+ bin/alpha-linux/mktexpk
+ bin/alpha-linux/mktextfm
+ bin/alpha-linux/texhash
+
+name bin-kpathsea.hppa-hpux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for hppa-hpux
+binfiles arch=hppa-hpux size=56
+ bin/hppa-hpux/kpseaccess
+ bin/hppa-hpux/kpsepath
+ bin/hppa-hpux/kpsereadlink
+ bin/hppa-hpux/kpsestat
+ bin/hppa-hpux/kpsetool
+ bin/hppa-hpux/kpsewhich
+ bin/hppa-hpux/kpsexpand
+ bin/hppa-hpux/mkocp
+ bin/hppa-hpux/mkofm
+ bin/hppa-hpux/mktexfmt
+ bin/hppa-hpux/mktexlsr
+ bin/hppa-hpux/mktexmf
+ bin/hppa-hpux/mktexpk
+ bin/hppa-hpux/mktextfm
+ bin/hppa-hpux/texhash
+
+name bin-kpathsea.i386-darwin
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for i386-darwin
+binfiles arch=i386-darwin size=47
+ bin/i386-darwin/kpseaccess
+ bin/i386-darwin/kpsepath
+ bin/i386-darwin/kpsereadlink
+ bin/i386-darwin/kpsestat
+ bin/i386-darwin/kpsetool
+ bin/i386-darwin/kpsewhich
+ bin/i386-darwin/kpsexpand
+ bin/i386-darwin/mkocp
+ bin/i386-darwin/mkofm
+ bin/i386-darwin/mktexfmt
+ bin/i386-darwin/mktexlsr
+ bin/i386-darwin/mktexmf
+ bin/i386-darwin/mktexpk
+ bin/i386-darwin/mktextfm
+ bin/i386-darwin/texhash
+
+name bin-kpathsea.i386-freebsd
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for i386-freebsd
+binfiles arch=i386-freebsd size=37
+ bin/i386-freebsd/kpseaccess
+ bin/i386-freebsd/kpsepath
+ bin/i386-freebsd/kpsereadlink
+ bin/i386-freebsd/kpsestat
+ bin/i386-freebsd/kpsetool
+ bin/i386-freebsd/kpsewhich
+ bin/i386-freebsd/kpsexpand
+ bin/i386-freebsd/mkocp
+ bin/i386-freebsd/mkofm
+ bin/i386-freebsd/mktexfmt
+ bin/i386-freebsd/mktexlsr
+ bin/i386-freebsd/mktexmf
+ bin/i386-freebsd/mktexpk
+ bin/i386-freebsd/mktextfm
+ bin/i386-freebsd/texhash
+
+name bin-kpathsea.i386-linux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for i386-linux
+binfiles arch=i386-linux size=75
+ bin/i386-linux/kpseaccess
+ bin/i386-linux/kpsepath
+ bin/i386-linux/kpsereadlink
+ bin/i386-linux/kpsestat
+ bin/i386-linux/kpsetool
+ bin/i386-linux/kpsewhich
+ bin/i386-linux/kpsexpand
+ bin/i386-linux/mkocp
+ bin/i386-linux/mkofm
+ bin/i386-linux/mktexfmt
+ bin/i386-linux/mktexlsr
+ bin/i386-linux/mktexmf
+ bin/i386-linux/mktexpk
+ bin/i386-linux/mktextfm
+ bin/i386-linux/texhash
+
+name bin-kpathsea.i386-openbsd
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for i386-openbsd
binfiles arch=i386-openbsd size=37
bin/i386-openbsd/kpseaccess
bin/i386-openbsd/kpsepath
@@ -11074,6 +14254,11 @@ binfiles arch=i386-openbsd size=37
bin/i386-openbsd/mktexpk
bin/i386-openbsd/mktextfm
bin/i386-openbsd/texhash
+
+name bin-kpathsea.i386-solaris
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for i386-solaris
binfiles arch=i386-solaris size=38
bin/i386-solaris/kpseaccess
bin/i386-solaris/kpsepath
@@ -11090,38 +14275,11 @@ binfiles arch=i386-solaris size=38
bin/i386-solaris/mktexpk
bin/i386-solaris/mktextfm
bin/i386-solaris/texhash
-binfiles arch=i386-linux size=75
- bin/i386-linux/kpseaccess
- bin/i386-linux/kpsepath
- bin/i386-linux/kpsereadlink
- bin/i386-linux/kpsestat
- bin/i386-linux/kpsetool
- bin/i386-linux/kpsewhich
- bin/i386-linux/kpsexpand
- bin/i386-linux/mkocp
- bin/i386-linux/mkofm
- bin/i386-linux/mktexfmt
- bin/i386-linux/mktexlsr
- bin/i386-linux/mktexmf
- bin/i386-linux/mktexpk
- bin/i386-linux/mktextfm
- bin/i386-linux/texhash
-binfiles arch=hppa-hpux size=56
- bin/hppa-hpux/kpseaccess
- bin/hppa-hpux/kpsepath
- bin/hppa-hpux/kpsereadlink
- bin/hppa-hpux/kpsestat
- bin/hppa-hpux/kpsetool
- bin/hppa-hpux/kpsewhich
- bin/hppa-hpux/kpsexpand
- bin/hppa-hpux/mkocp
- bin/hppa-hpux/mkofm
- bin/hppa-hpux/mktexfmt
- bin/hppa-hpux/mktexlsr
- bin/hppa-hpux/mktexmf
- bin/hppa-hpux/mktexpk
- bin/hppa-hpux/mktextfm
- bin/hppa-hpux/texhash
+
+name bin-kpathsea.mips-irix
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for mips-irix
binfiles arch=mips-irix size=59
bin/mips-irix/kpseaccess
bin/mips-irix/kpsepath
@@ -11138,22 +14296,74 @@ binfiles arch=mips-irix size=59
bin/mips-irix/mktexpk
bin/mips-irix/mktextfm
bin/mips-irix/texhash
-binfiles arch=alpha-linux size=45
- bin/alpha-linux/kpseaccess
- bin/alpha-linux/kpsepath
- bin/alpha-linux/kpsereadlink
- bin/alpha-linux/kpsestat
- bin/alpha-linux/kpsetool
- bin/alpha-linux/kpsewhich
- bin/alpha-linux/kpsexpand
- bin/alpha-linux/mkocp
- bin/alpha-linux/mkofm
- bin/alpha-linux/mktexfmt
- bin/alpha-linux/mktexlsr
- bin/alpha-linux/mktexmf
- bin/alpha-linux/mktexpk
- bin/alpha-linux/mktextfm
- bin/alpha-linux/texhash
+
+name bin-kpathsea.powerpc-aix
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for powerpc-aix
+binfiles arch=powerpc-aix size=38
+ bin/powerpc-aix/kpseaccess
+ bin/powerpc-aix/kpsepath
+ bin/powerpc-aix/kpsereadlink
+ bin/powerpc-aix/kpsestat
+ bin/powerpc-aix/kpsetool
+ bin/powerpc-aix/kpsewhich
+ bin/powerpc-aix/kpsexpand
+ bin/powerpc-aix/mkocp
+ bin/powerpc-aix/mkofm
+ bin/powerpc-aix/mktexfmt
+ bin/powerpc-aix/mktexlsr
+ bin/powerpc-aix/mktexmf
+ bin/powerpc-aix/mktexpk
+ bin/powerpc-aix/mktextfm
+ bin/powerpc-aix/texhash
+
+name bin-kpathsea.powerpc-darwin
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for powerpc-darwin
+binfiles arch=powerpc-darwin size=46
+ bin/powerpc-darwin/kpseaccess
+ bin/powerpc-darwin/kpsepath
+ bin/powerpc-darwin/kpsereadlink
+ bin/powerpc-darwin/kpsestat
+ bin/powerpc-darwin/kpsetool
+ bin/powerpc-darwin/kpsewhich
+ bin/powerpc-darwin/kpsexpand
+ bin/powerpc-darwin/mkocp
+ bin/powerpc-darwin/mkofm
+ bin/powerpc-darwin/mktexfmt
+ bin/powerpc-darwin/mktexlsr
+ bin/powerpc-darwin/mktexmf
+ bin/powerpc-darwin/mktexpk
+ bin/powerpc-darwin/mktextfm
+ bin/powerpc-darwin/texhash
+
+name bin-kpathsea.powerpc-linux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for powerpc-linux
+binfiles arch=powerpc-linux size=38
+ bin/powerpc-linux/kpseaccess
+ bin/powerpc-linux/kpsepath
+ bin/powerpc-linux/kpsereadlink
+ bin/powerpc-linux/kpsestat
+ bin/powerpc-linux/kpsetool
+ bin/powerpc-linux/kpsewhich
+ bin/powerpc-linux/kpsexpand
+ bin/powerpc-linux/mkocp
+ bin/powerpc-linux/mkofm
+ bin/powerpc-linux/mktexfmt
+ bin/powerpc-linux/mktexlsr
+ bin/powerpc-linux/mktexmf
+ bin/powerpc-linux/mktexpk
+ bin/powerpc-linux/mktextfm
+ bin/powerpc-linux/texhash
+
+name bin-kpathsea.sparc-linux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for sparc-linux
binfiles arch=sparc-linux size=38
bin/sparc-linux/kpseaccess
bin/sparc-linux/kpsepath
@@ -11170,6 +14380,11 @@ binfiles arch=sparc-linux size=38
bin/sparc-linux/mktexpk
bin/sparc-linux/mktextfm
bin/sparc-linux/texhash
+
+name bin-kpathsea.sparc-solaris
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for sparc-solaris
binfiles arch=sparc-solaris size=56
bin/sparc-solaris/kpseaccess
bin/sparc-solaris/kpsepath
@@ -11186,22 +14401,11 @@ binfiles arch=sparc-solaris size=56
bin/sparc-solaris/mktexpk
bin/sparc-solaris/mktextfm
bin/sparc-solaris/texhash
-binfiles arch=i386-freebsd size=37
- bin/i386-freebsd/kpseaccess
- bin/i386-freebsd/kpsepath
- bin/i386-freebsd/kpsereadlink
- bin/i386-freebsd/kpsestat
- bin/i386-freebsd/kpsetool
- bin/i386-freebsd/kpsewhich
- bin/i386-freebsd/kpsexpand
- bin/i386-freebsd/mkocp
- bin/i386-freebsd/mkofm
- bin/i386-freebsd/mktexfmt
- bin/i386-freebsd/mktexlsr
- bin/i386-freebsd/mktexmf
- bin/i386-freebsd/mktexpk
- bin/i386-freebsd/mktextfm
- bin/i386-freebsd/texhash
+
+name bin-kpathsea.win32
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for win32
binfiles arch=win32 size=387
bin/win32/irun.exe
bin/win32/kpathsea356.dll
@@ -11228,54 +14432,11 @@ binfiles arch=win32 size=387
bin/win32/texhash.exe
bin/win32/tl90kpse.dll
bin/win32/tl90mktex.dll
-binfiles arch=i386-darwin size=47
- bin/i386-darwin/kpseaccess
- bin/i386-darwin/kpsepath
- bin/i386-darwin/kpsereadlink
- bin/i386-darwin/kpsestat
- bin/i386-darwin/kpsetool
- bin/i386-darwin/kpsewhich
- bin/i386-darwin/kpsexpand
- bin/i386-darwin/mkocp
- bin/i386-darwin/mkofm
- bin/i386-darwin/mktexfmt
- bin/i386-darwin/mktexlsr
- bin/i386-darwin/mktexmf
- bin/i386-darwin/mktexpk
- bin/i386-darwin/mktextfm
- bin/i386-darwin/texhash
-binfiles arch=powerpc-linux size=38
- bin/powerpc-linux/kpseaccess
- bin/powerpc-linux/kpsepath
- bin/powerpc-linux/kpsereadlink
- bin/powerpc-linux/kpsestat
- bin/powerpc-linux/kpsetool
- bin/powerpc-linux/kpsewhich
- bin/powerpc-linux/kpsexpand
- bin/powerpc-linux/mkocp
- bin/powerpc-linux/mkofm
- bin/powerpc-linux/mktexfmt
- bin/powerpc-linux/mktexlsr
- bin/powerpc-linux/mktexmf
- bin/powerpc-linux/mktexpk
- bin/powerpc-linux/mktextfm
- bin/powerpc-linux/texhash
-binfiles arch=powerpc-aix size=38
- bin/powerpc-aix/kpseaccess
- bin/powerpc-aix/kpsepath
- bin/powerpc-aix/kpsereadlink
- bin/powerpc-aix/kpsestat
- bin/powerpc-aix/kpsetool
- bin/powerpc-aix/kpsewhich
- bin/powerpc-aix/kpsexpand
- bin/powerpc-aix/mkocp
- bin/powerpc-aix/mkofm
- bin/powerpc-aix/mktexfmt
- bin/powerpc-aix/mktexlsr
- bin/powerpc-aix/mktexmf
- bin/powerpc-aix/mktexpk
- bin/powerpc-aix/mktextfm
- bin/powerpc-aix/texhash
+
+name bin-kpathsea.x86_64-linux
+category TLCore
+revision 5417
+shortdesc binary files of bin-kpathsea for x86_64-linux
binfiles arch=x86_64-linux size=39
bin/x86_64-linux/kpseaccess
bin/x86_64-linux/kpsepath
@@ -11292,63 +14453,124 @@ binfiles arch=x86_64-linux size=39
bin/x86_64-linux/mktexpk
bin/x86_64-linux/mktextfm
bin/x86_64-linux/texhash
-binfiles arch=powerpc-darwin size=46
- bin/powerpc-darwin/kpseaccess
- bin/powerpc-darwin/kpsepath
- bin/powerpc-darwin/kpsereadlink
- bin/powerpc-darwin/kpsestat
- bin/powerpc-darwin/kpsetool
- bin/powerpc-darwin/kpsewhich
- bin/powerpc-darwin/kpsexpand
- bin/powerpc-darwin/mkocp
- bin/powerpc-darwin/mkofm
- bin/powerpc-darwin/mktexfmt
- bin/powerpc-darwin/mktexlsr
- bin/powerpc-darwin/mktexmf
- bin/powerpc-darwin/mktexpk
- bin/powerpc-darwin/mktextfm
- bin/powerpc-darwin/texhash
name bin-lacheck
category TLCore
revision 5403
+depend bin-lacheck.ARCH
runfiles size=1
texmf/doc/man/man1/lacheck.1
+
+name bin-lacheck.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for alpha-linux
+binfiles arch=alpha-linux size=18
+ bin/alpha-linux/lacheck
+
+name bin-lacheck.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for hppa-hpux
+binfiles arch=hppa-hpux size=18
+ bin/hppa-hpux/lacheck
+
+name bin-lacheck.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for i386-darwin
+binfiles arch=i386-darwin size=16
+ bin/i386-darwin/lacheck
+
+name bin-lacheck.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for i386-freebsd
+binfiles arch=i386-freebsd size=13
+ bin/i386-freebsd/lacheck
+
+name bin-lacheck.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for i386-linux
+binfiles arch=i386-linux size=12
+ bin/i386-linux/lacheck
+
+name bin-lacheck.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for i386-openbsd
binfiles arch=i386-openbsd size=13
bin/i386-openbsd/lacheck
+
+name bin-lacheck.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for i386-solaris
binfiles arch=i386-solaris size=13
bin/i386-solaris/lacheck
-binfiles arch=i386-linux size=12
- bin/i386-linux/lacheck
-binfiles arch=hppa-hpux size=18
- bin/hppa-hpux/lacheck
+
+name bin-lacheck.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for mips-irix
binfiles arch=mips-irix size=18
bin/mips-irix/lacheck
-binfiles arch=alpha-linux size=18
- bin/alpha-linux/lacheck
+
+name bin-lacheck.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for powerpc-aix
+binfiles arch=powerpc-aix size=13
+ bin/powerpc-aix/lacheck
+
+name bin-lacheck.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for powerpc-darwin
+binfiles arch=powerpc-darwin size=16
+ bin/powerpc-darwin/lacheck
+
+name bin-lacheck.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for powerpc-linux
+binfiles arch=powerpc-linux size=15
+ bin/powerpc-linux/lacheck
+
+name bin-lacheck.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for sparc-linux
binfiles arch=sparc-linux size=14
bin/sparc-linux/lacheck
+
+name bin-lacheck.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for sparc-solaris
binfiles arch=sparc-solaris size=15
bin/sparc-solaris/lacheck
-binfiles arch=i386-freebsd size=13
- bin/i386-freebsd/lacheck
+
+name bin-lacheck.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for win32
binfiles arch=win32 size=14
bin/win32/lacheck.exe
-binfiles arch=i386-darwin size=16
- bin/i386-darwin/lacheck
-binfiles arch=powerpc-linux size=15
- bin/powerpc-linux/lacheck
-binfiles arch=powerpc-aix size=13
- bin/powerpc-aix/lacheck
+
+name bin-lacheck.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lacheck for x86_64-linux
binfiles arch=x86_64-linux size=15
bin/x86_64-linux/lacheck
-binfiles arch=powerpc-darwin size=16
- bin/powerpc-darwin/lacheck
name bin-latex
category TLCore
revision 5403
depend bin-etex
+depend bin-latex.ARCH
execute BuildFormat latex
docfiles size=399
texmf/doc/info/latex.info
@@ -11363,41 +14585,132 @@ runfiles size=5
texmf/tex/latex/config/color.cfg
texmf/tex/latex/config/graphics.cfg
texmf/tex/latex/config/hyperref.cfg
+
+name bin-latex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for alpha-linux
+execute BuildFormat latex
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/latex
+
+name bin-latex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for hppa-hpux
+execute BuildFormat latex
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/latex
+
+name bin-latex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for i386-darwin
+execute BuildFormat latex
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/latex
+
+name bin-latex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for i386-freebsd
+execute BuildFormat latex
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/latex
+
+name bin-latex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for i386-linux
+execute BuildFormat latex
+binfiles arch=i386-linux size=1
+ bin/i386-linux/latex
+
+name bin-latex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for i386-openbsd
+execute BuildFormat latex
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/latex
+
+name bin-latex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for i386-solaris
+execute BuildFormat latex
binfiles arch=i386-solaris size=1
bin/i386-solaris/latex
-binfiles arch=i386-linux size=1
- bin/i386-linux/latex
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/latex
+
+name bin-latex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for mips-irix
+execute BuildFormat latex
binfiles arch=mips-irix size=1
bin/mips-irix/latex
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/latex
+
+name bin-latex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for powerpc-aix
+execute BuildFormat latex
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/latex
+
+name bin-latex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for powerpc-darwin
+execute BuildFormat latex
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/latex
+
+name bin-latex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for powerpc-linux
+execute BuildFormat latex
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/latex
+
+name bin-latex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for sparc-linux
+execute BuildFormat latex
binfiles arch=sparc-linux size=1
bin/sparc-linux/latex
+
+name bin-latex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for sparc-solaris
+execute BuildFormat latex
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/latex
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/latex
+
+name bin-latex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for win32
+execute BuildFormat latex
binfiles arch=win32 size=1
bin/win32/latex.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/latex
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/latex
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/latex
+
+name bin-latex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-latex for x86_64-linux
+execute BuildFormat latex
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/latex
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/latex
name bin-lcdftypetools
category TLCore
revision 5403
depend glyphlist
+depend bin-lcdftypetools.ARCH
docfiles size=24
texmf/doc/man/man1/cfftot1.1
texmf/doc/man/man1/mmafm.1
@@ -11409,6 +14722,91 @@ docfiles size=24
texmf/doc/man/man1/t1reencode.1
texmf/doc/man/man1/t1testpage.1
texmf/doc/man/man1/ttftotype42.1
+
+name bin-lcdftypetools.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for alpha-linux
+binfiles arch=alpha-linux size=1056
+ bin/alpha-linux/cfftot1
+ bin/alpha-linux/mmafm
+ bin/alpha-linux/mmpfb
+ bin/alpha-linux/otfinfo
+ bin/alpha-linux/otftotfm
+ bin/alpha-linux/t1dotlessj
+ bin/alpha-linux/t1lint
+ bin/alpha-linux/t1reencode
+ bin/alpha-linux/t1testpage
+ bin/alpha-linux/ttftotype42
+
+name bin-lcdftypetools.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for hppa-hpux
+binfiles arch=hppa-hpux size=1248
+ bin/hppa-hpux/cfftot1
+ bin/hppa-hpux/mmafm
+ bin/hppa-hpux/mmpfb
+ bin/hppa-hpux/otfinfo
+ bin/hppa-hpux/otftotfm
+ bin/hppa-hpux/t1dotlessj
+ bin/hppa-hpux/t1lint
+ bin/hppa-hpux/t1reencode
+ bin/hppa-hpux/t1testpage
+ bin/hppa-hpux/ttftotype42
+
+name bin-lcdftypetools.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for i386-darwin
+binfiles arch=i386-darwin size=857
+ bin/i386-darwin/cfftot1
+ bin/i386-darwin/mmafm
+ bin/i386-darwin/mmpfb
+ bin/i386-darwin/otfinfo
+ bin/i386-darwin/otftotfm
+ bin/i386-darwin/t1dotlessj
+ bin/i386-darwin/t1lint
+ bin/i386-darwin/t1reencode
+ bin/i386-darwin/t1testpage
+ bin/i386-darwin/ttftotype42
+
+name bin-lcdftypetools.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for i386-freebsd
+binfiles arch=i386-freebsd size=697
+ bin/i386-freebsd/cfftot1
+ bin/i386-freebsd/mmafm
+ bin/i386-freebsd/mmpfb
+ bin/i386-freebsd/otfinfo
+ bin/i386-freebsd/otftotfm
+ bin/i386-freebsd/t1dotlessj
+ bin/i386-freebsd/t1lint
+ bin/i386-freebsd/t1reencode
+ bin/i386-freebsd/t1testpage
+ bin/i386-freebsd/ttftotype42
+
+name bin-lcdftypetools.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for i386-linux
+binfiles arch=i386-linux size=699
+ bin/i386-linux/cfftot1
+ bin/i386-linux/mmafm
+ bin/i386-linux/mmpfb
+ bin/i386-linux/otfinfo
+ bin/i386-linux/otftotfm
+ bin/i386-linux/t1dotlessj
+ bin/i386-linux/t1lint
+ bin/i386-linux/t1reencode
+ bin/i386-linux/t1testpage
+ bin/i386-linux/ttftotype42
+
+name bin-lcdftypetools.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for i386-openbsd
binfiles arch=i386-openbsd size=752
bin/i386-openbsd/cfftot1
bin/i386-openbsd/mmafm
@@ -11420,6 +14818,11 @@ binfiles arch=i386-openbsd size=752
bin/i386-openbsd/t1reencode
bin/i386-openbsd/t1testpage
bin/i386-openbsd/ttftotype42
+
+name bin-lcdftypetools.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for i386-solaris
binfiles arch=i386-solaris size=927
bin/i386-solaris/cfftot1
bin/i386-solaris/mmafm
@@ -11431,28 +14834,11 @@ binfiles arch=i386-solaris size=927
bin/i386-solaris/t1reencode
bin/i386-solaris/t1testpage
bin/i386-solaris/ttftotype42
-binfiles arch=i386-linux size=699
- bin/i386-linux/cfftot1
- bin/i386-linux/mmafm
- bin/i386-linux/mmpfb
- bin/i386-linux/otfinfo
- bin/i386-linux/otftotfm
- bin/i386-linux/t1dotlessj
- bin/i386-linux/t1lint
- bin/i386-linux/t1reencode
- bin/i386-linux/t1testpage
- bin/i386-linux/ttftotype42
-binfiles arch=hppa-hpux size=1248
- bin/hppa-hpux/cfftot1
- bin/hppa-hpux/mmafm
- bin/hppa-hpux/mmpfb
- bin/hppa-hpux/otfinfo
- bin/hppa-hpux/otftotfm
- bin/hppa-hpux/t1dotlessj
- bin/hppa-hpux/t1lint
- bin/hppa-hpux/t1reencode
- bin/hppa-hpux/t1testpage
- bin/hppa-hpux/ttftotype42
+
+name bin-lcdftypetools.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for mips-irix
binfiles arch=mips-irix size=1439
bin/mips-irix/cfftot1
bin/mips-irix/mmafm
@@ -11464,17 +14850,59 @@ binfiles arch=mips-irix size=1439
bin/mips-irix/t1reencode
bin/mips-irix/t1testpage
bin/mips-irix/ttftotype42
-binfiles arch=alpha-linux size=1056
- bin/alpha-linux/cfftot1
- bin/alpha-linux/mmafm
- bin/alpha-linux/mmpfb
- bin/alpha-linux/otfinfo
- bin/alpha-linux/otftotfm
- bin/alpha-linux/t1dotlessj
- bin/alpha-linux/t1lint
- bin/alpha-linux/t1reencode
- bin/alpha-linux/t1testpage
- bin/alpha-linux/ttftotype42
+
+name bin-lcdftypetools.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for powerpc-aix
+binfiles arch=powerpc-aix size=1398
+ bin/powerpc-aix/cfftot1
+ bin/powerpc-aix/mmafm
+ bin/powerpc-aix/mmpfb
+ bin/powerpc-aix/otfinfo
+ bin/powerpc-aix/otftotfm
+ bin/powerpc-aix/t1dotlessj
+ bin/powerpc-aix/t1lint
+ bin/powerpc-aix/t1reencode
+ bin/powerpc-aix/t1testpage
+ bin/powerpc-aix/ttftotype42
+
+name bin-lcdftypetools.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for powerpc-darwin
+binfiles arch=powerpc-darwin size=888
+ bin/powerpc-darwin/cfftot1
+ bin/powerpc-darwin/mmafm
+ bin/powerpc-darwin/mmpfb
+ bin/powerpc-darwin/otfinfo
+ bin/powerpc-darwin/otftotfm
+ bin/powerpc-darwin/t1dotlessj
+ bin/powerpc-darwin/t1lint
+ bin/powerpc-darwin/t1reencode
+ bin/powerpc-darwin/t1testpage
+ bin/powerpc-darwin/ttftotype42
+
+name bin-lcdftypetools.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for powerpc-linux
+binfiles arch=powerpc-linux size=840
+ bin/powerpc-linux/cfftot1
+ bin/powerpc-linux/mmafm
+ bin/powerpc-linux/mmpfb
+ bin/powerpc-linux/otfinfo
+ bin/powerpc-linux/otftotfm
+ bin/powerpc-linux/t1dotlessj
+ bin/powerpc-linux/t1lint
+ bin/powerpc-linux/t1reencode
+ bin/powerpc-linux/t1testpage
+ bin/powerpc-linux/ttftotype42
+
+name bin-lcdftypetools.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for sparc-linux
binfiles arch=sparc-linux size=814
bin/sparc-linux/cfftot1
bin/sparc-linux/mmafm
@@ -11486,6 +14914,11 @@ binfiles arch=sparc-linux size=814
bin/sparc-linux/t1reencode
bin/sparc-linux/t1testpage
bin/sparc-linux/ttftotype42
+
+name bin-lcdftypetools.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for sparc-solaris
binfiles arch=sparc-solaris size=1106
bin/sparc-solaris/cfftot1
bin/sparc-solaris/mmafm
@@ -11497,17 +14930,11 @@ binfiles arch=sparc-solaris size=1106
bin/sparc-solaris/t1reencode
bin/sparc-solaris/t1testpage
bin/sparc-solaris/ttftotype42
-binfiles arch=i386-freebsd size=697
- bin/i386-freebsd/cfftot1
- bin/i386-freebsd/mmafm
- bin/i386-freebsd/mmpfb
- bin/i386-freebsd/otfinfo
- bin/i386-freebsd/otftotfm
- bin/i386-freebsd/t1dotlessj
- bin/i386-freebsd/t1lint
- bin/i386-freebsd/t1reencode
- bin/i386-freebsd/t1testpage
- bin/i386-freebsd/ttftotype42
+
+name bin-lcdftypetools.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for win32
binfiles arch=win32 size=833
bin/win32/cfftot1.exe
bin/win32/mmafm.exe
@@ -11519,39 +14946,11 @@ binfiles arch=win32 size=833
bin/win32/t1reencode.exe
bin/win32/t1testpage.exe
bin/win32/ttftotype42.exe
-binfiles arch=i386-darwin size=857
- bin/i386-darwin/cfftot1
- bin/i386-darwin/mmafm
- bin/i386-darwin/mmpfb
- bin/i386-darwin/otfinfo
- bin/i386-darwin/otftotfm
- bin/i386-darwin/t1dotlessj
- bin/i386-darwin/t1lint
- bin/i386-darwin/t1reencode
- bin/i386-darwin/t1testpage
- bin/i386-darwin/ttftotype42
-binfiles arch=powerpc-linux size=840
- bin/powerpc-linux/cfftot1
- bin/powerpc-linux/mmafm
- bin/powerpc-linux/mmpfb
- bin/powerpc-linux/otfinfo
- bin/powerpc-linux/otftotfm
- bin/powerpc-linux/t1dotlessj
- bin/powerpc-linux/t1lint
- bin/powerpc-linux/t1reencode
- bin/powerpc-linux/t1testpage
- bin/powerpc-linux/ttftotype42
-binfiles arch=powerpc-aix size=1398
- bin/powerpc-aix/cfftot1
- bin/powerpc-aix/mmafm
- bin/powerpc-aix/mmpfb
- bin/powerpc-aix/otfinfo
- bin/powerpc-aix/otftotfm
- bin/powerpc-aix/t1dotlessj
- bin/powerpc-aix/t1lint
- bin/powerpc-aix/t1reencode
- bin/powerpc-aix/t1testpage
- bin/powerpc-aix/ttftotype42
+
+name bin-lcdftypetools.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-lcdftypetools for x86_64-linux
binfiles arch=x86_64-linux size=816
bin/x86_64-linux/cfftot1
bin/x86_64-linux/mmafm
@@ -11563,73 +14962,139 @@ binfiles arch=x86_64-linux size=816
bin/x86_64-linux/t1reencode
bin/x86_64-linux/t1testpage
bin/x86_64-linux/ttftotype42
-binfiles arch=powerpc-darwin size=888
- bin/powerpc-darwin/cfftot1
- bin/powerpc-darwin/mmafm
- bin/powerpc-darwin/mmpfb
- bin/powerpc-darwin/otfinfo
- bin/powerpc-darwin/otftotfm
- bin/powerpc-darwin/t1dotlessj
- bin/powerpc-darwin/t1lint
- bin/powerpc-darwin/t1reencode
- bin/powerpc-darwin/t1testpage
- bin/powerpc-darwin/ttftotype42
name bin-makeindex
category TLCore
revision 5403
+depend bin-makeindex.ARCH
docfiles size=9
texmf/doc/man/man1/makeindex.1
texmf/doc/man/man1/mkindex.1
+
+name bin-makeindex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for alpha-linux
+binfiles arch=alpha-linux size=43
+ bin/alpha-linux/makeindex
+ bin/alpha-linux/mkindex
+
+name bin-makeindex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for hppa-hpux
+binfiles arch=hppa-hpux size=40
+ bin/hppa-hpux/makeindex
+ bin/hppa-hpux/mkindex
+
+name bin-makeindex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for i386-darwin
+binfiles arch=i386-darwin size=36
+ bin/i386-darwin/makeindex
+ bin/i386-darwin/mkindex
+
+name bin-makeindex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for i386-freebsd
+binfiles arch=i386-freebsd size=31
+ bin/i386-freebsd/makeindex
+ bin/i386-freebsd/mkindex
+
+name bin-makeindex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for i386-linux
+binfiles arch=i386-linux size=30
+ bin/i386-linux/makeindex
+ bin/i386-linux/mkindex
+
+name bin-makeindex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for i386-openbsd
binfiles arch=i386-openbsd size=32
bin/i386-openbsd/makeindex
bin/i386-openbsd/mkindex
+
+name bin-makeindex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for i386-solaris
binfiles arch=i386-solaris size=32
bin/i386-solaris/makeindex
bin/i386-solaris/mkindex
-binfiles arch=i386-linux size=30
- bin/i386-linux/makeindex
- bin/i386-linux/mkindex
-binfiles arch=hppa-hpux size=40
- bin/hppa-hpux/makeindex
- bin/hppa-hpux/mkindex
+
+name bin-makeindex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for mips-irix
binfiles arch=mips-irix size=49
bin/mips-irix/makeindex
bin/mips-irix/mkindex
-binfiles arch=alpha-linux size=43
- bin/alpha-linux/makeindex
- bin/alpha-linux/mkindex
+
+name bin-makeindex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for powerpc-aix
+binfiles arch=powerpc-aix size=37
+ bin/powerpc-aix/makeindex
+ bin/powerpc-aix/mkindex
+
+name bin-makeindex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for powerpc-darwin
+binfiles arch=powerpc-darwin size=36
+ bin/powerpc-darwin/makeindex
+ bin/powerpc-darwin/mkindex
+
+name bin-makeindex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for powerpc-linux
+binfiles arch=powerpc-linux size=34
+ bin/powerpc-linux/makeindex
+ bin/powerpc-linux/mkindex
+
+name bin-makeindex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for sparc-linux
binfiles arch=sparc-linux size=34
bin/sparc-linux/makeindex
bin/sparc-linux/mkindex
+
+name bin-makeindex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for sparc-solaris
binfiles arch=sparc-solaris size=55
bin/sparc-solaris/makeindex
bin/sparc-solaris/mkindex
-binfiles arch=i386-freebsd size=31
- bin/i386-freebsd/makeindex
- bin/i386-freebsd/mkindex
+
+name bin-makeindex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for win32
binfiles arch=win32 size=19
bin/win32/makeindex.exe
-binfiles arch=i386-darwin size=36
- bin/i386-darwin/makeindex
- bin/i386-darwin/mkindex
-binfiles arch=powerpc-linux size=34
- bin/powerpc-linux/makeindex
- bin/powerpc-linux/mkindex
-binfiles arch=powerpc-aix size=37
- bin/powerpc-aix/makeindex
- bin/powerpc-aix/mkindex
+
+name bin-makeindex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-makeindex for x86_64-linux
binfiles arch=x86_64-linux size=35
bin/x86_64-linux/makeindex
bin/x86_64-linux/mkindex
-binfiles arch=powerpc-darwin size=36
- bin/powerpc-darwin/makeindex
- bin/powerpc-darwin/mkindex
name bin-metafont
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-metafont.ARCH
execute BuildFormat metafont
docfiles size=5
texmf/doc/man/man1/mf-nowin.1
@@ -11637,56 +15102,147 @@ docfiles size=5
runfiles size=7
texmf/fmtutil/format.metafont.cnf
texmf/web2c/mf.pool
+
+name bin-metafont.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for alpha-linux
+execute BuildFormat metafont
+binfiles arch=alpha-linux size=198
+ bin/alpha-linux/mf
+ bin/alpha-linux/mf-nowin
+
+name bin-metafont.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for hppa-hpux
+execute BuildFormat metafont
+binfiles arch=hppa-hpux size=159
+ bin/hppa-hpux/mf
+ bin/hppa-hpux/mf-nowin
+
+name bin-metafont.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for i386-darwin
+execute BuildFormat metafont
+binfiles arch=i386-darwin size=154
+ bin/i386-darwin/mf
+ bin/i386-darwin/mf-nowin
+
+name bin-metafont.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for i386-freebsd
+execute BuildFormat metafont
+binfiles arch=i386-freebsd size=127
+ bin/i386-freebsd/mf
+ bin/i386-freebsd/mf-nowin
+
+name bin-metafont.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for i386-linux
+execute BuildFormat metafont
+binfiles arch=i386-linux size=117
+ bin/i386-linux/mf
+ bin/i386-linux/mf-nowin
+
+name bin-metafont.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for i386-openbsd
+execute BuildFormat metafont
binfiles arch=i386-openbsd size=123
bin/i386-openbsd/mf
bin/i386-openbsd/mf-nowin
+
+name bin-metafont.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for i386-solaris
+execute BuildFormat metafont
binfiles arch=i386-solaris size=137
bin/i386-solaris/mf
bin/i386-solaris/mf-nowin
-binfiles arch=i386-linux size=117
- bin/i386-linux/mf
- bin/i386-linux/mf-nowin
-binfiles arch=hppa-hpux size=159
- bin/hppa-hpux/mf
- bin/hppa-hpux/mf-nowin
+
+name bin-metafont.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for mips-irix
+execute BuildFormat metafont
binfiles arch=mips-irix size=238
bin/mips-irix/mf
bin/mips-irix/mf-nowin
-binfiles arch=alpha-linux size=198
- bin/alpha-linux/mf
- bin/alpha-linux/mf-nowin
+
+name bin-metafont.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for powerpc-aix
+execute BuildFormat metafont
+binfiles arch=powerpc-aix size=161
+ bin/powerpc-aix/mf
+ bin/powerpc-aix/mf-nowin
+
+name bin-metafont.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for powerpc-darwin
+execute BuildFormat metafont
+binfiles arch=powerpc-darwin size=154
+ bin/powerpc-darwin/mf
+ bin/powerpc-darwin/mf-nowin
+
+name bin-metafont.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for powerpc-linux
+execute BuildFormat metafont
+binfiles arch=powerpc-linux size=150
+ bin/powerpc-linux/mf
+ bin/powerpc-linux/mf-nowin
+
+name bin-metafont.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for sparc-linux
+execute BuildFormat metafont
binfiles arch=sparc-linux size=142
bin/sparc-linux/mf
bin/sparc-linux/mf-nowin
+
+name bin-metafont.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for sparc-solaris
+execute BuildFormat metafont
binfiles arch=sparc-solaris size=214
bin/sparc-solaris/mf
bin/sparc-solaris/mf-nowin
-binfiles arch=i386-freebsd size=127
- bin/i386-freebsd/mf
- bin/i386-freebsd/mf-nowin
+
+name bin-metafont.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for win32
+execute BuildFormat metafont
binfiles arch=win32 size=95
bin/win32/mf-nowin.exe
bin/win32/mf.exe
-binfiles arch=i386-darwin size=154
- bin/i386-darwin/mf
- bin/i386-darwin/mf-nowin
-binfiles arch=powerpc-linux size=150
- bin/powerpc-linux/mf
- bin/powerpc-linux/mf-nowin
-binfiles arch=powerpc-aix size=161
- bin/powerpc-aix/mf
- bin/powerpc-aix/mf-nowin
+
+name bin-metafont.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metafont for x86_64-linux
+execute BuildFormat metafont
binfiles arch=x86_64-linux size=138
bin/x86_64-linux/mf
bin/x86_64-linux/mf-nowin
-binfiles arch=powerpc-darwin size=154
- bin/powerpc-darwin/mf
- bin/powerpc-darwin/mf-nowin
name bin-metapost
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-metapost.ARCH
execute BuildFormat metapost
docfiles size=9
texmf/doc/man/man1/dmp.1
@@ -11697,6 +15253,77 @@ docfiles size=9
texmf/doc/man/man1/newer.1
runfiles size=1
texmf/fmtutil/format.metapost.cnf
+
+name bin-metapost.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for alpha-linux
+execute BuildFormat metapost
+binfiles arch=alpha-linux size=223
+ bin/alpha-linux/dmp
+ bin/alpha-linux/dvitomp
+ bin/alpha-linux/makempx
+ bin/alpha-linux/mpost
+ bin/alpha-linux/mpto
+ bin/alpha-linux/newer
+
+name bin-metapost.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for hppa-hpux
+execute BuildFormat metapost
+binfiles arch=hppa-hpux size=202
+ bin/hppa-hpux/dmp
+ bin/hppa-hpux/dvitomp
+ bin/hppa-hpux/makempx
+ bin/hppa-hpux/mpost
+ bin/hppa-hpux/mpto
+ bin/hppa-hpux/newer
+
+name bin-metapost.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for i386-darwin
+execute BuildFormat metapost
+binfiles arch=i386-darwin size=176
+ bin/i386-darwin/dmp
+ bin/i386-darwin/dvitomp
+ bin/i386-darwin/makempx
+ bin/i386-darwin/mpost
+ bin/i386-darwin/mpto
+ bin/i386-darwin/newer
+
+name bin-metapost.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for i386-freebsd
+execute BuildFormat metapost
+binfiles arch=i386-freebsd size=142
+ bin/i386-freebsd/dmp
+ bin/i386-freebsd/dvitomp
+ bin/i386-freebsd/makempx
+ bin/i386-freebsd/mpost
+ bin/i386-freebsd/mpto
+ bin/i386-freebsd/newer
+
+name bin-metapost.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for i386-linux
+execute BuildFormat metapost
+binfiles arch=i386-linux size=136
+ bin/i386-linux/dmp
+ bin/i386-linux/dvitomp
+ bin/i386-linux/makempx
+ bin/i386-linux/mpost
+ bin/i386-linux/mpto
+ bin/i386-linux/newer
+
+name bin-metapost.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for i386-openbsd
+execute BuildFormat metapost
binfiles arch=i386-openbsd size=141
bin/i386-openbsd/dmp
bin/i386-openbsd/dvitomp
@@ -11704,6 +15331,12 @@ binfiles arch=i386-openbsd size=141
bin/i386-openbsd/mpost
bin/i386-openbsd/mpto
bin/i386-openbsd/newer
+
+name bin-metapost.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for i386-solaris
+execute BuildFormat metapost
binfiles arch=i386-solaris size=153
bin/i386-solaris/dmp
bin/i386-solaris/dvitomp
@@ -11711,20 +15344,12 @@ binfiles arch=i386-solaris size=153
bin/i386-solaris/mpost
bin/i386-solaris/mpto
bin/i386-solaris/newer
-binfiles arch=i386-linux size=136
- bin/i386-linux/dmp
- bin/i386-linux/dvitomp
- bin/i386-linux/makempx
- bin/i386-linux/mpost
- bin/i386-linux/mpto
- bin/i386-linux/newer
-binfiles arch=hppa-hpux size=202
- bin/hppa-hpux/dmp
- bin/hppa-hpux/dvitomp
- bin/hppa-hpux/makempx
- bin/hppa-hpux/mpost
- bin/hppa-hpux/mpto
- bin/hppa-hpux/newer
+
+name bin-metapost.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for mips-irix
+execute BuildFormat metapost
binfiles arch=mips-irix size=270
bin/mips-irix/dmp
bin/mips-irix/dvitomp
@@ -11732,13 +15357,51 @@ binfiles arch=mips-irix size=270
bin/mips-irix/mpost
bin/mips-irix/mpto
bin/mips-irix/newer
-binfiles arch=alpha-linux size=223
- bin/alpha-linux/dmp
- bin/alpha-linux/dvitomp
- bin/alpha-linux/makempx
- bin/alpha-linux/mpost
- bin/alpha-linux/mpto
- bin/alpha-linux/newer
+
+name bin-metapost.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for powerpc-aix
+execute BuildFormat metapost
+binfiles arch=powerpc-aix size=184
+ bin/powerpc-aix/dmp
+ bin/powerpc-aix/dvitomp
+ bin/powerpc-aix/makempx
+ bin/powerpc-aix/mpost
+ bin/powerpc-aix/mpto
+ bin/powerpc-aix/newer
+
+name bin-metapost.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for powerpc-darwin
+execute BuildFormat metapost
+binfiles arch=powerpc-darwin size=172
+ bin/powerpc-darwin/dmp
+ bin/powerpc-darwin/dvitomp
+ bin/powerpc-darwin/makempx
+ bin/powerpc-darwin/mpost
+ bin/powerpc-darwin/mpto
+ bin/powerpc-darwin/newer
+
+name bin-metapost.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for powerpc-linux
+execute BuildFormat metapost
+binfiles arch=powerpc-linux size=165
+ bin/powerpc-linux/dmp
+ bin/powerpc-linux/dvitomp
+ bin/powerpc-linux/makempx
+ bin/powerpc-linux/mpost
+ bin/powerpc-linux/mpto
+ bin/powerpc-linux/newer
+
+name bin-metapost.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for sparc-linux
+execute BuildFormat metapost
binfiles arch=sparc-linux size=157
bin/sparc-linux/dmp
bin/sparc-linux/dvitomp
@@ -11746,6 +15409,12 @@ binfiles arch=sparc-linux size=157
bin/sparc-linux/mpost
bin/sparc-linux/mpto
bin/sparc-linux/newer
+
+name bin-metapost.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for sparc-solaris
+execute BuildFormat metapost
binfiles arch=sparc-solaris size=253
bin/sparc-solaris/dmp
bin/sparc-solaris/dvitomp
@@ -11753,13 +15422,12 @@ binfiles arch=sparc-solaris size=253
bin/sparc-solaris/mpost
bin/sparc-solaris/mpto
bin/sparc-solaris/newer
-binfiles arch=i386-freebsd size=142
- bin/i386-freebsd/dmp
- bin/i386-freebsd/dvitomp
- bin/i386-freebsd/makempx
- bin/i386-freebsd/mpost
- bin/i386-freebsd/mpto
- bin/i386-freebsd/newer
+
+name bin-metapost.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for win32
+execute BuildFormat metapost
binfiles arch=win32 size=98
bin/win32/dmp.exe
bin/win32/dvitomp.exe
@@ -11770,27 +15438,12 @@ binfiles arch=win32 size=98
bin/win32/mpost.exe
bin/win32/mpto.exe
bin/win32/newer.exe
-binfiles arch=i386-darwin size=176
- bin/i386-darwin/dmp
- bin/i386-darwin/dvitomp
- bin/i386-darwin/makempx
- bin/i386-darwin/mpost
- bin/i386-darwin/mpto
- bin/i386-darwin/newer
-binfiles arch=powerpc-linux size=165
- bin/powerpc-linux/dmp
- bin/powerpc-linux/dvitomp
- bin/powerpc-linux/makempx
- bin/powerpc-linux/mpost
- bin/powerpc-linux/mpto
- bin/powerpc-linux/newer
-binfiles arch=powerpc-aix size=184
- bin/powerpc-aix/dmp
- bin/powerpc-aix/dvitomp
- bin/powerpc-aix/makempx
- bin/powerpc-aix/mpost
- bin/powerpc-aix/mpto
- bin/powerpc-aix/newer
+
+name bin-metapost.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-metapost for x86_64-linux
+execute BuildFormat metapost
binfiles arch=x86_64-linux size=164
bin/x86_64-linux/dmp
bin/x86_64-linux/dvitomp
@@ -11798,88 +15451,188 @@ binfiles arch=x86_64-linux size=164
bin/x86_64-linux/mpost
bin/x86_64-linux/mpto
bin/x86_64-linux/newer
-binfiles arch=powerpc-darwin size=172
- bin/powerpc-darwin/dmp
- bin/powerpc-darwin/dvitomp
- bin/powerpc-darwin/makempx
- bin/powerpc-darwin/mpost
- bin/powerpc-darwin/mpto
- bin/powerpc-darwin/newer
name bin-mex
category TLCore
revision 5403
depend bin-pdftex
depend bin-tex
+depend bin-mex.ARCH
execute BuildFormat mex
execute BuildFormat utf8mex
runfiles size=2
texmf/fmtutil/format.mex.cnf
texmf/fmtutil/format.utf8mex.cnf
+
+name bin-mex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for alpha-linux
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/mex
+ bin/alpha-linux/pdfmex
+ bin/alpha-linux/utf8mex
+
+name bin-mex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for hppa-hpux
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/mex
+ bin/hppa-hpux/pdfmex
+ bin/hppa-hpux/utf8mex
+
+name bin-mex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for i386-darwin
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/mex
+ bin/i386-darwin/pdfmex
+ bin/i386-darwin/utf8mex
+
+name bin-mex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for i386-freebsd
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/mex
+ bin/i386-freebsd/pdfmex
+ bin/i386-freebsd/utf8mex
+
+name bin-mex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for i386-linux
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=i386-linux size=3
+ bin/i386-linux/mex
+ bin/i386-linux/pdfmex
+ bin/i386-linux/utf8mex
+
+name bin-mex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for i386-openbsd
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/mex
bin/i386-openbsd/pdfmex
bin/i386-openbsd/utf8mex
+
+name bin-mex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for i386-solaris
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=i386-solaris size=3
bin/i386-solaris/mex
bin/i386-solaris/pdfmex
bin/i386-solaris/utf8mex
-binfiles arch=i386-linux size=3
- bin/i386-linux/mex
- bin/i386-linux/pdfmex
- bin/i386-linux/utf8mex
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/mex
- bin/hppa-hpux/pdfmex
- bin/hppa-hpux/utf8mex
+
+name bin-mex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for mips-irix
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=mips-irix size=3
bin/mips-irix/mex
bin/mips-irix/pdfmex
bin/mips-irix/utf8mex
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/mex
- bin/alpha-linux/pdfmex
- bin/alpha-linux/utf8mex
+
+name bin-mex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for powerpc-aix
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/mex
+ bin/powerpc-aix/pdfmex
+ bin/powerpc-aix/utf8mex
+
+name bin-mex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for powerpc-darwin
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/mex
+ bin/powerpc-darwin/pdfmex
+ bin/powerpc-darwin/utf8mex
+
+name bin-mex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for powerpc-linux
+execute BuildFormat mex
+execute BuildFormat utf8mex
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/mex
+ bin/powerpc-linux/pdfmex
+ bin/powerpc-linux/utf8mex
+
+name bin-mex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for sparc-linux
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=sparc-linux size=3
bin/sparc-linux/mex
bin/sparc-linux/pdfmex
bin/sparc-linux/utf8mex
+
+name bin-mex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for sparc-solaris
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/mex
bin/sparc-solaris/pdfmex
bin/sparc-solaris/utf8mex
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/mex
- bin/i386-freebsd/pdfmex
- bin/i386-freebsd/utf8mex
+
+name bin-mex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for win32
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=win32 size=3
bin/win32/mex.exe
bin/win32/pdfmex.exe
bin/win32/utf8mex.exe
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/mex
- bin/i386-darwin/pdfmex
- bin/i386-darwin/utf8mex
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/mex
- bin/powerpc-linux/pdfmex
- bin/powerpc-linux/utf8mex
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/mex
- bin/powerpc-aix/pdfmex
- bin/powerpc-aix/utf8mex
+
+name bin-mex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mex for x86_64-linux
+execute BuildFormat mex
+execute BuildFormat utf8mex
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/mex
bin/x86_64-linux/pdfmex
bin/x86_64-linux/utf8mex
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/mex
- bin/powerpc-darwin/pdfmex
- bin/powerpc-darwin/utf8mex
name bin-mfware
category TLCore
revision 5403
+depend bin-mfware.ARCH
docfiles size=7
texmf/doc/man/man1/gftodvi.1
texmf/doc/man/man1/gftopk.1
@@ -11887,6 +15640,71 @@ docfiles size=7
texmf/doc/man/man1/mft.1
texmf/doc/man/man1/pktogf.1
texmf/doc/man/man1/pktype.1
+
+name bin-mfware.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for alpha-linux
+binfiles arch=alpha-linux size=190
+ bin/alpha-linux/gftodvi
+ bin/alpha-linux/gftopk
+ bin/alpha-linux/gftype
+ bin/alpha-linux/mft
+ bin/alpha-linux/pktogf
+ bin/alpha-linux/pktype
+
+name bin-mfware.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for hppa-hpux
+binfiles arch=hppa-hpux size=163
+ bin/hppa-hpux/gftodvi
+ bin/hppa-hpux/gftopk
+ bin/hppa-hpux/gftype
+ bin/hppa-hpux/mft
+ bin/hppa-hpux/pktogf
+ bin/hppa-hpux/pktype
+
+name bin-mfware.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for i386-darwin
+binfiles arch=i386-darwin size=142
+ bin/i386-darwin/gftodvi
+ bin/i386-darwin/gftopk
+ bin/i386-darwin/gftype
+ bin/i386-darwin/mft
+ bin/i386-darwin/pktogf
+ bin/i386-darwin/pktype
+
+name bin-mfware.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for i386-freebsd
+binfiles arch=i386-freebsd size=118
+ bin/i386-freebsd/gftodvi
+ bin/i386-freebsd/gftopk
+ bin/i386-freebsd/gftype
+ bin/i386-freebsd/mft
+ bin/i386-freebsd/pktogf
+ bin/i386-freebsd/pktype
+
+name bin-mfware.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for i386-linux
+binfiles arch=i386-linux size=107
+ bin/i386-linux/gftodvi
+ bin/i386-linux/gftopk
+ bin/i386-linux/gftype
+ bin/i386-linux/mft
+ bin/i386-linux/pktogf
+ bin/i386-linux/pktype
+
+name bin-mfware.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for i386-openbsd
binfiles arch=i386-openbsd size=117
bin/i386-openbsd/gftodvi
bin/i386-openbsd/gftopk
@@ -11894,6 +15712,11 @@ binfiles arch=i386-openbsd size=117
bin/i386-openbsd/mft
bin/i386-openbsd/pktogf
bin/i386-openbsd/pktype
+
+name bin-mfware.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for i386-solaris
binfiles arch=i386-solaris size=125
bin/i386-solaris/gftodvi
bin/i386-solaris/gftopk
@@ -11901,20 +15724,11 @@ binfiles arch=i386-solaris size=125
bin/i386-solaris/mft
bin/i386-solaris/pktogf
bin/i386-solaris/pktype
-binfiles arch=i386-linux size=107
- bin/i386-linux/gftodvi
- bin/i386-linux/gftopk
- bin/i386-linux/gftype
- bin/i386-linux/mft
- bin/i386-linux/pktogf
- bin/i386-linux/pktype
-binfiles arch=hppa-hpux size=163
- bin/hppa-hpux/gftodvi
- bin/hppa-hpux/gftopk
- bin/hppa-hpux/gftype
- bin/hppa-hpux/mft
- bin/hppa-hpux/pktogf
- bin/hppa-hpux/pktype
+
+name bin-mfware.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for mips-irix
binfiles arch=mips-irix size=218
bin/mips-irix/gftodvi
bin/mips-irix/gftopk
@@ -11922,13 +15736,47 @@ binfiles arch=mips-irix size=218
bin/mips-irix/mft
bin/mips-irix/pktogf
bin/mips-irix/pktype
-binfiles arch=alpha-linux size=190
- bin/alpha-linux/gftodvi
- bin/alpha-linux/gftopk
- bin/alpha-linux/gftype
- bin/alpha-linux/mft
- bin/alpha-linux/pktogf
- bin/alpha-linux/pktype
+
+name bin-mfware.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for powerpc-aix
+binfiles arch=powerpc-aix size=141
+ bin/powerpc-aix/gftodvi
+ bin/powerpc-aix/gftopk
+ bin/powerpc-aix/gftype
+ bin/powerpc-aix/mft
+ bin/powerpc-aix/pktogf
+ bin/powerpc-aix/pktype
+
+name bin-mfware.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for powerpc-darwin
+binfiles arch=powerpc-darwin size=135
+ bin/powerpc-darwin/gftodvi
+ bin/powerpc-darwin/gftopk
+ bin/powerpc-darwin/gftype
+ bin/powerpc-darwin/mft
+ bin/powerpc-darwin/pktogf
+ bin/powerpc-darwin/pktype
+
+name bin-mfware.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for powerpc-linux
+binfiles arch=powerpc-linux size=128
+ bin/powerpc-linux/gftodvi
+ bin/powerpc-linux/gftopk
+ bin/powerpc-linux/gftype
+ bin/powerpc-linux/mft
+ bin/powerpc-linux/pktogf
+ bin/powerpc-linux/pktype
+
+name bin-mfware.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for sparc-linux
binfiles arch=sparc-linux size=124
bin/sparc-linux/gftodvi
bin/sparc-linux/gftopk
@@ -11936,6 +15784,11 @@ binfiles arch=sparc-linux size=124
bin/sparc-linux/mft
bin/sparc-linux/pktogf
bin/sparc-linux/pktype
+
+name bin-mfware.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for sparc-solaris
binfiles arch=sparc-solaris size=250
bin/sparc-solaris/gftodvi
bin/sparc-solaris/gftopk
@@ -11943,13 +15796,11 @@ binfiles arch=sparc-solaris size=250
bin/sparc-solaris/mft
bin/sparc-solaris/pktogf
bin/sparc-solaris/pktype
-binfiles arch=i386-freebsd size=118
- bin/i386-freebsd/gftodvi
- bin/i386-freebsd/gftopk
- bin/i386-freebsd/gftype
- bin/i386-freebsd/mft
- bin/i386-freebsd/pktogf
- bin/i386-freebsd/pktype
+
+name bin-mfware.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for win32
binfiles arch=win32 size=34
bin/win32/gftodvi.exe
bin/win32/gftopk.exe
@@ -11957,27 +15808,11 @@ binfiles arch=win32 size=34
bin/win32/mft.exe
bin/win32/pktogf.exe
bin/win32/pktype.exe
-binfiles arch=i386-darwin size=142
- bin/i386-darwin/gftodvi
- bin/i386-darwin/gftopk
- bin/i386-darwin/gftype
- bin/i386-darwin/mft
- bin/i386-darwin/pktogf
- bin/i386-darwin/pktype
-binfiles arch=powerpc-linux size=128
- bin/powerpc-linux/gftodvi
- bin/powerpc-linux/gftopk
- bin/powerpc-linux/gftype
- bin/powerpc-linux/mft
- bin/powerpc-linux/pktogf
- bin/powerpc-linux/pktype
-binfiles arch=powerpc-aix size=141
- bin/powerpc-aix/gftodvi
- bin/powerpc-aix/gftopk
- bin/powerpc-aix/gftype
- bin/powerpc-aix/mft
- bin/powerpc-aix/pktogf
- bin/powerpc-aix/pktype
+
+name bin-mfware.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mfware for x86_64-linux
binfiles arch=x86_64-linux size=131
bin/x86_64-linux/gftodvi
bin/x86_64-linux/gftopk
@@ -11985,104 +15820,265 @@ binfiles arch=x86_64-linux size=131
bin/x86_64-linux/mft
bin/x86_64-linux/pktogf
bin/x86_64-linux/pktype
-binfiles arch=powerpc-darwin size=135
- bin/powerpc-darwin/gftodvi
- bin/powerpc-darwin/gftopk
- bin/powerpc-darwin/gftype
- bin/powerpc-darwin/mft
- bin/powerpc-darwin/pktogf
- bin/powerpc-darwin/pktype
name bin-mltex
category TLCore
revision 5403
depend bin-latex
+depend bin-mltex.ARCH
execute BuildFormat mltex
runfiles size=1
texmf/fmtutil/format.mltex.cnf
+
+name bin-mltex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for alpha-linux
+execute BuildFormat mltex
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/mllatex
+ bin/alpha-linux/mltex
+
+name bin-mltex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for hppa-hpux
+execute BuildFormat mltex
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/mllatex
+ bin/hppa-hpux/mltex
+
+name bin-mltex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for i386-darwin
+execute BuildFormat mltex
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/mllatex
+ bin/i386-darwin/mltex
+
+name bin-mltex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for i386-freebsd
+execute BuildFormat mltex
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/mllatex
+ bin/i386-freebsd/mltex
+
+name bin-mltex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for i386-linux
+execute BuildFormat mltex
+binfiles arch=i386-linux size=2
+ bin/i386-linux/mllatex
+ bin/i386-linux/mltex
+
+name bin-mltex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for i386-openbsd
+execute BuildFormat mltex
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/mllatex
bin/i386-openbsd/mltex
+
+name bin-mltex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for i386-solaris
+execute BuildFormat mltex
binfiles arch=i386-solaris size=2
bin/i386-solaris/mllatex
bin/i386-solaris/mltex
-binfiles arch=i386-linux size=2
- bin/i386-linux/mllatex
- bin/i386-linux/mltex
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/mllatex
- bin/hppa-hpux/mltex
+
+name bin-mltex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for mips-irix
+execute BuildFormat mltex
binfiles arch=mips-irix size=2
bin/mips-irix/mllatex
bin/mips-irix/mltex
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/mllatex
- bin/alpha-linux/mltex
+
+name bin-mltex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for powerpc-aix
+execute BuildFormat mltex
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/mllatex
+ bin/powerpc-aix/mltex
+
+name bin-mltex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for powerpc-darwin
+execute BuildFormat mltex
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/mllatex
+ bin/powerpc-darwin/mltex
+
+name bin-mltex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for powerpc-linux
+execute BuildFormat mltex
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/mllatex
+ bin/powerpc-linux/mltex
+
+name bin-mltex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for sparc-linux
+execute BuildFormat mltex
binfiles arch=sparc-linux size=2
bin/sparc-linux/mllatex
bin/sparc-linux/mltex
+
+name bin-mltex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for sparc-solaris
+execute BuildFormat mltex
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/mllatex
bin/sparc-solaris/mltex
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/mllatex
- bin/i386-freebsd/mltex
+
+name bin-mltex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for win32
+execute BuildFormat mltex
binfiles arch=win32 size=2
bin/win32/mllatex.exe
bin/win32/mltex.exe
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/mllatex
- bin/i386-darwin/mltex
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/mllatex
- bin/powerpc-linux/mltex
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/mllatex
- bin/powerpc-aix/mltex
+
+name bin-mltex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-mltex for x86_64-linux
+execute BuildFormat mltex
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/mllatex
bin/x86_64-linux/mltex
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/mllatex
- bin/powerpc-darwin/mltex
name bin-musixflx
category TLCore
revision 5403
+depend bin-musixflx.ARCH
+
+name bin-musixflx.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for alpha-linux
+binfiles arch=alpha-linux size=5
+ bin/alpha-linux/musixflx
+
+name bin-musixflx.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for hppa-hpux
+binfiles arch=hppa-hpux size=9
+ bin/hppa-hpux/musixflx
+
+name bin-musixflx.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for i386-darwin
+binfiles arch=i386-darwin size=7
+ bin/i386-darwin/musixflx
+
+name bin-musixflx.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for i386-freebsd
+binfiles arch=i386-freebsd size=4
+ bin/i386-freebsd/musixflx
+
+name bin-musixflx.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for i386-linux
+binfiles arch=i386-linux size=4
+ bin/i386-linux/musixflx
+
+name bin-musixflx.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for i386-openbsd
binfiles arch=i386-openbsd size=5
bin/i386-openbsd/musixflx
+
+name bin-musixflx.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for i386-solaris
binfiles arch=i386-solaris size=4
bin/i386-solaris/musixflx
-binfiles arch=i386-linux size=4
- bin/i386-linux/musixflx
-binfiles arch=hppa-hpux size=9
- bin/hppa-hpux/musixflx
+
+name bin-musixflx.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for mips-irix
binfiles arch=mips-irix size=6
bin/mips-irix/musixflx
-binfiles arch=alpha-linux size=5
- bin/alpha-linux/musixflx
+
+name bin-musixflx.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for powerpc-aix
+binfiles arch=powerpc-aix size=4
+ bin/powerpc-aix/musixflx
+
+name bin-musixflx.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for powerpc-darwin
+binfiles arch=powerpc-darwin size=6
+ bin/powerpc-darwin/musixflx
+
+name bin-musixflx.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for powerpc-linux
+binfiles arch=powerpc-linux size=4
+ bin/powerpc-linux/musixflx
+
+name bin-musixflx.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for sparc-linux
binfiles arch=sparc-linux size=5
bin/sparc-linux/musixflx
+
+name bin-musixflx.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for sparc-solaris
binfiles arch=sparc-solaris size=6
bin/sparc-solaris/musixflx
-binfiles arch=i386-freebsd size=4
- bin/i386-freebsd/musixflx
+
+name bin-musixflx.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for win32
binfiles arch=win32 size=4
bin/win32/musixflx.exe
-binfiles arch=i386-darwin size=7
- bin/i386-darwin/musixflx
-binfiles arch=powerpc-linux size=4
- bin/powerpc-linux/musixflx
-binfiles arch=powerpc-aix size=4
- bin/powerpc-aix/musixflx
+
+name bin-musixflx.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-musixflx for x86_64-linux
binfiles arch=x86_64-linux size=5
bin/x86_64-linux/musixflx
-binfiles arch=powerpc-darwin size=6
- bin/powerpc-darwin/musixflx
name bin-omega
category TLCore
revision 5403
+depend bin-omega.ARCH
execute BuildFormat omega
docfiles size=3
texmf/doc/man/man1/lambda.1
@@ -12090,56 +16086,147 @@ docfiles size=3
runfiles size=9
texmf/fmtutil/format.omega.cnf
texmf/web2c/omega.pool
+
+name bin-omega.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for alpha-linux
+execute BuildFormat omega
+binfiles arch=alpha-linux size=169
+ bin/alpha-linux/lambda
+ bin/alpha-linux/omega
+
+name bin-omega.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for hppa-hpux
+execute BuildFormat omega
+binfiles arch=hppa-hpux size=142
+ bin/hppa-hpux/lambda
+ bin/hppa-hpux/omega
+
+name bin-omega.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for i386-darwin
+execute BuildFormat omega
+binfiles arch=i386-darwin size=131
+ bin/i386-darwin/lambda
+ bin/i386-darwin/omega
+
+name bin-omega.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for i386-freebsd
+execute BuildFormat omega
+binfiles arch=i386-freebsd size=115
+ bin/i386-freebsd/lambda
+ bin/i386-freebsd/omega
+
+name bin-omega.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for i386-linux
+execute BuildFormat omega
+binfiles arch=i386-linux size=104
+ bin/i386-linux/lambda
+ bin/i386-linux/omega
+
+name bin-omega.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for i386-openbsd
+execute BuildFormat omega
binfiles arch=i386-openbsd size=109
bin/i386-openbsd/lambda
bin/i386-openbsd/omega
+
+name bin-omega.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for i386-solaris
+execute BuildFormat omega
binfiles arch=i386-solaris size=121
bin/i386-solaris/lambda
bin/i386-solaris/omega
-binfiles arch=i386-linux size=104
- bin/i386-linux/lambda
- bin/i386-linux/omega
-binfiles arch=hppa-hpux size=142
- bin/hppa-hpux/lambda
- bin/hppa-hpux/omega
+
+name bin-omega.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for mips-irix
+execute BuildFormat omega
binfiles arch=mips-irix size=204
bin/mips-irix/lambda
bin/mips-irix/omega
-binfiles arch=alpha-linux size=169
- bin/alpha-linux/lambda
- bin/alpha-linux/omega
+
+name bin-omega.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for powerpc-aix
+execute BuildFormat omega
+binfiles arch=powerpc-aix size=138
+ bin/powerpc-aix/lambda
+ bin/powerpc-aix/omega
+
+name bin-omega.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for powerpc-darwin
+execute BuildFormat omega
+binfiles arch=powerpc-darwin size=134
+ bin/powerpc-darwin/lambda
+ bin/powerpc-darwin/omega
+
+name bin-omega.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for powerpc-linux
+execute BuildFormat omega
+binfiles arch=powerpc-linux size=129
+ bin/powerpc-linux/lambda
+ bin/powerpc-linux/omega
+
+name bin-omega.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for sparc-linux
+execute BuildFormat omega
binfiles arch=sparc-linux size=129
bin/sparc-linux/lambda
bin/sparc-linux/omega
+
+name bin-omega.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for sparc-solaris
+execute BuildFormat omega
binfiles arch=sparc-solaris size=177
bin/sparc-solaris/lambda
bin/sparc-solaris/omega
-binfiles arch=i386-freebsd size=115
- bin/i386-freebsd/lambda
- bin/i386-freebsd/omega
+
+name bin-omega.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for win32
+execute BuildFormat omega
binfiles arch=win32 size=98
bin/win32/lambda.exe
bin/win32/omega.dll
bin/win32/omega.exe
-binfiles arch=i386-darwin size=131
- bin/i386-darwin/lambda
- bin/i386-darwin/omega
-binfiles arch=powerpc-linux size=129
- bin/powerpc-linux/lambda
- bin/powerpc-linux/omega
-binfiles arch=powerpc-aix size=138
- bin/powerpc-aix/lambda
- bin/powerpc-aix/omega
+
+name bin-omega.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omega for x86_64-linux
+execute BuildFormat omega
binfiles arch=x86_64-linux size=118
bin/x86_64-linux/lambda
bin/x86_64-linux/omega
-binfiles arch=powerpc-darwin size=134
- bin/powerpc-darwin/lambda
- bin/powerpc-darwin/omega
name bin-omegaware
category TLCore
revision 5403
+depend bin-omegaware.ARCH
docfiles size=9
texmf/doc/man/man1/odvicopy.1
texmf/doc/man/man1/odvips.1
@@ -12150,6 +16237,96 @@ docfiles size=9
texmf/doc/man/man1/outocp.1
texmf/doc/man/man1/ovf2ovp.1
texmf/doc/man/man1/ovp2ovf.1
+
+name bin-omegaware.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for alpha-linux
+binfiles arch=alpha-linux size=203
+ bin/alpha-linux/odvicopy
+ bin/alpha-linux/odvips
+ bin/alpha-linux/odvitype
+ bin/alpha-linux/ofm2opl
+ bin/alpha-linux/omfonts
+ bin/alpha-linux/opl2ofm
+ bin/alpha-linux/otangle
+ bin/alpha-linux/otp2ocp
+ bin/alpha-linux/outocp
+ bin/alpha-linux/ovf2ovp
+ bin/alpha-linux/ovp2ovf
+
+name bin-omegaware.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for hppa-hpux
+binfiles arch=hppa-hpux size=182
+ bin/hppa-hpux/odvicopy
+ bin/hppa-hpux/odvips
+ bin/hppa-hpux/odvitype
+ bin/hppa-hpux/ofm2opl
+ bin/hppa-hpux/omfonts
+ bin/hppa-hpux/opl2ofm
+ bin/hppa-hpux/otangle
+ bin/hppa-hpux/otp2ocp
+ bin/hppa-hpux/outocp
+ bin/hppa-hpux/ovf2ovp
+ bin/hppa-hpux/ovp2ovf
+
+name bin-omegaware.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for i386-darwin
+binfiles arch=i386-darwin size=158
+ bin/i386-darwin/odvicopy
+ bin/i386-darwin/odvips
+ bin/i386-darwin/odvitype
+ bin/i386-darwin/ofm2opl
+ bin/i386-darwin/omfonts
+ bin/i386-darwin/opl2ofm
+ bin/i386-darwin/otangle
+ bin/i386-darwin/otp2ocp
+ bin/i386-darwin/outocp
+ bin/i386-darwin/ovf2ovp
+ bin/i386-darwin/ovp2ovf
+
+name bin-omegaware.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for i386-freebsd
+binfiles arch=i386-freebsd size=134
+ bin/i386-freebsd/odvicopy
+ bin/i386-freebsd/odvips
+ bin/i386-freebsd/odvitype
+ bin/i386-freebsd/ofm2opl
+ bin/i386-freebsd/omfonts
+ bin/i386-freebsd/opl2ofm
+ bin/i386-freebsd/otangle
+ bin/i386-freebsd/otp2ocp
+ bin/i386-freebsd/outocp
+ bin/i386-freebsd/ovf2ovp
+ bin/i386-freebsd/ovp2ovf
+
+name bin-omegaware.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for i386-linux
+binfiles arch=i386-linux size=122
+ bin/i386-linux/odvicopy
+ bin/i386-linux/odvips
+ bin/i386-linux/odvitype
+ bin/i386-linux/ofm2opl
+ bin/i386-linux/omfonts
+ bin/i386-linux/opl2ofm
+ bin/i386-linux/otangle
+ bin/i386-linux/otp2ocp
+ bin/i386-linux/outocp
+ bin/i386-linux/ovf2ovp
+ bin/i386-linux/ovp2ovf
+
+name bin-omegaware.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for i386-openbsd
binfiles arch=i386-openbsd size=131
bin/i386-openbsd/odvicopy
bin/i386-openbsd/odvips
@@ -12162,6 +16339,11 @@ binfiles arch=i386-openbsd size=131
bin/i386-openbsd/outocp
bin/i386-openbsd/ovf2ovp
bin/i386-openbsd/ovp2ovf
+
+name bin-omegaware.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for i386-solaris
binfiles arch=i386-solaris size=145
bin/i386-solaris/odvicopy
bin/i386-solaris/odvips
@@ -12174,30 +16356,11 @@ binfiles arch=i386-solaris size=145
bin/i386-solaris/outocp
bin/i386-solaris/ovf2ovp
bin/i386-solaris/ovp2ovf
-binfiles arch=i386-linux size=122
- bin/i386-linux/odvicopy
- bin/i386-linux/odvips
- bin/i386-linux/odvitype
- bin/i386-linux/ofm2opl
- bin/i386-linux/omfonts
- bin/i386-linux/opl2ofm
- bin/i386-linux/otangle
- bin/i386-linux/otp2ocp
- bin/i386-linux/outocp
- bin/i386-linux/ovf2ovp
- bin/i386-linux/ovp2ovf
-binfiles arch=hppa-hpux size=182
- bin/hppa-hpux/odvicopy
- bin/hppa-hpux/odvips
- bin/hppa-hpux/odvitype
- bin/hppa-hpux/ofm2opl
- bin/hppa-hpux/omfonts
- bin/hppa-hpux/opl2ofm
- bin/hppa-hpux/otangle
- bin/hppa-hpux/otp2ocp
- bin/hppa-hpux/outocp
- bin/hppa-hpux/ovf2ovp
- bin/hppa-hpux/ovp2ovf
+
+name bin-omegaware.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for mips-irix
binfiles arch=mips-irix size=253
bin/mips-irix/odvicopy
bin/mips-irix/odvips
@@ -12210,18 +16373,62 @@ binfiles arch=mips-irix size=253
bin/mips-irix/outocp
bin/mips-irix/ovf2ovp
bin/mips-irix/ovp2ovf
-binfiles arch=alpha-linux size=203
- bin/alpha-linux/odvicopy
- bin/alpha-linux/odvips
- bin/alpha-linux/odvitype
- bin/alpha-linux/ofm2opl
- bin/alpha-linux/omfonts
- bin/alpha-linux/opl2ofm
- bin/alpha-linux/otangle
- bin/alpha-linux/otp2ocp
- bin/alpha-linux/outocp
- bin/alpha-linux/ovf2ovp
- bin/alpha-linux/ovp2ovf
+
+name bin-omegaware.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for powerpc-aix
+binfiles arch=powerpc-aix size=163
+ bin/powerpc-aix/odvicopy
+ bin/powerpc-aix/odvips
+ bin/powerpc-aix/odvitype
+ bin/powerpc-aix/ofm2opl
+ bin/powerpc-aix/omfonts
+ bin/powerpc-aix/opl2ofm
+ bin/powerpc-aix/otangle
+ bin/powerpc-aix/otp2ocp
+ bin/powerpc-aix/outocp
+ bin/powerpc-aix/ovf2ovp
+ bin/powerpc-aix/ovp2ovf
+
+name bin-omegaware.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for powerpc-darwin
+binfiles arch=powerpc-darwin size=153
+ bin/powerpc-darwin/odvicopy
+ bin/powerpc-darwin/odvips
+ bin/powerpc-darwin/odvitype
+ bin/powerpc-darwin/ofm2opl
+ bin/powerpc-darwin/omfonts
+ bin/powerpc-darwin/opl2ofm
+ bin/powerpc-darwin/otangle
+ bin/powerpc-darwin/otp2ocp
+ bin/powerpc-darwin/outocp
+ bin/powerpc-darwin/ovf2ovp
+ bin/powerpc-darwin/ovp2ovf
+
+name bin-omegaware.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for powerpc-linux
+binfiles arch=powerpc-linux size=146
+ bin/powerpc-linux/odvicopy
+ bin/powerpc-linux/odvips
+ bin/powerpc-linux/odvitype
+ bin/powerpc-linux/ofm2opl
+ bin/powerpc-linux/omfonts
+ bin/powerpc-linux/opl2ofm
+ bin/powerpc-linux/otangle
+ bin/powerpc-linux/otp2ocp
+ bin/powerpc-linux/outocp
+ bin/powerpc-linux/ovf2ovp
+ bin/powerpc-linux/ovp2ovf
+
+name bin-omegaware.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for sparc-linux
binfiles arch=sparc-linux size=142
bin/sparc-linux/odvicopy
bin/sparc-linux/odvips
@@ -12234,6 +16441,11 @@ binfiles arch=sparc-linux size=142
bin/sparc-linux/outocp
bin/sparc-linux/ovf2ovp
bin/sparc-linux/ovp2ovf
+
+name bin-omegaware.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for sparc-solaris
binfiles arch=sparc-solaris size=265
bin/sparc-solaris/odvicopy
bin/sparc-solaris/odvips
@@ -12246,18 +16458,11 @@ binfiles arch=sparc-solaris size=265
bin/sparc-solaris/outocp
bin/sparc-solaris/ovf2ovp
bin/sparc-solaris/ovp2ovf
-binfiles arch=i386-freebsd size=134
- bin/i386-freebsd/odvicopy
- bin/i386-freebsd/odvips
- bin/i386-freebsd/odvitype
- bin/i386-freebsd/ofm2opl
- bin/i386-freebsd/omfonts
- bin/i386-freebsd/opl2ofm
- bin/i386-freebsd/otangle
- bin/i386-freebsd/otp2ocp
- bin/i386-freebsd/outocp
- bin/i386-freebsd/ovf2ovp
- bin/i386-freebsd/ovp2ovf
+
+name bin-omegaware.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for win32
binfiles arch=win32 size=167
bin/win32/odvicopy.exe
bin/win32/odvips.exe
@@ -12270,42 +16475,11 @@ binfiles arch=win32 size=167
bin/win32/outocp.exe
bin/win32/ovf2ovp.exe
bin/win32/ovp2ovf.exe
-binfiles arch=i386-darwin size=158
- bin/i386-darwin/odvicopy
- bin/i386-darwin/odvips
- bin/i386-darwin/odvitype
- bin/i386-darwin/ofm2opl
- bin/i386-darwin/omfonts
- bin/i386-darwin/opl2ofm
- bin/i386-darwin/otangle
- bin/i386-darwin/otp2ocp
- bin/i386-darwin/outocp
- bin/i386-darwin/ovf2ovp
- bin/i386-darwin/ovp2ovf
-binfiles arch=powerpc-linux size=146
- bin/powerpc-linux/odvicopy
- bin/powerpc-linux/odvips
- bin/powerpc-linux/odvitype
- bin/powerpc-linux/ofm2opl
- bin/powerpc-linux/omfonts
- bin/powerpc-linux/opl2ofm
- bin/powerpc-linux/otangle
- bin/powerpc-linux/otp2ocp
- bin/powerpc-linux/outocp
- bin/powerpc-linux/ovf2ovp
- bin/powerpc-linux/ovp2ovf
-binfiles arch=powerpc-aix size=163
- bin/powerpc-aix/odvicopy
- bin/powerpc-aix/odvips
- bin/powerpc-aix/odvitype
- bin/powerpc-aix/ofm2opl
- bin/powerpc-aix/omfonts
- bin/powerpc-aix/opl2ofm
- bin/powerpc-aix/otangle
- bin/powerpc-aix/otp2ocp
- bin/powerpc-aix/outocp
- bin/powerpc-aix/ovf2ovp
- bin/powerpc-aix/ovp2ovf
+
+name bin-omegaware.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-omegaware for x86_64-linux
binfiles arch=x86_64-linux size=151
bin/x86_64-linux/odvicopy
bin/x86_64-linux/odvips
@@ -12318,60 +16492,125 @@ binfiles arch=x86_64-linux size=151
bin/x86_64-linux/outocp
bin/x86_64-linux/ovf2ovp
bin/x86_64-linux/ovp2ovf
-binfiles arch=powerpc-darwin size=153
- bin/powerpc-darwin/odvicopy
- bin/powerpc-darwin/odvips
- bin/powerpc-darwin/odvitype
- bin/powerpc-darwin/ofm2opl
- bin/powerpc-darwin/omfonts
- bin/powerpc-darwin/opl2ofm
- bin/powerpc-darwin/otangle
- bin/powerpc-darwin/otp2ocp
- bin/powerpc-darwin/outocp
- bin/powerpc-darwin/ovf2ovp
- bin/powerpc-darwin/ovp2ovf
name bin-patgen
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-patgen.ARCH
docfiles size=2
texmf/doc/man/man1/patgen.1
+
+name bin-patgen.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for alpha-linux
+binfiles arch=alpha-linux size=14
+ bin/alpha-linux/patgen
+
+name bin-patgen.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for hppa-hpux
+binfiles arch=hppa-hpux size=16
+ bin/hppa-hpux/patgen
+
+name bin-patgen.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for i386-darwin
+binfiles arch=i386-darwin size=12
+ bin/i386-darwin/patgen
+
+name bin-patgen.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for i386-freebsd
+binfiles arch=i386-freebsd size=9
+ bin/i386-freebsd/patgen
+
+name bin-patgen.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for i386-linux
+binfiles arch=i386-linux size=8
+ bin/i386-linux/patgen
+
+name bin-patgen.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for i386-openbsd
binfiles arch=i386-openbsd size=9
bin/i386-openbsd/patgen
+
+name bin-patgen.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for i386-solaris
binfiles arch=i386-solaris size=10
bin/i386-solaris/patgen
-binfiles arch=i386-linux size=8
- bin/i386-linux/patgen
-binfiles arch=hppa-hpux size=16
- bin/hppa-hpux/patgen
+
+name bin-patgen.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for mips-irix
binfiles arch=mips-irix size=20
bin/mips-irix/patgen
-binfiles arch=alpha-linux size=14
- bin/alpha-linux/patgen
+
+name bin-patgen.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for powerpc-aix
+binfiles arch=powerpc-aix size=12
+ bin/powerpc-aix/patgen
+
+name bin-patgen.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for powerpc-darwin
+binfiles arch=powerpc-darwin size=12
+ bin/powerpc-darwin/patgen
+
+name bin-patgen.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for powerpc-linux
+binfiles arch=powerpc-linux size=10
+ bin/powerpc-linux/patgen
+
+name bin-patgen.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for sparc-linux
binfiles arch=sparc-linux size=9
bin/sparc-linux/patgen
+
+name bin-patgen.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for sparc-solaris
binfiles arch=sparc-solaris size=20
bin/sparc-solaris/patgen
-binfiles arch=i386-freebsd size=9
- bin/i386-freebsd/patgen
+
+name bin-patgen.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for win32
binfiles arch=win32 size=5
bin/win32/patgen.exe
-binfiles arch=i386-darwin size=12
- bin/i386-darwin/patgen
-binfiles arch=powerpc-linux size=10
- bin/powerpc-linux/patgen
-binfiles arch=powerpc-aix size=12
- bin/powerpc-aix/patgen
+
+name bin-patgen.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-patgen for x86_64-linux
binfiles arch=x86_64-linux size=9
bin/x86_64-linux/patgen
-binfiles arch=powerpc-darwin size=12
- bin/powerpc-darwin/patgen
name bin-pdftex
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-pdftex.ARCH
execute BuildFormat pdftex
docfiles size=2132
texmf/doc/man/man1/pdfetex.1
@@ -12434,85 +16673,176 @@ runfiles size=437
texmf/tex/generic/config/pdftexconfig.tex
texmf/tex/generic/pdftex/glyphtounicode.tex
texmf/web2c/pdftex.pool
+
+name bin-pdftex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for alpha-linux
+execute BuildFormat pdftex
+binfiles arch=alpha-linux size=454
+ bin/alpha-linux/pdfetex
+ bin/alpha-linux/pdflatex
+ bin/alpha-linux/pdftex
+ bin/alpha-linux/simpdftex
+
+name bin-pdftex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for hppa-hpux
+execute BuildFormat pdftex
+binfiles arch=hppa-hpux size=391
+ bin/hppa-hpux/pdfetex
+ bin/hppa-hpux/pdflatex
+ bin/hppa-hpux/pdftex
+ bin/hppa-hpux/simpdftex
+
+name bin-pdftex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for i386-darwin
+execute BuildFormat pdftex
+binfiles arch=i386-darwin size=320
+ bin/i386-darwin/pdfetex
+ bin/i386-darwin/pdflatex
+ bin/i386-darwin/pdftex
+ bin/i386-darwin/simpdftex
+
+name bin-pdftex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for i386-freebsd
+execute BuildFormat pdftex
+binfiles arch=i386-freebsd size=301
+ bin/i386-freebsd/pdfetex
+ bin/i386-freebsd/pdflatex
+ bin/i386-freebsd/pdftex
+ bin/i386-freebsd/simpdftex
+
+name bin-pdftex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for i386-linux
+execute BuildFormat pdftex
+binfiles arch=i386-linux size=295
+ bin/i386-linux/pdfetex
+ bin/i386-linux/pdflatex
+ bin/i386-linux/pdftex
+ bin/i386-linux/simpdftex
+
+name bin-pdftex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for i386-openbsd
+execute BuildFormat pdftex
binfiles arch=i386-openbsd size=295
bin/i386-openbsd/pdfetex
bin/i386-openbsd/pdflatex
bin/i386-openbsd/pdftex
bin/i386-openbsd/simpdftex
+
+name bin-pdftex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for i386-solaris
+execute BuildFormat pdftex
binfiles arch=i386-solaris size=359
bin/i386-solaris/pdfetex
bin/i386-solaris/pdflatex
bin/i386-solaris/pdftex
bin/i386-solaris/simpdftex
-binfiles arch=i386-linux size=295
- bin/i386-linux/pdfetex
- bin/i386-linux/pdflatex
- bin/i386-linux/pdftex
- bin/i386-linux/simpdftex
-binfiles arch=hppa-hpux size=391
- bin/hppa-hpux/pdfetex
- bin/hppa-hpux/pdflatex
- bin/hppa-hpux/pdftex
- bin/hppa-hpux/simpdftex
+
+name bin-pdftex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for mips-irix
+execute BuildFormat pdftex
binfiles arch=mips-irix size=487
bin/mips-irix/pdfetex
bin/mips-irix/pdflatex
bin/mips-irix/pdftex
bin/mips-irix/simpdftex
-binfiles arch=alpha-linux size=454
- bin/alpha-linux/pdfetex
- bin/alpha-linux/pdflatex
- bin/alpha-linux/pdftex
- bin/alpha-linux/simpdftex
+
+name bin-pdftex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for powerpc-aix
+execute BuildFormat pdftex
+binfiles arch=powerpc-aix size=387
+ bin/powerpc-aix/pdfetex
+ bin/powerpc-aix/pdflatex
+ bin/powerpc-aix/pdftex
+ bin/powerpc-aix/simpdftex
+
+name bin-pdftex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for powerpc-darwin
+execute BuildFormat pdftex
+binfiles arch=powerpc-darwin size=309
+ bin/powerpc-darwin/pdfetex
+ bin/powerpc-darwin/pdflatex
+ bin/powerpc-darwin/pdftex
+ bin/powerpc-darwin/simpdftex
+
+name bin-pdftex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for powerpc-linux
+execute BuildFormat pdftex
+binfiles arch=powerpc-linux size=347
+ bin/powerpc-linux/pdfetex
+ bin/powerpc-linux/pdflatex
+ bin/powerpc-linux/pdftex
+ bin/powerpc-linux/simpdftex
+
+name bin-pdftex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for sparc-linux
+execute BuildFormat pdftex
binfiles arch=sparc-linux size=331
bin/sparc-linux/pdfetex
bin/sparc-linux/pdflatex
bin/sparc-linux/pdftex
bin/sparc-linux/simpdftex
+
+name bin-pdftex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for sparc-solaris
+execute BuildFormat pdftex
binfiles arch=sparc-solaris size=428
bin/sparc-solaris/pdfetex
bin/sparc-solaris/pdflatex
bin/sparc-solaris/pdftex
bin/sparc-solaris/simpdftex
-binfiles arch=i386-freebsd size=301
- bin/i386-freebsd/pdfetex
- bin/i386-freebsd/pdflatex
- bin/i386-freebsd/pdftex
- bin/i386-freebsd/simpdftex
+
+name bin-pdftex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for win32
+execute BuildFormat pdftex
binfiles arch=win32 size=266
bin/win32/pdfetex.exe
bin/win32/pdflatex.exe
bin/win32/pdftex.dll
bin/win32/pdftex.exe
-binfiles arch=i386-darwin size=320
- bin/i386-darwin/pdfetex
- bin/i386-darwin/pdflatex
- bin/i386-darwin/pdftex
- bin/i386-darwin/simpdftex
-binfiles arch=powerpc-linux size=347
- bin/powerpc-linux/pdfetex
- bin/powerpc-linux/pdflatex
- bin/powerpc-linux/pdftex
- bin/powerpc-linux/simpdftex
-binfiles arch=powerpc-aix size=387
- bin/powerpc-aix/pdfetex
- bin/powerpc-aix/pdflatex
- bin/powerpc-aix/pdftex
- bin/powerpc-aix/simpdftex
+
+name bin-pdftex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftex for x86_64-linux
+execute BuildFormat pdftex
binfiles arch=x86_64-linux size=353
bin/x86_64-linux/pdfetex
bin/x86_64-linux/pdflatex
bin/x86_64-linux/pdftex
bin/x86_64-linux/simpdftex
-binfiles arch=powerpc-darwin size=309
- bin/powerpc-darwin/pdfetex
- bin/powerpc-darwin/pdflatex
- bin/powerpc-darwin/pdftex
- bin/powerpc-darwin/simpdftex
name bin-pdftools
category TLCore
revision 5403
+depend bin-pdftools.ARCH
docfiles size=5
texmf/doc/man/man1/e2pall.1
texmf/doc/man/man1/epstopdf.1
@@ -12522,6 +16852,69 @@ runfiles size=8
texmf/scripts/pdfcrop/pdfcrop.pl
texmf/scripts/tetex/e2pall.pl
texmf/scripts/tetex/epstopdf.pl
+
+name bin-pdftools.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for alpha-linux
+binfiles arch=alpha-linux size=166
+ bin/alpha-linux/e2pall
+ bin/alpha-linux/epstopdf
+ bin/alpha-linux/pdfclose
+ bin/alpha-linux/pdfcrop
+ bin/alpha-linux/pdfopen
+ bin/alpha-linux/pdftosrc
+
+name bin-pdftools.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for hppa-hpux
+binfiles arch=hppa-hpux size=165
+ bin/hppa-hpux/e2pall
+ bin/hppa-hpux/epstopdf
+ bin/hppa-hpux/pdfclose
+ bin/hppa-hpux/pdfcrop
+ bin/hppa-hpux/pdfopen
+ bin/hppa-hpux/pdftosrc
+
+name bin-pdftools.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for i386-darwin
+binfiles arch=i386-darwin size=114
+ bin/i386-darwin/e2pall
+ bin/i386-darwin/epstopdf
+ bin/i386-darwin/pdfcrop
+ bin/i386-darwin/pdftosrc
+
+name bin-pdftools.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for i386-freebsd
+binfiles arch=i386-freebsd size=116
+ bin/i386-freebsd/e2pall
+ bin/i386-freebsd/epstopdf
+ bin/i386-freebsd/pdfclose
+ bin/i386-freebsd/pdfcrop
+ bin/i386-freebsd/pdfopen
+ bin/i386-freebsd/pdftosrc
+
+name bin-pdftools.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for i386-linux
+binfiles arch=i386-linux size=113
+ bin/i386-linux/e2pall
+ bin/i386-linux/epstopdf
+ bin/i386-linux/pdfclose
+ bin/i386-linux/pdfcrop
+ bin/i386-linux/pdfopen
+ bin/i386-linux/pdftosrc
+
+name bin-pdftools.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for i386-openbsd
binfiles arch=i386-openbsd size=114
bin/i386-openbsd/e2pall
bin/i386-openbsd/epstopdf
@@ -12529,6 +16922,11 @@ binfiles arch=i386-openbsd size=114
bin/i386-openbsd/pdfcrop
bin/i386-openbsd/pdfopen
bin/i386-openbsd/pdftosrc
+
+name bin-pdftools.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for i386-solaris
binfiles arch=i386-solaris size=152
bin/i386-solaris/e2pall
bin/i386-solaris/epstopdf
@@ -12536,20 +16934,11 @@ binfiles arch=i386-solaris size=152
bin/i386-solaris/pdfcrop
bin/i386-solaris/pdfopen
bin/i386-solaris/pdftosrc
-binfiles arch=i386-linux size=113
- bin/i386-linux/e2pall
- bin/i386-linux/epstopdf
- bin/i386-linux/pdfclose
- bin/i386-linux/pdfcrop
- bin/i386-linux/pdfopen
- bin/i386-linux/pdftosrc
-binfiles arch=hppa-hpux size=165
- bin/hppa-hpux/e2pall
- bin/hppa-hpux/epstopdf
- bin/hppa-hpux/pdfclose
- bin/hppa-hpux/pdfcrop
- bin/hppa-hpux/pdfopen
- bin/hppa-hpux/pdftosrc
+
+name bin-pdftools.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for mips-irix
binfiles arch=mips-irix size=161
bin/mips-irix/e2pall
bin/mips-irix/epstopdf
@@ -12557,13 +16946,45 @@ binfiles arch=mips-irix size=161
bin/mips-irix/pdfcrop
bin/mips-irix/pdfopen
bin/mips-irix/pdftosrc
-binfiles arch=alpha-linux size=166
- bin/alpha-linux/e2pall
- bin/alpha-linux/epstopdf
- bin/alpha-linux/pdfclose
- bin/alpha-linux/pdfcrop
- bin/alpha-linux/pdfopen
- bin/alpha-linux/pdftosrc
+
+name bin-pdftools.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for powerpc-aix
+binfiles arch=powerpc-aix size=136
+ bin/powerpc-aix/e2pall
+ bin/powerpc-aix/epstopdf
+ bin/powerpc-aix/pdfclose
+ bin/powerpc-aix/pdfcrop
+ bin/powerpc-aix/pdfopen
+ bin/powerpc-aix/pdftosrc
+
+name bin-pdftools.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for powerpc-darwin
+binfiles arch=powerpc-darwin size=104
+ bin/powerpc-darwin/e2pall
+ bin/powerpc-darwin/epstopdf
+ bin/powerpc-darwin/pdfcrop
+ bin/powerpc-darwin/pdftosrc
+
+name bin-pdftools.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for powerpc-linux
+binfiles arch=powerpc-linux size=137
+ bin/powerpc-linux/e2pall
+ bin/powerpc-linux/epstopdf
+ bin/powerpc-linux/pdfclose
+ bin/powerpc-linux/pdfcrop
+ bin/powerpc-linux/pdfopen
+ bin/powerpc-linux/pdftosrc
+
+name bin-pdftools.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for sparc-linux
binfiles arch=sparc-linux size=125
bin/sparc-linux/e2pall
bin/sparc-linux/epstopdf
@@ -12571,6 +16992,11 @@ binfiles arch=sparc-linux size=125
bin/sparc-linux/pdfcrop
bin/sparc-linux/pdfopen
bin/sparc-linux/pdftosrc
+
+name bin-pdftools.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for sparc-solaris
binfiles arch=sparc-solaris size=137
bin/sparc-solaris/e2pall
bin/sparc-solaris/epstopdf
@@ -12578,13 +17004,11 @@ binfiles arch=sparc-solaris size=137
bin/sparc-solaris/pdfcrop
bin/sparc-solaris/pdfopen
bin/sparc-solaris/pdftosrc
-binfiles arch=i386-freebsd size=116
- bin/i386-freebsd/e2pall
- bin/i386-freebsd/epstopdf
- bin/i386-freebsd/pdfclose
- bin/i386-freebsd/pdfcrop
- bin/i386-freebsd/pdfopen
- bin/i386-freebsd/pdftosrc
+
+name bin-pdftools.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for win32
binfiles arch=win32 size=118
bin/win32/e2pall.exe
bin/win32/epstopdf.exe
@@ -12594,25 +17018,11 @@ binfiles arch=win32 size=118
bin/win32/pdfdde.exe
bin/win32/pdfopen.exe
bin/win32/pdftosrc.exe
-binfiles arch=i386-darwin size=114
- bin/i386-darwin/e2pall
- bin/i386-darwin/epstopdf
- bin/i386-darwin/pdfcrop
- bin/i386-darwin/pdftosrc
-binfiles arch=powerpc-linux size=137
- bin/powerpc-linux/e2pall
- bin/powerpc-linux/epstopdf
- bin/powerpc-linux/pdfclose
- bin/powerpc-linux/pdfcrop
- bin/powerpc-linux/pdfopen
- bin/powerpc-linux/pdftosrc
-binfiles arch=powerpc-aix size=136
- bin/powerpc-aix/e2pall
- bin/powerpc-aix/epstopdf
- bin/powerpc-aix/pdfclose
- bin/powerpc-aix/pdfcrop
- bin/powerpc-aix/pdfopen
- bin/powerpc-aix/pdftosrc
+
+name bin-pdftools.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pdftools for x86_64-linux
binfiles arch=x86_64-linux size=143
bin/x86_64-linux/e2pall
bin/x86_64-linux/epstopdf
@@ -12620,15 +17030,11 @@ binfiles arch=x86_64-linux size=143
bin/x86_64-linux/pdfcrop
bin/x86_64-linux/pdfopen
bin/x86_64-linux/pdftosrc
-binfiles arch=powerpc-darwin size=104
- bin/powerpc-darwin/e2pall
- bin/powerpc-darwin/epstopdf
- bin/powerpc-darwin/pdfcrop
- bin/powerpc-darwin/pdftosrc
name bin-perl
category TLCore
revision 5403
+depend bin-perl.ARCH
runfiles size=1579
perltl/lib/AnyDBM_File.pm
perltl/lib/AutoLoader.pm
@@ -13354,347 +17760,985 @@ runfiles size=1579
perltl/site/lib/auto/Tk/updateWidgets.al
perltl/site/lib/auto/Win32/API/API.dll
perltl/site/lib/auto/XML/Parser/Expat/Expat.dll
+
+name bin-perl.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for alpha-linux
+
+name bin-perl.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for hppa-hpux
+
+name bin-perl.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for i386-darwin
+
+name bin-perl.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for i386-freebsd
+
+name bin-perl.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for i386-linux
+
+name bin-perl.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for i386-openbsd
+
+name bin-perl.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for i386-solaris
+
+name bin-perl.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for mips-irix
+
+name bin-perl.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for powerpc-aix
+
+name bin-perl.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for powerpc-darwin
+
+name bin-perl.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for powerpc-linux
+
+name bin-perl.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for sparc-linux
+
+name bin-perl.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for sparc-solaris
+
+name bin-perl.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for win32
binfiles arch=win32 size=399
bin/win32/perl.exe
bin/win32/perl58.dll
bin/win32/tk83.dll
+name bin-perl.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-perl for x86_64-linux
+
name bin-perltex
category TLCore
revision 5402
+depend bin-perltex.ARCH
+
+name bin-perltex.alpha-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/perltex
+
+name bin-perltex.hppa-hpux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/perltex
+
+name bin-perltex.i386-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/perltex
+
+name bin-perltex.i386-freebsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/perltex
+
+name bin-perltex.i386-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for i386-linux
+binfiles arch=i386-linux size=4
+ bin/i386-linux/perltex
+
+name bin-perltex.i386-openbsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/perltex
+
+name bin-perltex.i386-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/perltex
-binfiles arch=i386-linux size=4
- bin/i386-linux/perltex
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/perltex
+
+name bin-perltex.mips-irix
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/perltex
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/perltex
+
+name bin-perltex.powerpc-aix
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/perltex
+
+name bin-perltex.powerpc-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/perltex
+
+name bin-perltex.powerpc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/perltex
+
+name bin-perltex.sparc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/perltex
+
+name bin-perltex.sparc-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/perltex
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/perltex
+
+name bin-perltex.win32
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for win32
binfiles arch=win32 size=3
bin/win32/perltex.bat
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/perltex
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/perltex
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/perltex
+
+name bin-perltex.x86_64-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-perltex for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/perltex
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/perltex
name bin-physe
category TLCore
revision 5403
depend bin-tex
+depend bin-physe.ARCH
execute BuildFormat physe
runfiles size=1
texmf/fmtutil/format.physe.cnf
+
+name bin-physe.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for alpha-linux
+execute BuildFormat physe
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/physe
+
+name bin-physe.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for hppa-hpux
+execute BuildFormat physe
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/physe
+
+name bin-physe.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for i386-darwin
+execute BuildFormat physe
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/physe
+
+name bin-physe.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for i386-freebsd
+execute BuildFormat physe
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/physe
+
+name bin-physe.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for i386-linux
+execute BuildFormat physe
+binfiles arch=i386-linux size=1
+ bin/i386-linux/physe
+
+name bin-physe.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for i386-openbsd
+execute BuildFormat physe
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/physe
+
+name bin-physe.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for i386-solaris
+execute BuildFormat physe
binfiles arch=i386-solaris size=1
bin/i386-solaris/physe
-binfiles arch=i386-linux size=1
- bin/i386-linux/physe
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/physe
+
+name bin-physe.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for mips-irix
+execute BuildFormat physe
binfiles arch=mips-irix size=1
bin/mips-irix/physe
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/physe
+
+name bin-physe.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for powerpc-aix
+execute BuildFormat physe
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/physe
+
+name bin-physe.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for powerpc-darwin
+execute BuildFormat physe
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/physe
+
+name bin-physe.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for powerpc-linux
+execute BuildFormat physe
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/physe
+
+name bin-physe.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for sparc-linux
+execute BuildFormat physe
binfiles arch=sparc-linux size=1
bin/sparc-linux/physe
+
+name bin-physe.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for sparc-solaris
+execute BuildFormat physe
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/physe
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/physe
+
+name bin-physe.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for win32
+execute BuildFormat physe
binfiles arch=win32 size=1
bin/win32/physe.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/physe
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/physe
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/physe
+
+name bin-physe.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-physe for x86_64-linux
+execute BuildFormat physe
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/physe
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/physe
name bin-phyzzx
category TLCore
revision 5403
depend bin-tex
+depend bin-phyzzx.ARCH
execute BuildFormat phyzzx
runfiles size=1
texmf/fmtutil/format.phyzzx.cnf
+
+name bin-phyzzx.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for alpha-linux
+execute BuildFormat phyzzx
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/phyzzx
+
+name bin-phyzzx.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for hppa-hpux
+execute BuildFormat phyzzx
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/phyzzx
+
+name bin-phyzzx.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for i386-darwin
+execute BuildFormat phyzzx
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/phyzzx
+
+name bin-phyzzx.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for i386-freebsd
+execute BuildFormat phyzzx
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/phyzzx
+
+name bin-phyzzx.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for i386-linux
+execute BuildFormat phyzzx
+binfiles arch=i386-linux size=1
+ bin/i386-linux/phyzzx
+
+name bin-phyzzx.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for i386-openbsd
+execute BuildFormat phyzzx
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/phyzzx
+
+name bin-phyzzx.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for i386-solaris
+execute BuildFormat phyzzx
binfiles arch=i386-solaris size=1
bin/i386-solaris/phyzzx
-binfiles arch=i386-linux size=1
- bin/i386-linux/phyzzx
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/phyzzx
+
+name bin-phyzzx.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for mips-irix
+execute BuildFormat phyzzx
binfiles arch=mips-irix size=1
bin/mips-irix/phyzzx
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/phyzzx
+
+name bin-phyzzx.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for powerpc-aix
+execute BuildFormat phyzzx
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/phyzzx
+
+name bin-phyzzx.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for powerpc-darwin
+execute BuildFormat phyzzx
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/phyzzx
+
+name bin-phyzzx.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for powerpc-linux
+execute BuildFormat phyzzx
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/phyzzx
+
+name bin-phyzzx.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for sparc-linux
+execute BuildFormat phyzzx
binfiles arch=sparc-linux size=1
bin/sparc-linux/phyzzx
+
+name bin-phyzzx.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for sparc-solaris
+execute BuildFormat phyzzx
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/phyzzx
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/phyzzx
+
+name bin-phyzzx.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for win32
+execute BuildFormat phyzzx
binfiles arch=win32 size=1
bin/win32/phyzzx.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/phyzzx
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/phyzzx
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/phyzzx
+
+name bin-phyzzx.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-phyzzx for x86_64-linux
+execute BuildFormat phyzzx
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/phyzzx
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/phyzzx
name bin-pngtools
category TLCore
revision 5403
+depend bin-pngtools.ARCH
+
+name bin-pngtools.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for alpha-linux
+
+name bin-pngtools.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for hppa-hpux
+
+name bin-pngtools.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for i386-darwin
+
+name bin-pngtools.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for i386-freebsd
+
+name bin-pngtools.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for i386-linux
+
+name bin-pngtools.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for i386-openbsd
+
+name bin-pngtools.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for i386-solaris
+
+name bin-pngtools.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for mips-irix
+
+name bin-pngtools.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for powerpc-aix
+
+name bin-pngtools.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for powerpc-darwin
+
+name bin-pngtools.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for powerpc-linux
+
+name bin-pngtools.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for sparc-linux
+
+name bin-pngtools.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for sparc-solaris
+
+name bin-pngtools.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for win32
binfiles arch=win32 size=62
bin/win32/bmp2png.exe
bin/win32/png22pnm.exe
bin/win32/png2bmp.exe
+name bin-pngtools.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pngtools for x86_64-linux
+
name bin-ppower4
category TLCore
revision 5403
+depend bin-ppower4.ARCH
+
+name bin-ppower4.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for alpha-linux
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/pdfthumb
+ bin/alpha-linux/ppower4
+
+name bin-ppower4.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for hppa-hpux
+binfiles arch=hppa-hpux size=2
+ bin/hppa-hpux/pdfthumb
+ bin/hppa-hpux/ppower4
+
+name bin-ppower4.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for i386-darwin
+binfiles arch=i386-darwin size=2
+ bin/i386-darwin/pdfthumb
+ bin/i386-darwin/ppower4
+
+name bin-ppower4.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for i386-freebsd
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/pdfthumb
+ bin/i386-freebsd/ppower4
+
+name bin-ppower4.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for i386-linux
+binfiles arch=i386-linux size=2
+ bin/i386-linux/pdfthumb
+ bin/i386-linux/ppower4
+
+name bin-ppower4.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for i386-openbsd
binfiles arch=i386-openbsd size=2
bin/i386-openbsd/pdfthumb
bin/i386-openbsd/ppower4
+
+name bin-ppower4.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for i386-solaris
binfiles arch=i386-solaris size=2
bin/i386-solaris/pdfthumb
bin/i386-solaris/ppower4
-binfiles arch=i386-linux size=2
- bin/i386-linux/pdfthumb
- bin/i386-linux/ppower4
-binfiles arch=hppa-hpux size=2
- bin/hppa-hpux/pdfthumb
- bin/hppa-hpux/ppower4
+
+name bin-ppower4.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for mips-irix
binfiles arch=mips-irix size=2
bin/mips-irix/pdfthumb
bin/mips-irix/ppower4
-binfiles arch=alpha-linux size=2
- bin/alpha-linux/pdfthumb
- bin/alpha-linux/ppower4
+
+name bin-ppower4.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for powerpc-aix
+binfiles arch=powerpc-aix size=2
+ bin/powerpc-aix/pdfthumb
+ bin/powerpc-aix/ppower4
+
+name bin-ppower4.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for powerpc-darwin
+binfiles arch=powerpc-darwin size=2
+ bin/powerpc-darwin/pdfthumb
+ bin/powerpc-darwin/ppower4
+
+name bin-ppower4.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for powerpc-linux
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/pdfthumb
+ bin/powerpc-linux/ppower4
+
+name bin-ppower4.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for sparc-linux
binfiles arch=sparc-linux size=2
bin/sparc-linux/pdfthumb
bin/sparc-linux/ppower4
+
+name bin-ppower4.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for sparc-solaris
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/pdfthumb
bin/sparc-solaris/ppower4
-binfiles arch=i386-freebsd size=2
- bin/i386-freebsd/pdfthumb
- bin/i386-freebsd/ppower4
+
+name bin-ppower4.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for win32
binfiles arch=win32 size=4
bin/win32/pdfthumb.exe
bin/win32/ppower4.exe
-binfiles arch=i386-darwin size=2
- bin/i386-darwin/pdfthumb
- bin/i386-darwin/ppower4
-binfiles arch=powerpc-linux size=2
- bin/powerpc-linux/pdfthumb
- bin/powerpc-linux/ppower4
-binfiles arch=powerpc-aix size=2
- bin/powerpc-aix/pdfthumb
- bin/powerpc-aix/ppower4
+
+name bin-ppower4.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ppower4 for x86_64-linux
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/pdfthumb
bin/x86_64-linux/ppower4
-binfiles arch=powerpc-darwin size=2
- bin/powerpc-darwin/pdfthumb
- bin/powerpc-darwin/ppower4
name bin-ps2pkm
category TLCore
revision 5403
+depend bin-ps2pkm.ARCH
runfiles size=5
texmf/doc/man/man1/mag.1
texmf/doc/man/man1/pfb2pfa.1
texmf/doc/man/man1/pk2bm.1
texmf/doc/man/man1/ps2pk.1
+
+name bin-ps2pkm.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for alpha-linux
+binfiles arch=alpha-linux size=70
+ bin/alpha-linux/mag
+ bin/alpha-linux/pfb2pfa
+ bin/alpha-linux/pk2bm
+ bin/alpha-linux/ps2pk
+
+name bin-ps2pkm.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for hppa-hpux
+binfiles arch=hppa-hpux size=77
+ bin/hppa-hpux/mag
+ bin/hppa-hpux/pfb2pfa
+ bin/hppa-hpux/pk2bm
+ bin/hppa-hpux/ps2pk
+
+name bin-ps2pkm.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for i386-darwin
+binfiles arch=i386-darwin size=58
+ bin/i386-darwin/mag
+ bin/i386-darwin/pfb2pfa
+ bin/i386-darwin/pk2bm
+ bin/i386-darwin/ps2pk
+
+name bin-ps2pkm.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for i386-freebsd
+binfiles arch=i386-freebsd size=45
+ bin/i386-freebsd/mag
+ bin/i386-freebsd/pfb2pfa
+ bin/i386-freebsd/pk2bm
+ bin/i386-freebsd/ps2pk
+
+name bin-ps2pkm.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for i386-linux
+binfiles arch=i386-linux size=45
+ bin/i386-linux/mag
+ bin/i386-linux/pfb2pfa
+ bin/i386-linux/pk2bm
+ bin/i386-linux/ps2pk
+
+name bin-ps2pkm.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for i386-openbsd
binfiles arch=i386-openbsd size=47
bin/i386-openbsd/mag
bin/i386-openbsd/pfb2pfa
bin/i386-openbsd/pk2bm
bin/i386-openbsd/ps2pk
+
+name bin-ps2pkm.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for i386-solaris
binfiles arch=i386-solaris size=48
bin/i386-solaris/mag
bin/i386-solaris/pfb2pfa
bin/i386-solaris/pk2bm
bin/i386-solaris/ps2pk
-binfiles arch=i386-linux size=45
- bin/i386-linux/mag
- bin/i386-linux/pfb2pfa
- bin/i386-linux/pk2bm
- bin/i386-linux/ps2pk
-binfiles arch=hppa-hpux size=77
- bin/hppa-hpux/mag
- bin/hppa-hpux/pfb2pfa
- bin/hppa-hpux/pk2bm
- bin/hppa-hpux/ps2pk
+
+name bin-ps2pkm.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for mips-irix
binfiles arch=mips-irix size=84
bin/mips-irix/mag
bin/mips-irix/pfb2pfa
bin/mips-irix/pk2bm
bin/mips-irix/ps2pk
-binfiles arch=alpha-linux size=70
- bin/alpha-linux/mag
- bin/alpha-linux/pfb2pfa
- bin/alpha-linux/pk2bm
- bin/alpha-linux/ps2pk
+
+name bin-ps2pkm.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for powerpc-aix
+binfiles arch=powerpc-aix size=61
+ bin/powerpc-aix/mag
+ bin/powerpc-aix/pfb2pfa
+ bin/powerpc-aix/pk2bm
+ bin/powerpc-aix/ps2pk
+
+name bin-ps2pkm.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for powerpc-darwin
+binfiles arch=powerpc-darwin size=58
+ bin/powerpc-darwin/mag
+ bin/powerpc-darwin/pfb2pfa
+ bin/powerpc-darwin/pk2bm
+ bin/powerpc-darwin/ps2pk
+
+name bin-ps2pkm.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for powerpc-linux
+binfiles arch=powerpc-linux size=52
+ bin/powerpc-linux/mag
+ bin/powerpc-linux/pfb2pfa
+ bin/powerpc-linux/pk2bm
+ bin/powerpc-linux/ps2pk
+
+name bin-ps2pkm.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for sparc-linux
binfiles arch=sparc-linux size=50
bin/sparc-linux/mag
bin/sparc-linux/pfb2pfa
bin/sparc-linux/pk2bm
bin/sparc-linux/ps2pk
+
+name bin-ps2pkm.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for sparc-solaris
binfiles arch=sparc-solaris size=83
bin/sparc-solaris/mag
bin/sparc-solaris/pfb2pfa
bin/sparc-solaris/pk2bm
bin/sparc-solaris/ps2pk
-binfiles arch=i386-freebsd size=45
- bin/i386-freebsd/mag
- bin/i386-freebsd/pfb2pfa
- bin/i386-freebsd/pk2bm
- bin/i386-freebsd/ps2pk
+
+name bin-ps2pkm.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for win32
binfiles arch=win32 size=40
bin/win32/mag.exe
bin/win32/pfb2pfa.exe
bin/win32/pk2bm.exe
bin/win32/ps2pk.exe
-binfiles arch=i386-darwin size=58
- bin/i386-darwin/mag
- bin/i386-darwin/pfb2pfa
- bin/i386-darwin/pk2bm
- bin/i386-darwin/ps2pk
-binfiles arch=powerpc-linux size=52
- bin/powerpc-linux/mag
- bin/powerpc-linux/pfb2pfa
- bin/powerpc-linux/pk2bm
- bin/powerpc-linux/ps2pk
-binfiles arch=powerpc-aix size=61
- bin/powerpc-aix/mag
- bin/powerpc-aix/pfb2pfa
- bin/powerpc-aix/pk2bm
- bin/powerpc-aix/ps2pk
+
+name bin-ps2pkm.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ps2pkm for x86_64-linux
binfiles arch=x86_64-linux size=56
bin/x86_64-linux/mag
bin/x86_64-linux/pfb2pfa
bin/x86_64-linux/pk2bm
bin/x86_64-linux/ps2pk
-binfiles arch=powerpc-darwin size=58
- bin/powerpc-darwin/mag
- bin/powerpc-darwin/pfb2pfa
- bin/powerpc-darwin/pk2bm
- bin/powerpc-darwin/ps2pk
name bin-pstools
category TLCore
revision 5403
+depend bin-pstools.ARCH
docfiles size=2
texmf/doc/man/man1/ps2frag.1
texmf/doc/man/man1/pslatex.1
runfiles size=9
texmf/scripts/ps2eps/ps2eps.pl
+
+name bin-pstools.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for alpha-linux
+binfiles arch=alpha-linux size=14
+ bin/alpha-linux/bbox
+ bin/alpha-linux/ps2eps
+ bin/alpha-linux/ps2frag
+ bin/alpha-linux/pslatex
+
+name bin-pstools.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for hppa-hpux
+binfiles arch=hppa-hpux size=18
+ bin/hppa-hpux/bbox
+ bin/hppa-hpux/ps2eps
+ bin/hppa-hpux/ps2frag
+ bin/hppa-hpux/pslatex
+
+name bin-pstools.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for i386-darwin
+binfiles arch=i386-darwin size=16
+ bin/i386-darwin/bbox
+ bin/i386-darwin/ps2eps
+ bin/i386-darwin/ps2frag
+ bin/i386-darwin/pslatex
+
+name bin-pstools.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for i386-freebsd
+binfiles arch=i386-freebsd size=13
+ bin/i386-freebsd/bbox
+ bin/i386-freebsd/ps2eps
+ bin/i386-freebsd/ps2frag
+ bin/i386-freebsd/pslatex
+
+name bin-pstools.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for i386-linux
+binfiles arch=i386-linux size=13
+ bin/i386-linux/bbox
+ bin/i386-linux/ps2eps
+ bin/i386-linux/ps2frag
+ bin/i386-linux/pslatex
+
+name bin-pstools.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for i386-openbsd
binfiles arch=i386-openbsd size=14
bin/i386-openbsd/bbox
bin/i386-openbsd/ps2eps
bin/i386-openbsd/ps2frag
bin/i386-openbsd/pslatex
+
+name bin-pstools.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for i386-solaris
binfiles arch=i386-solaris size=13
bin/i386-solaris/bbox
bin/i386-solaris/ps2eps
bin/i386-solaris/ps2frag
bin/i386-solaris/pslatex
-binfiles arch=i386-linux size=13
- bin/i386-linux/bbox
- bin/i386-linux/ps2eps
- bin/i386-linux/ps2frag
- bin/i386-linux/pslatex
-binfiles arch=hppa-hpux size=18
- bin/hppa-hpux/bbox
- bin/hppa-hpux/ps2eps
- bin/hppa-hpux/ps2frag
- bin/hppa-hpux/pslatex
+
+name bin-pstools.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for mips-irix
binfiles arch=mips-irix size=16
bin/mips-irix/bbox
bin/mips-irix/ps2eps
bin/mips-irix/ps2frag
bin/mips-irix/pslatex
-binfiles arch=alpha-linux size=14
- bin/alpha-linux/bbox
- bin/alpha-linux/ps2eps
- bin/alpha-linux/ps2frag
- bin/alpha-linux/pslatex
+
+name bin-pstools.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for powerpc-aix
+binfiles arch=powerpc-aix size=13
+ bin/powerpc-aix/bbox
+ bin/powerpc-aix/ps2eps
+ bin/powerpc-aix/ps2frag
+ bin/powerpc-aix/pslatex
+
+name bin-pstools.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for powerpc-darwin
+binfiles arch=powerpc-darwin size=15
+ bin/powerpc-darwin/bbox
+ bin/powerpc-darwin/ps2eps
+ bin/powerpc-darwin/ps2frag
+ bin/powerpc-darwin/pslatex
+
+name bin-pstools.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for powerpc-linux
+binfiles arch=powerpc-linux size=14
+ bin/powerpc-linux/bbox
+ bin/powerpc-linux/ps2eps
+ bin/powerpc-linux/ps2frag
+ bin/powerpc-linux/pslatex
+
+name bin-pstools.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for sparc-linux
binfiles arch=sparc-linux size=14
bin/sparc-linux/bbox
bin/sparc-linux/ps2eps
bin/sparc-linux/ps2frag
bin/sparc-linux/pslatex
+
+name bin-pstools.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for sparc-solaris
binfiles arch=sparc-solaris size=14
bin/sparc-solaris/bbox
bin/sparc-solaris/ps2eps
bin/sparc-solaris/ps2frag
bin/sparc-solaris/pslatex
-binfiles arch=i386-freebsd size=13
- bin/i386-freebsd/bbox
- bin/i386-freebsd/ps2eps
- bin/i386-freebsd/ps2frag
- bin/i386-freebsd/pslatex
+
+name bin-pstools.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for win32
binfiles arch=win32 size=4
bin/win32/bbox.exe
bin/win32/ps2eps.exe
-binfiles arch=i386-darwin size=16
- bin/i386-darwin/bbox
- bin/i386-darwin/ps2eps
- bin/i386-darwin/ps2frag
- bin/i386-darwin/pslatex
-binfiles arch=powerpc-linux size=14
- bin/powerpc-linux/bbox
- bin/powerpc-linux/ps2eps
- bin/powerpc-linux/ps2frag
- bin/powerpc-linux/pslatex
-binfiles arch=powerpc-aix size=13
- bin/powerpc-aix/bbox
- bin/powerpc-aix/ps2eps
- bin/powerpc-aix/ps2frag
- bin/powerpc-aix/pslatex
+
+name bin-pstools.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-pstools for x86_64-linux
binfiles arch=x86_64-linux size=14
bin/x86_64-linux/bbox
bin/x86_64-linux/ps2eps
bin/x86_64-linux/ps2frag
bin/x86_64-linux/pslatex
-binfiles arch=powerpc-darwin size=15
- bin/powerpc-darwin/bbox
- bin/powerpc-darwin/ps2eps
- bin/powerpc-darwin/ps2frag
- bin/powerpc-darwin/pslatex
name bin-psutils
category TLCore
revision 5403
+depend bin-psutils.ARCH
docfiles size=20
texmf/doc/man/man1/epsffit.1
texmf/doc/man/man1/extractres.1
@@ -13718,6 +18762,136 @@ docfiles size=20
runfiles size=17
texmf/dvips/psutils/md68_0.ps
texmf/dvips/psutils/md71_0.ps
+
+name bin-psutils.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for alpha-linux
+binfiles arch=alpha-linux size=47
+ bin/alpha-linux/epsffit
+ bin/alpha-linux/extractres
+ bin/alpha-linux/fixdlsrps
+ bin/alpha-linux/fixfmps
+ bin/alpha-linux/fixmacps
+ bin/alpha-linux/fixpsditps
+ bin/alpha-linux/fixpspps
+ bin/alpha-linux/fixscribeps
+ bin/alpha-linux/fixtpps
+ bin/alpha-linux/fixwfwps
+ bin/alpha-linux/fixwpps
+ bin/alpha-linux/fixwwps
+ bin/alpha-linux/includeres
+ bin/alpha-linux/psbook
+ bin/alpha-linux/psmerge
+ bin/alpha-linux/psnup
+ bin/alpha-linux/psresize
+ bin/alpha-linux/psselect
+ bin/alpha-linux/pstops
+
+name bin-psutils.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for hppa-hpux
+binfiles arch=hppa-hpux size=66
+ bin/hppa-hpux/epsffit
+ bin/hppa-hpux/extractres
+ bin/hppa-hpux/fixdlsrps
+ bin/hppa-hpux/fixfmps
+ bin/hppa-hpux/fixmacps
+ bin/hppa-hpux/fixpsditps
+ bin/hppa-hpux/fixpspps
+ bin/hppa-hpux/fixscribeps
+ bin/hppa-hpux/fixtpps
+ bin/hppa-hpux/fixwfwps
+ bin/hppa-hpux/fixwpps
+ bin/hppa-hpux/fixwwps
+ bin/hppa-hpux/includeres
+ bin/hppa-hpux/psbook
+ bin/hppa-hpux/psmerge
+ bin/hppa-hpux/psnup
+ bin/hppa-hpux/psresize
+ bin/hppa-hpux/psselect
+ bin/hppa-hpux/pstops
+
+name bin-psutils.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for i386-darwin
+binfiles arch=i386-darwin size=52
+ bin/i386-darwin/epsffit
+ bin/i386-darwin/extractres
+ bin/i386-darwin/fixdlsrps
+ bin/i386-darwin/fixfmps
+ bin/i386-darwin/fixmacps
+ bin/i386-darwin/fixpsditps
+ bin/i386-darwin/fixpspps
+ bin/i386-darwin/fixscribeps
+ bin/i386-darwin/fixtpps
+ bin/i386-darwin/fixwfwps
+ bin/i386-darwin/fixwpps
+ bin/i386-darwin/fixwwps
+ bin/i386-darwin/includeres
+ bin/i386-darwin/psbook
+ bin/i386-darwin/psmerge
+ bin/i386-darwin/psnup
+ bin/i386-darwin/psresize
+ bin/i386-darwin/psselect
+ bin/i386-darwin/pstops
+
+name bin-psutils.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for i386-freebsd
+binfiles arch=i386-freebsd size=34
+ bin/i386-freebsd/epsffit
+ bin/i386-freebsd/extractres
+ bin/i386-freebsd/fixdlsrps
+ bin/i386-freebsd/fixfmps
+ bin/i386-freebsd/fixmacps
+ bin/i386-freebsd/fixpsditps
+ bin/i386-freebsd/fixpspps
+ bin/i386-freebsd/fixscribeps
+ bin/i386-freebsd/fixtpps
+ bin/i386-freebsd/fixwfwps
+ bin/i386-freebsd/fixwpps
+ bin/i386-freebsd/fixwwps
+ bin/i386-freebsd/includeres
+ bin/i386-freebsd/psbook
+ bin/i386-freebsd/psmerge
+ bin/i386-freebsd/psnup
+ bin/i386-freebsd/psresize
+ bin/i386-freebsd/psselect
+ bin/i386-freebsd/pstops
+
+name bin-psutils.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for i386-linux
+binfiles arch=i386-linux size=34
+ bin/i386-linux/epsffit
+ bin/i386-linux/extractres
+ bin/i386-linux/fixdlsrps
+ bin/i386-linux/fixfmps
+ bin/i386-linux/fixmacps
+ bin/i386-linux/fixpsditps
+ bin/i386-linux/fixpspps
+ bin/i386-linux/fixscribeps
+ bin/i386-linux/fixtpps
+ bin/i386-linux/fixwfwps
+ bin/i386-linux/fixwpps
+ bin/i386-linux/fixwwps
+ bin/i386-linux/includeres
+ bin/i386-linux/psbook
+ bin/i386-linux/psmerge
+ bin/i386-linux/psnup
+ bin/i386-linux/psresize
+ bin/i386-linux/psselect
+ bin/i386-linux/pstops
+
+name bin-psutils.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for i386-openbsd
binfiles arch=i386-openbsd size=40
bin/i386-openbsd/epsffit
bin/i386-openbsd/extractres
@@ -13738,6 +18912,11 @@ binfiles arch=i386-openbsd size=40
bin/i386-openbsd/psresize
bin/i386-openbsd/psselect
bin/i386-openbsd/pstops
+
+name bin-psutils.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for i386-solaris
binfiles arch=i386-solaris size=38
bin/i386-solaris/epsffit
bin/i386-solaris/extractres
@@ -13758,46 +18937,11 @@ binfiles arch=i386-solaris size=38
bin/i386-solaris/psresize
bin/i386-solaris/psselect
bin/i386-solaris/pstops
-binfiles arch=i386-linux size=34
- bin/i386-linux/epsffit
- bin/i386-linux/extractres
- bin/i386-linux/fixdlsrps
- bin/i386-linux/fixfmps
- bin/i386-linux/fixmacps
- bin/i386-linux/fixpsditps
- bin/i386-linux/fixpspps
- bin/i386-linux/fixscribeps
- bin/i386-linux/fixtpps
- bin/i386-linux/fixwfwps
- bin/i386-linux/fixwpps
- bin/i386-linux/fixwwps
- bin/i386-linux/includeres
- bin/i386-linux/psbook
- bin/i386-linux/psmerge
- bin/i386-linux/psnup
- bin/i386-linux/psresize
- bin/i386-linux/psselect
- bin/i386-linux/pstops
-binfiles arch=hppa-hpux size=66
- bin/hppa-hpux/epsffit
- bin/hppa-hpux/extractres
- bin/hppa-hpux/fixdlsrps
- bin/hppa-hpux/fixfmps
- bin/hppa-hpux/fixmacps
- bin/hppa-hpux/fixpsditps
- bin/hppa-hpux/fixpspps
- bin/hppa-hpux/fixscribeps
- bin/hppa-hpux/fixtpps
- bin/hppa-hpux/fixwfwps
- bin/hppa-hpux/fixwpps
- bin/hppa-hpux/fixwwps
- bin/hppa-hpux/includeres
- bin/hppa-hpux/psbook
- bin/hppa-hpux/psmerge
- bin/hppa-hpux/psnup
- bin/hppa-hpux/psresize
- bin/hppa-hpux/psselect
- bin/hppa-hpux/pstops
+
+name bin-psutils.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for mips-irix
binfiles arch=mips-irix size=59
bin/mips-irix/epsffit
bin/mips-irix/extractres
@@ -13818,26 +18962,86 @@ binfiles arch=mips-irix size=59
bin/mips-irix/psresize
bin/mips-irix/psselect
bin/mips-irix/pstops
-binfiles arch=alpha-linux size=47
- bin/alpha-linux/epsffit
- bin/alpha-linux/extractres
- bin/alpha-linux/fixdlsrps
- bin/alpha-linux/fixfmps
- bin/alpha-linux/fixmacps
- bin/alpha-linux/fixpsditps
- bin/alpha-linux/fixpspps
- bin/alpha-linux/fixscribeps
- bin/alpha-linux/fixtpps
- bin/alpha-linux/fixwfwps
- bin/alpha-linux/fixwpps
- bin/alpha-linux/fixwwps
- bin/alpha-linux/includeres
- bin/alpha-linux/psbook
- bin/alpha-linux/psmerge
- bin/alpha-linux/psnup
- bin/alpha-linux/psresize
- bin/alpha-linux/psselect
- bin/alpha-linux/pstops
+
+name bin-psutils.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for powerpc-aix
+binfiles arch=powerpc-aix size=37
+ bin/powerpc-aix/epsffit
+ bin/powerpc-aix/extractres
+ bin/powerpc-aix/fixdlsrps
+ bin/powerpc-aix/fixfmps
+ bin/powerpc-aix/fixmacps
+ bin/powerpc-aix/fixpsditps
+ bin/powerpc-aix/fixpspps
+ bin/powerpc-aix/fixscribeps
+ bin/powerpc-aix/fixtpps
+ bin/powerpc-aix/fixwfwps
+ bin/powerpc-aix/fixwpps
+ bin/powerpc-aix/fixwwps
+ bin/powerpc-aix/includeres
+ bin/powerpc-aix/psbook
+ bin/powerpc-aix/psmerge
+ bin/powerpc-aix/psnup
+ bin/powerpc-aix/psresize
+ bin/powerpc-aix/psselect
+ bin/powerpc-aix/pstops
+
+name bin-psutils.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for powerpc-darwin
+binfiles arch=powerpc-darwin size=49
+ bin/powerpc-darwin/epsffit
+ bin/powerpc-darwin/extractres
+ bin/powerpc-darwin/fixdlsrps
+ bin/powerpc-darwin/fixfmps
+ bin/powerpc-darwin/fixmacps
+ bin/powerpc-darwin/fixpsditps
+ bin/powerpc-darwin/fixpspps
+ bin/powerpc-darwin/fixscribeps
+ bin/powerpc-darwin/fixtpps
+ bin/powerpc-darwin/fixwfwps
+ bin/powerpc-darwin/fixwpps
+ bin/powerpc-darwin/fixwwps
+ bin/powerpc-darwin/includeres
+ bin/powerpc-darwin/psbook
+ bin/powerpc-darwin/psmerge
+ bin/powerpc-darwin/psnup
+ bin/powerpc-darwin/psresize
+ bin/powerpc-darwin/psselect
+ bin/powerpc-darwin/pstops
+
+name bin-psutils.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for powerpc-linux
+binfiles arch=powerpc-linux size=39
+ bin/powerpc-linux/epsffit
+ bin/powerpc-linux/extractres
+ bin/powerpc-linux/fixdlsrps
+ bin/powerpc-linux/fixfmps
+ bin/powerpc-linux/fixmacps
+ bin/powerpc-linux/fixpsditps
+ bin/powerpc-linux/fixpspps
+ bin/powerpc-linux/fixscribeps
+ bin/powerpc-linux/fixtpps
+ bin/powerpc-linux/fixwfwps
+ bin/powerpc-linux/fixwpps
+ bin/powerpc-linux/fixwwps
+ bin/powerpc-linux/includeres
+ bin/powerpc-linux/psbook
+ bin/powerpc-linux/psmerge
+ bin/powerpc-linux/psnup
+ bin/powerpc-linux/psresize
+ bin/powerpc-linux/psselect
+ bin/powerpc-linux/pstops
+
+name bin-psutils.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for sparc-linux
binfiles arch=sparc-linux size=38
bin/sparc-linux/epsffit
bin/sparc-linux/extractres
@@ -13858,6 +19062,11 @@ binfiles arch=sparc-linux size=38
bin/sparc-linux/psresize
bin/sparc-linux/psselect
bin/sparc-linux/pstops
+
+name bin-psutils.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for sparc-solaris
binfiles arch=sparc-solaris size=47
bin/sparc-solaris/epsffit
bin/sparc-solaris/extractres
@@ -13878,26 +19087,11 @@ binfiles arch=sparc-solaris size=47
bin/sparc-solaris/psresize
bin/sparc-solaris/psselect
bin/sparc-solaris/pstops
-binfiles arch=i386-freebsd size=34
- bin/i386-freebsd/epsffit
- bin/i386-freebsd/extractres
- bin/i386-freebsd/fixdlsrps
- bin/i386-freebsd/fixfmps
- bin/i386-freebsd/fixmacps
- bin/i386-freebsd/fixpsditps
- bin/i386-freebsd/fixpspps
- bin/i386-freebsd/fixscribeps
- bin/i386-freebsd/fixtpps
- bin/i386-freebsd/fixwfwps
- bin/i386-freebsd/fixwpps
- bin/i386-freebsd/fixwwps
- bin/i386-freebsd/includeres
- bin/i386-freebsd/psbook
- bin/i386-freebsd/psmerge
- bin/i386-freebsd/psnup
- bin/i386-freebsd/psresize
- bin/i386-freebsd/psselect
- bin/i386-freebsd/pstops
+
+name bin-psutils.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for win32
binfiles arch=win32 size=32
bin/win32/epsffit.exe
bin/win32/extractres.bat
@@ -13918,66 +19112,11 @@ binfiles arch=win32 size=32
bin/win32/psresize.exe
bin/win32/psselect.exe
bin/win32/pstops.exe
-binfiles arch=i386-darwin size=52
- bin/i386-darwin/epsffit
- bin/i386-darwin/extractres
- bin/i386-darwin/fixdlsrps
- bin/i386-darwin/fixfmps
- bin/i386-darwin/fixmacps
- bin/i386-darwin/fixpsditps
- bin/i386-darwin/fixpspps
- bin/i386-darwin/fixscribeps
- bin/i386-darwin/fixtpps
- bin/i386-darwin/fixwfwps
- bin/i386-darwin/fixwpps
- bin/i386-darwin/fixwwps
- bin/i386-darwin/includeres
- bin/i386-darwin/psbook
- bin/i386-darwin/psmerge
- bin/i386-darwin/psnup
- bin/i386-darwin/psresize
- bin/i386-darwin/psselect
- bin/i386-darwin/pstops
-binfiles arch=powerpc-linux size=39
- bin/powerpc-linux/epsffit
- bin/powerpc-linux/extractres
- bin/powerpc-linux/fixdlsrps
- bin/powerpc-linux/fixfmps
- bin/powerpc-linux/fixmacps
- bin/powerpc-linux/fixpsditps
- bin/powerpc-linux/fixpspps
- bin/powerpc-linux/fixscribeps
- bin/powerpc-linux/fixtpps
- bin/powerpc-linux/fixwfwps
- bin/powerpc-linux/fixwpps
- bin/powerpc-linux/fixwwps
- bin/powerpc-linux/includeres
- bin/powerpc-linux/psbook
- bin/powerpc-linux/psmerge
- bin/powerpc-linux/psnup
- bin/powerpc-linux/psresize
- bin/powerpc-linux/psselect
- bin/powerpc-linux/pstops
-binfiles arch=powerpc-aix size=37
- bin/powerpc-aix/epsffit
- bin/powerpc-aix/extractres
- bin/powerpc-aix/fixdlsrps
- bin/powerpc-aix/fixfmps
- bin/powerpc-aix/fixmacps
- bin/powerpc-aix/fixpsditps
- bin/powerpc-aix/fixpspps
- bin/powerpc-aix/fixscribeps
- bin/powerpc-aix/fixtpps
- bin/powerpc-aix/fixwfwps
- bin/powerpc-aix/fixwpps
- bin/powerpc-aix/fixwwps
- bin/powerpc-aix/includeres
- bin/powerpc-aix/psbook
- bin/powerpc-aix/psmerge
- bin/powerpc-aix/psnup
- bin/powerpc-aix/psresize
- bin/powerpc-aix/psselect
- bin/powerpc-aix/pstops
+
+name bin-psutils.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-psutils for x86_64-linux
binfiles arch=x86_64-linux size=43
bin/x86_64-linux/epsffit
bin/x86_64-linux/extractres
@@ -13998,114 +19137,171 @@ binfiles arch=x86_64-linux size=43
bin/x86_64-linux/psresize
bin/x86_64-linux/psselect
bin/x86_64-linux/pstops
-binfiles arch=powerpc-darwin size=49
- bin/powerpc-darwin/epsffit
- bin/powerpc-darwin/extractres
- bin/powerpc-darwin/fixdlsrps
- bin/powerpc-darwin/fixfmps
- bin/powerpc-darwin/fixmacps
- bin/powerpc-darwin/fixpsditps
- bin/powerpc-darwin/fixpspps
- bin/powerpc-darwin/fixscribeps
- bin/powerpc-darwin/fixtpps
- bin/powerpc-darwin/fixwfwps
- bin/powerpc-darwin/fixwpps
- bin/powerpc-darwin/fixwwps
- bin/powerpc-darwin/includeres
- bin/powerpc-darwin/psbook
- bin/powerpc-darwin/psmerge
- bin/powerpc-darwin/psnup
- bin/powerpc-darwin/psresize
- bin/powerpc-darwin/psselect
- bin/powerpc-darwin/pstops
name bin-seetexk
category TLCore
revision 5403
+depend bin-seetexk.ARCH
runfiles size=5
texmf/doc/man/man1/dvibook.1
texmf/doc/man/man1/dviconcat.1
texmf/doc/man/man1/dviselect.1
texmf/doc/man/man1/dvitodvi.1
+
+name bin-seetexk.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for alpha-linux
+binfiles arch=alpha-linux size=35
+ bin/alpha-linux/dvibook
+ bin/alpha-linux/dviconcat
+ bin/alpha-linux/dviselect
+ bin/alpha-linux/dvitodvi
+
+name bin-seetexk.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for hppa-hpux
+binfiles arch=hppa-hpux size=52
+ bin/hppa-hpux/dvibook
+ bin/hppa-hpux/dviconcat
+ bin/hppa-hpux/dviselect
+ bin/hppa-hpux/dvitodvi
+
+name bin-seetexk.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for i386-darwin
+binfiles arch=i386-darwin size=35
+ bin/i386-darwin/dvibook
+ bin/i386-darwin/dviconcat
+ bin/i386-darwin/dviselect
+ bin/i386-darwin/dvitodvi
+
+name bin-seetexk.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for i386-freebsd
+binfiles arch=i386-freebsd size=40
+ bin/i386-freebsd/dvibook
+ bin/i386-freebsd/dviconcat
+ bin/i386-freebsd/dviselect
+ bin/i386-freebsd/dvitodvi
+
+name bin-seetexk.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for i386-linux
+binfiles arch=i386-linux size=21
+ bin/i386-linux/dvibook
+ bin/i386-linux/dviconcat
+ bin/i386-linux/dviselect
+ bin/i386-linux/dvitodvi
+
+name bin-seetexk.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for i386-openbsd
binfiles arch=i386-openbsd size=34
bin/i386-openbsd/dvibook
bin/i386-openbsd/dviconcat
bin/i386-openbsd/dviselect
bin/i386-openbsd/dvitodvi
+
+name bin-seetexk.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for i386-solaris
binfiles arch=i386-solaris size=35
bin/i386-solaris/dvibook
bin/i386-solaris/dviconcat
bin/i386-solaris/dviselect
bin/i386-solaris/dvitodvi
-binfiles arch=i386-linux size=21
- bin/i386-linux/dvibook
- bin/i386-linux/dviconcat
- bin/i386-linux/dviselect
- bin/i386-linux/dvitodvi
-binfiles arch=hppa-hpux size=52
- bin/hppa-hpux/dvibook
- bin/hppa-hpux/dviconcat
- bin/hppa-hpux/dviselect
- bin/hppa-hpux/dvitodvi
+
+name bin-seetexk.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for mips-irix
binfiles arch=mips-irix size=65
bin/mips-irix/dvibook
bin/mips-irix/dviconcat
bin/mips-irix/dviselect
bin/mips-irix/dvitodvi
-binfiles arch=alpha-linux size=35
- bin/alpha-linux/dvibook
- bin/alpha-linux/dviconcat
- bin/alpha-linux/dviselect
- bin/alpha-linux/dvitodvi
+
+name bin-seetexk.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for powerpc-aix
+binfiles arch=powerpc-aix size=39
+ bin/powerpc-aix/dvibook
+ bin/powerpc-aix/dviconcat
+ bin/powerpc-aix/dviselect
+ bin/powerpc-aix/dvitodvi
+
+name bin-seetexk.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for powerpc-darwin
+binfiles arch=powerpc-darwin size=33
+ bin/powerpc-darwin/dvibook
+ bin/powerpc-darwin/dviconcat
+ bin/powerpc-darwin/dviselect
+ bin/powerpc-darwin/dvitodvi
+
+name bin-seetexk.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for powerpc-linux
+binfiles arch=powerpc-linux size=25
+ bin/powerpc-linux/dvibook
+ bin/powerpc-linux/dviconcat
+ bin/powerpc-linux/dviselect
+ bin/powerpc-linux/dvitodvi
+
+name bin-seetexk.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for sparc-linux
binfiles arch=sparc-linux size=23
bin/sparc-linux/dvibook
bin/sparc-linux/dviconcat
bin/sparc-linux/dviselect
bin/sparc-linux/dvitodvi
+
+name bin-seetexk.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for sparc-solaris
binfiles arch=sparc-solaris size=52
bin/sparc-solaris/dvibook
bin/sparc-solaris/dviconcat
bin/sparc-solaris/dviselect
bin/sparc-solaris/dvitodvi
-binfiles arch=i386-freebsd size=40
- bin/i386-freebsd/dvibook
- bin/i386-freebsd/dviconcat
- bin/i386-freebsd/dviselect
- bin/i386-freebsd/dvitodvi
+
+name bin-seetexk.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for win32
binfiles arch=win32 size=21
bin/win32/dvibook.exe
bin/win32/dviconcat.exe
bin/win32/dviselect.exe
bin/win32/dvitodvi.exe
-binfiles arch=i386-darwin size=35
- bin/i386-darwin/dvibook
- bin/i386-darwin/dviconcat
- bin/i386-darwin/dviselect
- bin/i386-darwin/dvitodvi
-binfiles arch=powerpc-linux size=25
- bin/powerpc-linux/dvibook
- bin/powerpc-linux/dviconcat
- bin/powerpc-linux/dviselect
- bin/powerpc-linux/dvitodvi
-binfiles arch=powerpc-aix size=39
- bin/powerpc-aix/dvibook
- bin/powerpc-aix/dviconcat
- bin/powerpc-aix/dviselect
- bin/powerpc-aix/dvitodvi
+
+name bin-seetexk.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-seetexk for x86_64-linux
binfiles arch=x86_64-linux size=28
bin/x86_64-linux/dvibook
bin/x86_64-linux/dviconcat
bin/x86_64-linux/dviselect
bin/x86_64-linux/dvitodvi
-binfiles arch=powerpc-darwin size=33
- bin/powerpc-darwin/dvibook
- bin/powerpc-darwin/dviconcat
- bin/powerpc-darwin/dviselect
- bin/powerpc-darwin/dvitodvi
name bin-t1utils
category TLCore
revision 5403
+depend bin-t1utils.ARCH
docfiles size=6
texmf/doc/man/man1/t1ascii.1
texmf/doc/man/man1/t1asm.1
@@ -14113,6 +19309,71 @@ docfiles size=6
texmf/doc/man/man1/t1disasm.1
texmf/doc/man/man1/t1mac.1
texmf/doc/man/man1/t1unmac.1
+
+name bin-t1utils.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for alpha-linux
+binfiles arch=alpha-linux size=61
+ bin/alpha-linux/t1ascii
+ bin/alpha-linux/t1asm
+ bin/alpha-linux/t1binary
+ bin/alpha-linux/t1disasm
+ bin/alpha-linux/t1mac
+ bin/alpha-linux/t1unmac
+
+name bin-t1utils.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for hppa-hpux
+binfiles arch=hppa-hpux size=73
+ bin/hppa-hpux/t1ascii
+ bin/hppa-hpux/t1asm
+ bin/hppa-hpux/t1binary
+ bin/hppa-hpux/t1disasm
+ bin/hppa-hpux/t1mac
+ bin/hppa-hpux/t1unmac
+
+name bin-t1utils.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for i386-darwin
+binfiles arch=i386-darwin size=54
+ bin/i386-darwin/t1ascii
+ bin/i386-darwin/t1asm
+ bin/i386-darwin/t1binary
+ bin/i386-darwin/t1disasm
+ bin/i386-darwin/t1mac
+ bin/i386-darwin/t1unmac
+
+name bin-t1utils.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for i386-freebsd
+binfiles arch=i386-freebsd size=42
+ bin/i386-freebsd/t1ascii
+ bin/i386-freebsd/t1asm
+ bin/i386-freebsd/t1binary
+ bin/i386-freebsd/t1disasm
+ bin/i386-freebsd/t1mac
+ bin/i386-freebsd/t1unmac
+
+name bin-t1utils.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for i386-linux
+binfiles arch=i386-linux size=38
+ bin/i386-linux/t1ascii
+ bin/i386-linux/t1asm
+ bin/i386-linux/t1binary
+ bin/i386-linux/t1disasm
+ bin/i386-linux/t1mac
+ bin/i386-linux/t1unmac
+
+name bin-t1utils.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for i386-openbsd
binfiles arch=i386-openbsd size=44
bin/i386-openbsd/t1ascii
bin/i386-openbsd/t1asm
@@ -14120,6 +19381,11 @@ binfiles arch=i386-openbsd size=44
bin/i386-openbsd/t1disasm
bin/i386-openbsd/t1mac
bin/i386-openbsd/t1unmac
+
+name bin-t1utils.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for i386-solaris
binfiles arch=i386-solaris size=42
bin/i386-solaris/t1ascii
bin/i386-solaris/t1asm
@@ -14127,20 +19393,11 @@ binfiles arch=i386-solaris size=42
bin/i386-solaris/t1disasm
bin/i386-solaris/t1mac
bin/i386-solaris/t1unmac
-binfiles arch=i386-linux size=38
- bin/i386-linux/t1ascii
- bin/i386-linux/t1asm
- bin/i386-linux/t1binary
- bin/i386-linux/t1disasm
- bin/i386-linux/t1mac
- bin/i386-linux/t1unmac
-binfiles arch=hppa-hpux size=73
- bin/hppa-hpux/t1ascii
- bin/hppa-hpux/t1asm
- bin/hppa-hpux/t1binary
- bin/hppa-hpux/t1disasm
- bin/hppa-hpux/t1mac
- bin/hppa-hpux/t1unmac
+
+name bin-t1utils.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for mips-irix
binfiles arch=mips-irix size=86
bin/mips-irix/t1ascii
bin/mips-irix/t1asm
@@ -14148,13 +19405,47 @@ binfiles arch=mips-irix size=86
bin/mips-irix/t1disasm
bin/mips-irix/t1mac
bin/mips-irix/t1unmac
-binfiles arch=alpha-linux size=61
- bin/alpha-linux/t1ascii
- bin/alpha-linux/t1asm
- bin/alpha-linux/t1binary
- bin/alpha-linux/t1disasm
- bin/alpha-linux/t1mac
- bin/alpha-linux/t1unmac
+
+name bin-t1utils.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for powerpc-aix
+binfiles arch=powerpc-aix size=50
+ bin/powerpc-aix/t1ascii
+ bin/powerpc-aix/t1asm
+ bin/powerpc-aix/t1binary
+ bin/powerpc-aix/t1disasm
+ bin/powerpc-aix/t1mac
+ bin/powerpc-aix/t1unmac
+
+name bin-t1utils.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for powerpc-darwin
+binfiles arch=powerpc-darwin size=53
+ bin/powerpc-darwin/t1ascii
+ bin/powerpc-darwin/t1asm
+ bin/powerpc-darwin/t1binary
+ bin/powerpc-darwin/t1disasm
+ bin/powerpc-darwin/t1mac
+ bin/powerpc-darwin/t1unmac
+
+name bin-t1utils.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for powerpc-linux
+binfiles arch=powerpc-linux size=47
+ bin/powerpc-linux/t1ascii
+ bin/powerpc-linux/t1asm
+ bin/powerpc-linux/t1binary
+ bin/powerpc-linux/t1disasm
+ bin/powerpc-linux/t1mac
+ bin/powerpc-linux/t1unmac
+
+name bin-t1utils.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for sparc-linux
binfiles arch=sparc-linux size=41
bin/sparc-linux/t1ascii
bin/sparc-linux/t1asm
@@ -14162,6 +19453,11 @@ binfiles arch=sparc-linux size=41
bin/sparc-linux/t1disasm
bin/sparc-linux/t1mac
bin/sparc-linux/t1unmac
+
+name bin-t1utils.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for sparc-solaris
binfiles arch=sparc-solaris size=54
bin/sparc-solaris/t1ascii
bin/sparc-solaris/t1asm
@@ -14169,13 +19465,11 @@ binfiles arch=sparc-solaris size=54
bin/sparc-solaris/t1disasm
bin/sparc-solaris/t1mac
bin/sparc-solaris/t1unmac
-binfiles arch=i386-freebsd size=42
- bin/i386-freebsd/t1ascii
- bin/i386-freebsd/t1asm
- bin/i386-freebsd/t1binary
- bin/i386-freebsd/t1disasm
- bin/i386-freebsd/t1mac
- bin/i386-freebsd/t1unmac
+
+name bin-t1utils.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for win32
binfiles arch=win32 size=29
bin/win32/t1ascii.exe
bin/win32/t1asm.exe
@@ -14183,27 +19477,11 @@ binfiles arch=win32 size=29
bin/win32/t1disasm.exe
bin/win32/t1mac.exe
bin/win32/t1unmac.exe
-binfiles arch=i386-darwin size=54
- bin/i386-darwin/t1ascii
- bin/i386-darwin/t1asm
- bin/i386-darwin/t1binary
- bin/i386-darwin/t1disasm
- bin/i386-darwin/t1mac
- bin/i386-darwin/t1unmac
-binfiles arch=powerpc-linux size=47
- bin/powerpc-linux/t1ascii
- bin/powerpc-linux/t1asm
- bin/powerpc-linux/t1binary
- bin/powerpc-linux/t1disasm
- bin/powerpc-linux/t1mac
- bin/powerpc-linux/t1unmac
-binfiles arch=powerpc-aix size=50
- bin/powerpc-aix/t1ascii
- bin/powerpc-aix/t1asm
- bin/powerpc-aix/t1binary
- bin/powerpc-aix/t1disasm
- bin/powerpc-aix/t1mac
- bin/powerpc-aix/t1unmac
+
+name bin-t1utils.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-t1utils for x86_64-linux
binfiles arch=x86_64-linux size=50
bin/x86_64-linux/t1ascii
bin/x86_64-linux/t1asm
@@ -14211,17 +19489,11 @@ binfiles arch=x86_64-linux size=50
bin/x86_64-linux/t1disasm
bin/x86_64-linux/t1mac
bin/x86_64-linux/t1unmac
-binfiles arch=powerpc-darwin size=53
- bin/powerpc-darwin/t1ascii
- bin/powerpc-darwin/t1asm
- bin/powerpc-darwin/t1binary
- bin/powerpc-darwin/t1disasm
- bin/powerpc-darwin/t1mac
- bin/powerpc-darwin/t1unmac
name bin-tetex
category TLCore
revision 5403
+depend bin-tetex.ARCH
docfiles size=106
texmf/doc/man/man1/a2ping.1
texmf/doc/man/man1/allcm.1
@@ -14273,6 +19545,121 @@ runfiles size=79
texmf/scripts/tetex/texi2html.pl
texmf/scripts/tetex/updmap.pl
texmf/web2c/updmap.cfg
+
+name bin-tetex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for alpha-linux
+binfiles arch=alpha-linux size=63
+ bin/alpha-linux/a2ping
+ bin/alpha-linux/allcm
+ bin/alpha-linux/allec
+ bin/alpha-linux/allneeded
+ bin/alpha-linux/dvi2fax
+ bin/alpha-linux/dvired
+ bin/alpha-linux/fmtutil
+ bin/alpha-linux/fmtutil-sys
+ bin/alpha-linux/fontinst
+ bin/alpha-linux/kpsewhere
+ bin/alpha-linux/ps4pdf
+ bin/alpha-linux/texconfig-dialog
+ bin/alpha-linux/texconfig-sys
+ bin/alpha-linux/texlinks
+ bin/alpha-linux/updmap
+ bin/alpha-linux/updmap-sys
+
+name bin-tetex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for hppa-hpux
+binfiles arch=hppa-hpux size=63
+ bin/hppa-hpux/a2ping
+ bin/hppa-hpux/allcm
+ bin/hppa-hpux/allec
+ bin/hppa-hpux/allneeded
+ bin/hppa-hpux/dvi2fax
+ bin/hppa-hpux/dvired
+ bin/hppa-hpux/fmtutil
+ bin/hppa-hpux/fmtutil-sys
+ bin/hppa-hpux/fontinst
+ bin/hppa-hpux/kpsewhere
+ bin/hppa-hpux/ps4pdf
+ bin/hppa-hpux/texconfig-dialog
+ bin/hppa-hpux/texconfig-sys
+ bin/hppa-hpux/texlinks
+ bin/hppa-hpux/updmap
+ bin/hppa-hpux/updmap-sys
+
+name bin-tetex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for i386-darwin
+binfiles arch=i386-darwin size=63
+ bin/i386-darwin/a2ping
+ bin/i386-darwin/allcm
+ bin/i386-darwin/allec
+ bin/i386-darwin/allneeded
+ bin/i386-darwin/dvi2fax
+ bin/i386-darwin/dvired
+ bin/i386-darwin/fmtutil
+ bin/i386-darwin/fmtutil-sys
+ bin/i386-darwin/fontinst
+ bin/i386-darwin/kpsewhere
+ bin/i386-darwin/ps4pdf
+ bin/i386-darwin/texconfig-dialog
+ bin/i386-darwin/texconfig-sys
+ bin/i386-darwin/texlinks
+ bin/i386-darwin/updmap
+ bin/i386-darwin/updmap-sys
+
+name bin-tetex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for i386-freebsd
+binfiles arch=i386-freebsd size=63
+ bin/i386-freebsd/a2ping
+ bin/i386-freebsd/allcm
+ bin/i386-freebsd/allec
+ bin/i386-freebsd/allneeded
+ bin/i386-freebsd/dvi2fax
+ bin/i386-freebsd/dvired
+ bin/i386-freebsd/fmtutil
+ bin/i386-freebsd/fmtutil-sys
+ bin/i386-freebsd/fontinst
+ bin/i386-freebsd/kpsewhere
+ bin/i386-freebsd/ps4pdf
+ bin/i386-freebsd/texconfig-dialog
+ bin/i386-freebsd/texconfig-sys
+ bin/i386-freebsd/texlinks
+ bin/i386-freebsd/updmap
+ bin/i386-freebsd/updmap-sys
+
+name bin-tetex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for i386-linux
+binfiles arch=i386-linux size=63
+ bin/i386-linux/a2ping
+ bin/i386-linux/allcm
+ bin/i386-linux/allec
+ bin/i386-linux/allneeded
+ bin/i386-linux/dvi2fax
+ bin/i386-linux/dvired
+ bin/i386-linux/fmtutil
+ bin/i386-linux/fmtutil-sys
+ bin/i386-linux/fontinst
+ bin/i386-linux/kpsewhere
+ bin/i386-linux/ps4pdf
+ bin/i386-linux/texconfig-dialog
+ bin/i386-linux/texconfig-sys
+ bin/i386-linux/texlinks
+ bin/i386-linux/updmap
+ bin/i386-linux/updmap-sys
+
+name bin-tetex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for i386-openbsd
binfiles arch=i386-openbsd size=63
bin/i386-openbsd/a2ping
bin/i386-openbsd/allcm
@@ -14290,6 +19677,11 @@ binfiles arch=i386-openbsd size=63
bin/i386-openbsd/texlinks
bin/i386-openbsd/updmap
bin/i386-openbsd/updmap-sys
+
+name bin-tetex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for i386-solaris
binfiles arch=i386-solaris size=63
bin/i386-solaris/a2ping
bin/i386-solaris/allcm
@@ -14307,40 +19699,11 @@ binfiles arch=i386-solaris size=63
bin/i386-solaris/texlinks
bin/i386-solaris/updmap
bin/i386-solaris/updmap-sys
-binfiles arch=i386-linux size=63
- bin/i386-linux/a2ping
- bin/i386-linux/allcm
- bin/i386-linux/allec
- bin/i386-linux/allneeded
- bin/i386-linux/dvi2fax
- bin/i386-linux/dvired
- bin/i386-linux/fmtutil
- bin/i386-linux/fmtutil-sys
- bin/i386-linux/fontinst
- bin/i386-linux/kpsewhere
- bin/i386-linux/ps4pdf
- bin/i386-linux/texconfig-dialog
- bin/i386-linux/texconfig-sys
- bin/i386-linux/texlinks
- bin/i386-linux/updmap
- bin/i386-linux/updmap-sys
-binfiles arch=hppa-hpux size=63
- bin/hppa-hpux/a2ping
- bin/hppa-hpux/allcm
- bin/hppa-hpux/allec
- bin/hppa-hpux/allneeded
- bin/hppa-hpux/dvi2fax
- bin/hppa-hpux/dvired
- bin/hppa-hpux/fmtutil
- bin/hppa-hpux/fmtutil-sys
- bin/hppa-hpux/fontinst
- bin/hppa-hpux/kpsewhere
- bin/hppa-hpux/ps4pdf
- bin/hppa-hpux/texconfig-dialog
- bin/hppa-hpux/texconfig-sys
- bin/hppa-hpux/texlinks
- bin/hppa-hpux/updmap
- bin/hppa-hpux/updmap-sys
+
+name bin-tetex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for mips-irix
binfiles arch=mips-irix size=63
bin/mips-irix/a2ping
bin/mips-irix/allcm
@@ -14358,23 +19721,77 @@ binfiles arch=mips-irix size=63
bin/mips-irix/texlinks
bin/mips-irix/updmap
bin/mips-irix/updmap-sys
-binfiles arch=alpha-linux size=63
- bin/alpha-linux/a2ping
- bin/alpha-linux/allcm
- bin/alpha-linux/allec
- bin/alpha-linux/allneeded
- bin/alpha-linux/dvi2fax
- bin/alpha-linux/dvired
- bin/alpha-linux/fmtutil
- bin/alpha-linux/fmtutil-sys
- bin/alpha-linux/fontinst
- bin/alpha-linux/kpsewhere
- bin/alpha-linux/ps4pdf
- bin/alpha-linux/texconfig-dialog
- bin/alpha-linux/texconfig-sys
- bin/alpha-linux/texlinks
- bin/alpha-linux/updmap
- bin/alpha-linux/updmap-sys
+
+name bin-tetex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for powerpc-aix
+binfiles arch=powerpc-aix size=63
+ bin/powerpc-aix/a2ping
+ bin/powerpc-aix/allcm
+ bin/powerpc-aix/allec
+ bin/powerpc-aix/allneeded
+ bin/powerpc-aix/dvi2fax
+ bin/powerpc-aix/dvired
+ bin/powerpc-aix/fmtutil
+ bin/powerpc-aix/fmtutil-sys
+ bin/powerpc-aix/fontinst
+ bin/powerpc-aix/kpsewhere
+ bin/powerpc-aix/ps4pdf
+ bin/powerpc-aix/texconfig-dialog
+ bin/powerpc-aix/texconfig-sys
+ bin/powerpc-aix/texlinks
+ bin/powerpc-aix/updmap
+ bin/powerpc-aix/updmap-sys
+
+name bin-tetex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for powerpc-darwin
+binfiles arch=powerpc-darwin size=63
+ bin/powerpc-darwin/a2ping
+ bin/powerpc-darwin/allcm
+ bin/powerpc-darwin/allec
+ bin/powerpc-darwin/allneeded
+ bin/powerpc-darwin/dvi2fax
+ bin/powerpc-darwin/dvired
+ bin/powerpc-darwin/fmtutil
+ bin/powerpc-darwin/fmtutil-sys
+ bin/powerpc-darwin/fontinst
+ bin/powerpc-darwin/kpsewhere
+ bin/powerpc-darwin/ps4pdf
+ bin/powerpc-darwin/texconfig-dialog
+ bin/powerpc-darwin/texconfig-sys
+ bin/powerpc-darwin/texlinks
+ bin/powerpc-darwin/updmap
+ bin/powerpc-darwin/updmap-sys
+
+name bin-tetex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for powerpc-linux
+binfiles arch=powerpc-linux size=63
+ bin/powerpc-linux/a2ping
+ bin/powerpc-linux/allcm
+ bin/powerpc-linux/allec
+ bin/powerpc-linux/allneeded
+ bin/powerpc-linux/dvi2fax
+ bin/powerpc-linux/dvired
+ bin/powerpc-linux/fmtutil
+ bin/powerpc-linux/fmtutil-sys
+ bin/powerpc-linux/fontinst
+ bin/powerpc-linux/kpsewhere
+ bin/powerpc-linux/ps4pdf
+ bin/powerpc-linux/texconfig-dialog
+ bin/powerpc-linux/texconfig-sys
+ bin/powerpc-linux/texlinks
+ bin/powerpc-linux/updmap
+ bin/powerpc-linux/updmap-sys
+
+name bin-tetex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for sparc-linux
binfiles arch=sparc-linux size=63
bin/sparc-linux/a2ping
bin/sparc-linux/allcm
@@ -14392,6 +19809,11 @@ binfiles arch=sparc-linux size=63
bin/sparc-linux/texlinks
bin/sparc-linux/updmap
bin/sparc-linux/updmap-sys
+
+name bin-tetex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for sparc-solaris
binfiles arch=sparc-solaris size=63
bin/sparc-solaris/a2ping
bin/sparc-solaris/allcm
@@ -14409,77 +19831,19 @@ binfiles arch=sparc-solaris size=63
bin/sparc-solaris/texlinks
bin/sparc-solaris/updmap
bin/sparc-solaris/updmap-sys
-binfiles arch=i386-freebsd size=63
- bin/i386-freebsd/a2ping
- bin/i386-freebsd/allcm
- bin/i386-freebsd/allec
- bin/i386-freebsd/allneeded
- bin/i386-freebsd/dvi2fax
- bin/i386-freebsd/dvired
- bin/i386-freebsd/fmtutil
- bin/i386-freebsd/fmtutil-sys
- bin/i386-freebsd/fontinst
- bin/i386-freebsd/kpsewhere
- bin/i386-freebsd/ps4pdf
- bin/i386-freebsd/texconfig-dialog
- bin/i386-freebsd/texconfig-sys
- bin/i386-freebsd/texlinks
- bin/i386-freebsd/updmap
- bin/i386-freebsd/updmap-sys
+
+name bin-tetex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for win32
binfiles arch=win32 size=7
bin/win32/fmtutil.exe
bin/win32/updmap.exe
-binfiles arch=i386-darwin size=63
- bin/i386-darwin/a2ping
- bin/i386-darwin/allcm
- bin/i386-darwin/allec
- bin/i386-darwin/allneeded
- bin/i386-darwin/dvi2fax
- bin/i386-darwin/dvired
- bin/i386-darwin/fmtutil
- bin/i386-darwin/fmtutil-sys
- bin/i386-darwin/fontinst
- bin/i386-darwin/kpsewhere
- bin/i386-darwin/ps4pdf
- bin/i386-darwin/texconfig-dialog
- bin/i386-darwin/texconfig-sys
- bin/i386-darwin/texlinks
- bin/i386-darwin/updmap
- bin/i386-darwin/updmap-sys
-binfiles arch=powerpc-linux size=63
- bin/powerpc-linux/a2ping
- bin/powerpc-linux/allcm
- bin/powerpc-linux/allec
- bin/powerpc-linux/allneeded
- bin/powerpc-linux/dvi2fax
- bin/powerpc-linux/dvired
- bin/powerpc-linux/fmtutil
- bin/powerpc-linux/fmtutil-sys
- bin/powerpc-linux/fontinst
- bin/powerpc-linux/kpsewhere
- bin/powerpc-linux/ps4pdf
- bin/powerpc-linux/texconfig-dialog
- bin/powerpc-linux/texconfig-sys
- bin/powerpc-linux/texlinks
- bin/powerpc-linux/updmap
- bin/powerpc-linux/updmap-sys
-binfiles arch=powerpc-aix size=63
- bin/powerpc-aix/a2ping
- bin/powerpc-aix/allcm
- bin/powerpc-aix/allec
- bin/powerpc-aix/allneeded
- bin/powerpc-aix/dvi2fax
- bin/powerpc-aix/dvired
- bin/powerpc-aix/fmtutil
- bin/powerpc-aix/fmtutil-sys
- bin/powerpc-aix/fontinst
- bin/powerpc-aix/kpsewhere
- bin/powerpc-aix/ps4pdf
- bin/powerpc-aix/texconfig-dialog
- bin/powerpc-aix/texconfig-sys
- bin/powerpc-aix/texlinks
- bin/powerpc-aix/updmap
- bin/powerpc-aix/updmap-sys
+
+name bin-tetex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tetex for x86_64-linux
binfiles arch=x86_64-linux size=63
bin/x86_64-linux/a2ping
bin/x86_64-linux/allcm
@@ -14497,72 +19861,227 @@ binfiles arch=x86_64-linux size=63
bin/x86_64-linux/texlinks
bin/x86_64-linux/updmap
bin/x86_64-linux/updmap-sys
-binfiles arch=powerpc-darwin size=63
- bin/powerpc-darwin/a2ping
- bin/powerpc-darwin/allcm
- bin/powerpc-darwin/allec
- bin/powerpc-darwin/allneeded
- bin/powerpc-darwin/dvi2fax
- bin/powerpc-darwin/dvired
- bin/powerpc-darwin/fmtutil
- bin/powerpc-darwin/fmtutil-sys
- bin/powerpc-darwin/fontinst
- bin/powerpc-darwin/kpsewhere
- bin/powerpc-darwin/ps4pdf
- bin/powerpc-darwin/texconfig-dialog
- bin/powerpc-darwin/texconfig-sys
- bin/powerpc-darwin/texlinks
- bin/powerpc-darwin/updmap
- bin/powerpc-darwin/updmap-sys
name bin-tex
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-tex.ARCH
execute BuildFormat tex
docfiles size=4
texmf/doc/man/man1/tex.1
runfiles size=8
texmf/fmtutil/format.tex.cnf
texmf/web2c/tex.pool
+
+name bin-tex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for alpha-linux
+execute BuildFormat tex
+binfiles arch=alpha-linux size=106
+ bin/alpha-linux/tex
+
+name bin-tex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for hppa-hpux
+execute BuildFormat tex
+binfiles arch=hppa-hpux size=87
+ bin/hppa-hpux/tex
+
+name bin-tex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for i386-darwin
+execute BuildFormat tex
+binfiles arch=i386-darwin size=82
+ bin/i386-darwin/tex
+
+name bin-tex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for i386-freebsd
+execute BuildFormat tex
+binfiles arch=i386-freebsd size=70
+ bin/i386-freebsd/tex
+
+name bin-tex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for i386-linux
+execute BuildFormat tex
+binfiles arch=i386-linux size=65
+ bin/i386-linux/tex
+
+name bin-tex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for i386-openbsd
+execute BuildFormat tex
binfiles arch=i386-openbsd size=67
bin/i386-openbsd/tex
+
+name bin-tex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for i386-solaris
+execute BuildFormat tex
binfiles arch=i386-solaris size=76
bin/i386-solaris/tex
-binfiles arch=i386-linux size=65
- bin/i386-linux/tex
-binfiles arch=hppa-hpux size=87
- bin/hppa-hpux/tex
+
+name bin-tex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for mips-irix
+execute BuildFormat tex
binfiles arch=mips-irix size=128
bin/mips-irix/tex
-binfiles arch=alpha-linux size=106
- bin/alpha-linux/tex
+
+name bin-tex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for powerpc-aix
+execute BuildFormat tex
+binfiles arch=powerpc-aix size=85
+ bin/powerpc-aix/tex
+
+name bin-tex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for powerpc-darwin
+execute BuildFormat tex
+binfiles arch=powerpc-darwin size=83
+ bin/powerpc-darwin/tex
+
+name bin-tex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for powerpc-linux
+execute BuildFormat tex
+binfiles arch=powerpc-linux size=81
+ bin/powerpc-linux/tex
+
+name bin-tex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for sparc-linux
+execute BuildFormat tex
binfiles arch=sparc-linux size=78
bin/sparc-linux/tex
+
+name bin-tex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for sparc-solaris
+execute BuildFormat tex
binfiles arch=sparc-solaris size=112
bin/sparc-solaris/tex
-binfiles arch=i386-freebsd size=70
- bin/i386-freebsd/tex
+
+name bin-tex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for win32
+execute BuildFormat tex
binfiles arch=win32 size=60
bin/win32/tex.dll
bin/win32/tex.exe
-binfiles arch=i386-darwin size=82
- bin/i386-darwin/tex
-binfiles arch=powerpc-linux size=81
- bin/powerpc-linux/tex
-binfiles arch=powerpc-aix size=85
- bin/powerpc-aix/tex
+
+name bin-tex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex for x86_64-linux
+execute BuildFormat tex
binfiles arch=x86_64-linux size=76
bin/x86_64-linux/tex
-binfiles arch=powerpc-darwin size=83
- bin/powerpc-darwin/tex
name bin-tex4htk
category TLCore
revision 5403
+depend bin-tex4htk.ARCH
runfiles size=2
texmf/scripts/tex4ht/htcopy.pl
texmf/scripts/tex4ht/htmove.pl
+
+name bin-tex4htk.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for alpha-linux
+binfiles arch=alpha-linux size=87
+ bin/alpha-linux/ht
+ bin/alpha-linux/htcontext
+ bin/alpha-linux/htlatex
+ bin/alpha-linux/htmex
+ bin/alpha-linux/httex
+ bin/alpha-linux/httexi
+ bin/alpha-linux/mk4ht
+ bin/alpha-linux/t4ht
+ bin/alpha-linux/tex4ht
+
+name bin-tex4htk.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for hppa-hpux
+binfiles arch=hppa-hpux size=79
+ bin/hppa-hpux/ht
+ bin/hppa-hpux/htcontext
+ bin/hppa-hpux/htlatex
+ bin/hppa-hpux/htmex
+ bin/hppa-hpux/httex
+ bin/hppa-hpux/httexi
+ bin/hppa-hpux/mk4ht
+ bin/hppa-hpux/t4ht
+ bin/hppa-hpux/tex4ht
+
+name bin-tex4htk.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for i386-darwin
+binfiles arch=i386-darwin size=70
+ bin/i386-darwin/ht
+ bin/i386-darwin/htcontext
+ bin/i386-darwin/htlatex
+ bin/i386-darwin/htmex
+ bin/i386-darwin/httex
+ bin/i386-darwin/httexi
+ bin/i386-darwin/mk4ht
+ bin/i386-darwin/t4ht
+ bin/i386-darwin/tex4ht
+
+name bin-tex4htk.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for i386-freebsd
+binfiles arch=i386-freebsd size=61
+ bin/i386-freebsd/ht
+ bin/i386-freebsd/htcontext
+ bin/i386-freebsd/htlatex
+ bin/i386-freebsd/htmex
+ bin/i386-freebsd/httex
+ bin/i386-freebsd/httexi
+ bin/i386-freebsd/mk4ht
+ bin/i386-freebsd/t4ht
+ bin/i386-freebsd/tex4ht
+
+name bin-tex4htk.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for i386-linux
+binfiles arch=i386-linux size=60
+ bin/i386-linux/ht
+ bin/i386-linux/htcontext
+ bin/i386-linux/htlatex
+ bin/i386-linux/htmex
+ bin/i386-linux/httex
+ bin/i386-linux/httexi
+ bin/i386-linux/mk4ht
+ bin/i386-linux/t4ht
+ bin/i386-linux/tex4ht
+
+name bin-tex4htk.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for i386-openbsd
binfiles arch=i386-openbsd size=62
bin/i386-openbsd/ht
bin/i386-openbsd/htcontext
@@ -14573,6 +20092,11 @@ binfiles arch=i386-openbsd size=62
bin/i386-openbsd/mk4ht
bin/i386-openbsd/t4ht
bin/i386-openbsd/tex4ht
+
+name bin-tex4htk.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for i386-solaris
binfiles arch=i386-solaris size=62
bin/i386-solaris/ht
bin/i386-solaris/htcontext
@@ -14583,26 +20107,11 @@ binfiles arch=i386-solaris size=62
bin/i386-solaris/mk4ht
bin/i386-solaris/t4ht
bin/i386-solaris/tex4ht
-binfiles arch=i386-linux size=60
- bin/i386-linux/ht
- bin/i386-linux/htcontext
- bin/i386-linux/htlatex
- bin/i386-linux/htmex
- bin/i386-linux/httex
- bin/i386-linux/httexi
- bin/i386-linux/mk4ht
- bin/i386-linux/t4ht
- bin/i386-linux/tex4ht
-binfiles arch=hppa-hpux size=79
- bin/hppa-hpux/ht
- bin/hppa-hpux/htcontext
- bin/hppa-hpux/htlatex
- bin/hppa-hpux/htmex
- bin/hppa-hpux/httex
- bin/hppa-hpux/httexi
- bin/hppa-hpux/mk4ht
- bin/hppa-hpux/t4ht
- bin/hppa-hpux/tex4ht
+
+name bin-tex4htk.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for mips-irix
binfiles arch=mips-irix size=98
bin/mips-irix/ht
bin/mips-irix/htcontext
@@ -14613,16 +20122,56 @@ binfiles arch=mips-irix size=98
bin/mips-irix/mk4ht
bin/mips-irix/t4ht
bin/mips-irix/tex4ht
-binfiles arch=alpha-linux size=87
- bin/alpha-linux/ht
- bin/alpha-linux/htcontext
- bin/alpha-linux/htlatex
- bin/alpha-linux/htmex
- bin/alpha-linux/httex
- bin/alpha-linux/httexi
- bin/alpha-linux/mk4ht
- bin/alpha-linux/t4ht
- bin/alpha-linux/tex4ht
+
+name bin-tex4htk.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for powerpc-aix
+binfiles arch=powerpc-aix size=69
+ bin/powerpc-aix/ht
+ bin/powerpc-aix/htcontext
+ bin/powerpc-aix/htlatex
+ bin/powerpc-aix/htmex
+ bin/powerpc-aix/httex
+ bin/powerpc-aix/httexi
+ bin/powerpc-aix/mk4ht
+ bin/powerpc-aix/t4ht
+ bin/powerpc-aix/tex4ht
+
+name bin-tex4htk.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for powerpc-darwin
+binfiles arch=powerpc-darwin size=69
+ bin/powerpc-darwin/ht
+ bin/powerpc-darwin/htcontext
+ bin/powerpc-darwin/htlatex
+ bin/powerpc-darwin/htmex
+ bin/powerpc-darwin/httex
+ bin/powerpc-darwin/httexi
+ bin/powerpc-darwin/mk4ht
+ bin/powerpc-darwin/t4ht
+ bin/powerpc-darwin/tex4ht
+
+name bin-tex4htk.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for powerpc-linux
+binfiles arch=powerpc-linux size=67
+ bin/powerpc-linux/ht
+ bin/powerpc-linux/htcontext
+ bin/powerpc-linux/htlatex
+ bin/powerpc-linux/htmex
+ bin/powerpc-linux/httex
+ bin/powerpc-linux/httexi
+ bin/powerpc-linux/mk4ht
+ bin/powerpc-linux/t4ht
+ bin/powerpc-linux/tex4ht
+
+name bin-tex4htk.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for sparc-linux
binfiles arch=sparc-linux size=66
bin/sparc-linux/ht
bin/sparc-linux/htcontext
@@ -14633,6 +20182,11 @@ binfiles arch=sparc-linux size=66
bin/sparc-linux/mk4ht
bin/sparc-linux/t4ht
bin/sparc-linux/tex4ht
+
+name bin-tex4htk.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for sparc-solaris
binfiles arch=sparc-solaris size=100
bin/sparc-solaris/ht
bin/sparc-solaris/htcontext
@@ -14643,16 +20197,11 @@ binfiles arch=sparc-solaris size=100
bin/sparc-solaris/mk4ht
bin/sparc-solaris/t4ht
bin/sparc-solaris/tex4ht
-binfiles arch=i386-freebsd size=61
- bin/i386-freebsd/ht
- bin/i386-freebsd/htcontext
- bin/i386-freebsd/htlatex
- bin/i386-freebsd/htmex
- bin/i386-freebsd/httex
- bin/i386-freebsd/httexi
- bin/i386-freebsd/mk4ht
- bin/i386-freebsd/t4ht
- bin/i386-freebsd/tex4ht
+
+name bin-tex4htk.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for win32
binfiles arch=win32 size=113
bin/win32/dbcontext.bat
bin/win32/dblatex.bat
@@ -14740,36 +20289,11 @@ binfiles arch=win32 size=113
bin/win32/xhmtexi.bat
bin/win32/xhtex.bat
bin/win32/xhtexi.bat
-binfiles arch=i386-darwin size=70
- bin/i386-darwin/ht
- bin/i386-darwin/htcontext
- bin/i386-darwin/htlatex
- bin/i386-darwin/htmex
- bin/i386-darwin/httex
- bin/i386-darwin/httexi
- bin/i386-darwin/mk4ht
- bin/i386-darwin/t4ht
- bin/i386-darwin/tex4ht
-binfiles arch=powerpc-linux size=67
- bin/powerpc-linux/ht
- bin/powerpc-linux/htcontext
- bin/powerpc-linux/htlatex
- bin/powerpc-linux/htmex
- bin/powerpc-linux/httex
- bin/powerpc-linux/httexi
- bin/powerpc-linux/mk4ht
- bin/powerpc-linux/t4ht
- bin/powerpc-linux/tex4ht
-binfiles arch=powerpc-aix size=69
- bin/powerpc-aix/ht
- bin/powerpc-aix/htcontext
- bin/powerpc-aix/htlatex
- bin/powerpc-aix/htmex
- bin/powerpc-aix/httex
- bin/powerpc-aix/httexi
- bin/powerpc-aix/mk4ht
- bin/powerpc-aix/t4ht
- bin/powerpc-aix/tex4ht
+
+name bin-tex4htk.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tex4htk for x86_64-linux
binfiles arch=x86_64-linux size=69
bin/x86_64-linux/ht
bin/x86_64-linux/htcontext
@@ -14780,20 +20304,11 @@ binfiles arch=x86_64-linux size=69
bin/x86_64-linux/mk4ht
bin/x86_64-linux/t4ht
bin/x86_64-linux/tex4ht
-binfiles arch=powerpc-darwin size=69
- bin/powerpc-darwin/ht
- bin/powerpc-darwin/htcontext
- bin/powerpc-darwin/htlatex
- bin/powerpc-darwin/htmex
- bin/powerpc-darwin/httex
- bin/powerpc-darwin/httexi
- bin/powerpc-darwin/mk4ht
- bin/powerpc-darwin/t4ht
- bin/powerpc-darwin/tex4ht
name bin-texconfig
category TLCore
revision 5263
+depend bin-texconfig.ARCH
docfiles size=2
texmf/doc/man/man1/texconfig-sys.1
texmf/doc/man/man1/texconfig.1
@@ -14805,39 +20320,115 @@ runfiles size=9
texmf/texconfig/tcfmgr.map
texmf/texconfig/v/vt100
texmf/texconfig/x/xterm
+
+name bin-texconfig.alpha-linux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for alpha-linux
+binfiles arch=alpha-linux size=11
+ bin/alpha-linux/texconfig
+
+name bin-texconfig.hppa-hpux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for hppa-hpux
+binfiles arch=hppa-hpux size=11
+ bin/hppa-hpux/texconfig
+
+name bin-texconfig.i386-darwin
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for i386-darwin
+binfiles arch=i386-darwin size=11
+ bin/i386-darwin/texconfig
+
+name bin-texconfig.i386-freebsd
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for i386-freebsd
+binfiles arch=i386-freebsd size=11
+ bin/i386-freebsd/texconfig
+
+name bin-texconfig.i386-linux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for i386-linux
+binfiles arch=i386-linux size=11
+ bin/i386-linux/texconfig
+
+name bin-texconfig.i386-openbsd
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for i386-openbsd
binfiles arch=i386-openbsd size=11
bin/i386-openbsd/texconfig
+
+name bin-texconfig.i386-solaris
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for i386-solaris
binfiles arch=i386-solaris size=11
bin/i386-solaris/texconfig
-binfiles arch=i386-linux size=11
- bin/i386-linux/texconfig
-binfiles arch=hppa-hpux size=11
- bin/hppa-hpux/texconfig
+
+name bin-texconfig.mips-irix
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for mips-irix
binfiles arch=mips-irix size=11
bin/mips-irix/texconfig
-binfiles arch=alpha-linux size=11
- bin/alpha-linux/texconfig
+
+name bin-texconfig.powerpc-aix
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for powerpc-aix
+binfiles arch=powerpc-aix size=11
+ bin/powerpc-aix/texconfig
+
+name bin-texconfig.powerpc-darwin
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for powerpc-darwin
+binfiles arch=powerpc-darwin size=11
+ bin/powerpc-darwin/texconfig
+
+name bin-texconfig.powerpc-linux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for powerpc-linux
+binfiles arch=powerpc-linux size=11
+ bin/powerpc-linux/texconfig
+
+name bin-texconfig.sparc-linux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for sparc-linux
binfiles arch=sparc-linux size=11
bin/sparc-linux/texconfig
+
+name bin-texconfig.sparc-solaris
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for sparc-solaris
binfiles arch=sparc-solaris size=11
bin/sparc-solaris/texconfig
-binfiles arch=i386-freebsd size=11
- bin/i386-freebsd/texconfig
-binfiles arch=i386-darwin size=11
- bin/i386-darwin/texconfig
-binfiles arch=powerpc-linux size=11
- bin/powerpc-linux/texconfig
-binfiles arch=powerpc-aix size=11
- bin/powerpc-aix/texconfig
+
+name bin-texconfig.win32
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for win32
+
+name bin-texconfig.x86_64-linux
+category TLCore
+revision 5263
+shortdesc binary files of bin-texconfig for x86_64-linux
binfiles arch=x86_64-linux size=11
bin/x86_64-linux/texconfig
-binfiles arch=powerpc-darwin size=11
- bin/powerpc-darwin/texconfig
name bin-texdoc
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-texdoc.ARCH
docfiles size=4
texmf/doc/man/man1/texdoc.1
texmf/doc/man/man1/texdoctk.1
@@ -14845,56 +20436,132 @@ runfiles size=10
texmf/texdoctk/texdocrc-win32.defaults
texmf/texdoctk/texdocrc.defaults
texmf/texdoctk/texdoctk.dat
+
+name bin-texdoc.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for alpha-linux
+binfiles arch=alpha-linux size=17
+ bin/alpha-linux/texdoc
+ bin/alpha-linux/texdoctk
+
+name bin-texdoc.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for hppa-hpux
+binfiles arch=hppa-hpux size=17
+ bin/hppa-hpux/texdoc
+ bin/hppa-hpux/texdoctk
+
+name bin-texdoc.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for i386-darwin
+binfiles arch=i386-darwin size=17
+ bin/i386-darwin/texdoc
+ bin/i386-darwin/texdoctk
+
+name bin-texdoc.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for i386-freebsd
+binfiles arch=i386-freebsd size=17
+ bin/i386-freebsd/texdoc
+ bin/i386-freebsd/texdoctk
+
+name bin-texdoc.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for i386-linux
+binfiles arch=i386-linux size=17
+ bin/i386-linux/texdoc
+ bin/i386-linux/texdoctk
+
+name bin-texdoc.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for i386-openbsd
binfiles arch=i386-openbsd size=17
bin/i386-openbsd/texdoc
bin/i386-openbsd/texdoctk
+
+name bin-texdoc.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for i386-solaris
binfiles arch=i386-solaris size=17
bin/i386-solaris/texdoc
bin/i386-solaris/texdoctk
-binfiles arch=i386-linux size=17
- bin/i386-linux/texdoc
- bin/i386-linux/texdoctk
-binfiles arch=hppa-hpux size=17
- bin/hppa-hpux/texdoc
- bin/hppa-hpux/texdoctk
+
+name bin-texdoc.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for mips-irix
binfiles arch=mips-irix size=17
bin/mips-irix/texdoc
bin/mips-irix/texdoctk
-binfiles arch=alpha-linux size=17
- bin/alpha-linux/texdoc
- bin/alpha-linux/texdoctk
+
+name bin-texdoc.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for powerpc-aix
+binfiles arch=powerpc-aix size=17
+ bin/powerpc-aix/texdoc
+ bin/powerpc-aix/texdoctk
+
+name bin-texdoc.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for powerpc-darwin
+binfiles arch=powerpc-darwin size=17
+ bin/powerpc-darwin/texdoc
+ bin/powerpc-darwin/texdoctk
+
+name bin-texdoc.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for powerpc-linux
+binfiles arch=powerpc-linux size=17
+ bin/powerpc-linux/texdoc
+ bin/powerpc-linux/texdoctk
+
+name bin-texdoc.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for sparc-linux
binfiles arch=sparc-linux size=17
bin/sparc-linux/texdoc
bin/sparc-linux/texdoctk
+
+name bin-texdoc.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for sparc-solaris
binfiles arch=sparc-solaris size=17
bin/sparc-solaris/texdoc
bin/sparc-solaris/texdoctk
-binfiles arch=i386-freebsd size=17
- bin/i386-freebsd/texdoc
- bin/i386-freebsd/texdoctk
+
+name bin-texdoc.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for win32
binfiles arch=win32 size=6
bin/win32/texdoc.exe
bin/win32/texdoctk.exe
-binfiles arch=i386-darwin size=17
- bin/i386-darwin/texdoc
- bin/i386-darwin/texdoctk
-binfiles arch=powerpc-linux size=17
- bin/powerpc-linux/texdoc
- bin/powerpc-linux/texdoctk
-binfiles arch=powerpc-aix size=17
- bin/powerpc-aix/texdoc
- bin/powerpc-aix/texdoctk
+
+name bin-texdoc.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texdoc for x86_64-linux
binfiles arch=x86_64-linux size=17
bin/x86_64-linux/texdoc
bin/x86_64-linux/texdoctk
-binfiles arch=powerpc-darwin size=17
- bin/powerpc-darwin/texdoc
- bin/powerpc-darwin/texdoctk
name bin-texinfo
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-texinfo.ARCH
docfiles size=1473
texmf/doc/info/fontname.info
texmf/doc/info/info-stnd.info
@@ -14919,6 +20586,81 @@ docfiles size=1473
texmf/doc/texinfo/info.pdf
texmf/doc/texinfo/texinfo.html
texmf/doc/texinfo/texinfo.pdf
+
+name bin-texinfo.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for alpha-linux
+binfiles arch=alpha-linux size=305
+ bin/alpha-linux/info
+ bin/alpha-linux/infokey
+ bin/alpha-linux/install-info
+ bin/alpha-linux/makeinfo
+ bin/alpha-linux/texi2dvi
+ bin/alpha-linux/texi2html
+ bin/alpha-linux/texi2pdf
+ bin/alpha-linux/texindex
+
+name bin-texinfo.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for hppa-hpux
+binfiles arch=hppa-hpux size=299
+ bin/hppa-hpux/info
+ bin/hppa-hpux/infokey
+ bin/hppa-hpux/install-info
+ bin/hppa-hpux/makeinfo
+ bin/hppa-hpux/texi2dvi
+ bin/hppa-hpux/texi2html
+ bin/hppa-hpux/texi2pdf
+ bin/hppa-hpux/texindex
+
+name bin-texinfo.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for i386-darwin
+binfiles arch=i386-darwin size=271
+ bin/i386-darwin/info
+ bin/i386-darwin/infokey
+ bin/i386-darwin/install-info
+ bin/i386-darwin/makeinfo
+ bin/i386-darwin/texi2dvi
+ bin/i386-darwin/texi2html
+ bin/i386-darwin/texi2pdf
+ bin/i386-darwin/texindex
+
+name bin-texinfo.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for i386-freebsd
+binfiles arch=i386-freebsd size=250
+ bin/i386-freebsd/info
+ bin/i386-freebsd/infokey
+ bin/i386-freebsd/install-info
+ bin/i386-freebsd/makeinfo
+ bin/i386-freebsd/texi2dvi
+ bin/i386-freebsd/texi2html
+ bin/i386-freebsd/texi2pdf
+ bin/i386-freebsd/texindex
+
+name bin-texinfo.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for i386-linux
+binfiles arch=i386-linux size=249
+ bin/i386-linux/info
+ bin/i386-linux/infokey
+ bin/i386-linux/install-info
+ bin/i386-linux/makeinfo
+ bin/i386-linux/texi2dvi
+ bin/i386-linux/texi2html
+ bin/i386-linux/texi2pdf
+ bin/i386-linux/texindex
+
+name bin-texinfo.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for i386-openbsd
binfiles arch=i386-openbsd size=252
bin/i386-openbsd/info
bin/i386-openbsd/infokey
@@ -14928,6 +20670,11 @@ binfiles arch=i386-openbsd size=252
bin/i386-openbsd/texi2html
bin/i386-openbsd/texi2pdf
bin/i386-openbsd/texindex
+
+name bin-texinfo.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for i386-solaris
binfiles arch=i386-solaris size=262
bin/i386-solaris/info
bin/i386-solaris/infokey
@@ -14937,24 +20684,11 @@ binfiles arch=i386-solaris size=262
bin/i386-solaris/texi2html
bin/i386-solaris/texi2pdf
bin/i386-solaris/texindex
-binfiles arch=i386-linux size=249
- bin/i386-linux/info
- bin/i386-linux/infokey
- bin/i386-linux/install-info
- bin/i386-linux/makeinfo
- bin/i386-linux/texi2dvi
- bin/i386-linux/texi2html
- bin/i386-linux/texi2pdf
- bin/i386-linux/texindex
-binfiles arch=hppa-hpux size=299
- bin/hppa-hpux/info
- bin/hppa-hpux/infokey
- bin/hppa-hpux/install-info
- bin/hppa-hpux/makeinfo
- bin/hppa-hpux/texi2dvi
- bin/hppa-hpux/texi2html
- bin/hppa-hpux/texi2pdf
- bin/hppa-hpux/texindex
+
+name bin-texinfo.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for mips-irix
binfiles arch=mips-irix size=335
bin/mips-irix/info
bin/mips-irix/infokey
@@ -14964,15 +20698,53 @@ binfiles arch=mips-irix size=335
bin/mips-irix/texi2html
bin/mips-irix/texi2pdf
bin/mips-irix/texindex
-binfiles arch=alpha-linux size=305
- bin/alpha-linux/info
- bin/alpha-linux/infokey
- bin/alpha-linux/install-info
- bin/alpha-linux/makeinfo
- bin/alpha-linux/texi2dvi
- bin/alpha-linux/texi2html
- bin/alpha-linux/texi2pdf
- bin/alpha-linux/texindex
+
+name bin-texinfo.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for powerpc-aix
+binfiles arch=powerpc-aix size=291
+ bin/powerpc-aix/info
+ bin/powerpc-aix/infokey
+ bin/powerpc-aix/install-info
+ bin/powerpc-aix/makeinfo
+ bin/powerpc-aix/texi2dvi
+ bin/powerpc-aix/texi2html
+ bin/powerpc-aix/texi2pdf
+ bin/powerpc-aix/texindex
+
+name bin-texinfo.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for powerpc-darwin
+binfiles arch=powerpc-darwin size=273
+ bin/powerpc-darwin/info
+ bin/powerpc-darwin/infokey
+ bin/powerpc-darwin/install-info
+ bin/powerpc-darwin/makeinfo
+ bin/powerpc-darwin/texi2dvi
+ bin/powerpc-darwin/texi2html
+ bin/powerpc-darwin/texi2pdf
+ bin/powerpc-darwin/texindex
+
+name bin-texinfo.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for powerpc-linux
+binfiles arch=powerpc-linux size=269
+ bin/powerpc-linux/info
+ bin/powerpc-linux/infokey
+ bin/powerpc-linux/install-info
+ bin/powerpc-linux/makeinfo
+ bin/powerpc-linux/texi2dvi
+ bin/powerpc-linux/texi2html
+ bin/powerpc-linux/texi2pdf
+ bin/powerpc-linux/texindex
+
+name bin-texinfo.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for sparc-linux
binfiles arch=sparc-linux size=261
bin/sparc-linux/info
bin/sparc-linux/infokey
@@ -14982,6 +20754,11 @@ binfiles arch=sparc-linux size=261
bin/sparc-linux/texi2html
bin/sparc-linux/texi2pdf
bin/sparc-linux/texindex
+
+name bin-texinfo.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for sparc-solaris
binfiles arch=sparc-solaris size=301
bin/sparc-solaris/info
bin/sparc-solaris/infokey
@@ -14991,47 +20768,21 @@ binfiles arch=sparc-solaris size=301
bin/sparc-solaris/texi2html
bin/sparc-solaris/texi2pdf
bin/sparc-solaris/texindex
-binfiles arch=i386-freebsd size=250
- bin/i386-freebsd/info
- bin/i386-freebsd/infokey
- bin/i386-freebsd/install-info
- bin/i386-freebsd/makeinfo
- bin/i386-freebsd/texi2dvi
- bin/i386-freebsd/texi2html
- bin/i386-freebsd/texi2pdf
- bin/i386-freebsd/texindex
+
+name bin-texinfo.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for win32
binfiles arch=win32 size=60
bin/win32/install-info.exe
bin/win32/makeinfo.exe
bin/win32/texi2html.exe
bin/win32/texindex.exe
-binfiles arch=i386-darwin size=271
- bin/i386-darwin/info
- bin/i386-darwin/infokey
- bin/i386-darwin/install-info
- bin/i386-darwin/makeinfo
- bin/i386-darwin/texi2dvi
- bin/i386-darwin/texi2html
- bin/i386-darwin/texi2pdf
- bin/i386-darwin/texindex
-binfiles arch=powerpc-linux size=269
- bin/powerpc-linux/info
- bin/powerpc-linux/infokey
- bin/powerpc-linux/install-info
- bin/powerpc-linux/makeinfo
- bin/powerpc-linux/texi2dvi
- bin/powerpc-linux/texi2html
- bin/powerpc-linux/texi2pdf
- bin/powerpc-linux/texindex
-binfiles arch=powerpc-aix size=291
- bin/powerpc-aix/info
- bin/powerpc-aix/infokey
- bin/powerpc-aix/install-info
- bin/powerpc-aix/makeinfo
- bin/powerpc-aix/texi2dvi
- bin/powerpc-aix/texi2html
- bin/powerpc-aix/texi2pdf
- bin/powerpc-aix/texindex
+
+name bin-texinfo.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texinfo for x86_64-linux
binfiles arch=x86_64-linux size=274
bin/x86_64-linux/info
bin/x86_64-linux/infokey
@@ -15041,236 +20792,775 @@ binfiles arch=x86_64-linux size=274
bin/x86_64-linux/texi2html
bin/x86_64-linux/texi2pdf
bin/x86_64-linux/texindex
-binfiles arch=powerpc-darwin size=273
- bin/powerpc-darwin/info
- bin/powerpc-darwin/infokey
- bin/powerpc-darwin/install-info
- bin/powerpc-darwin/makeinfo
- bin/powerpc-darwin/texi2dvi
- bin/powerpc-darwin/texi2html
- bin/powerpc-darwin/texi2pdf
- bin/powerpc-darwin/texindex
name bin-texsis
category TLCore
revision 5403
depend bin-tex
+depend bin-texsis.ARCH
execute BuildFormat texsis
runfiles size=1
texmf/fmtutil/format.texsis.cnf
+
+name bin-texsis.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for alpha-linux
+execute BuildFormat texsis
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/texsis
+
+name bin-texsis.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for hppa-hpux
+execute BuildFormat texsis
+binfiles arch=hppa-hpux size=1
+ bin/hppa-hpux/texsis
+
+name bin-texsis.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for i386-darwin
+execute BuildFormat texsis
+binfiles arch=i386-darwin size=1
+ bin/i386-darwin/texsis
+
+name bin-texsis.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for i386-freebsd
+execute BuildFormat texsis
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/texsis
+
+name bin-texsis.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for i386-linux
+execute BuildFormat texsis
+binfiles arch=i386-linux size=1
+ bin/i386-linux/texsis
+
+name bin-texsis.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for i386-openbsd
+execute BuildFormat texsis
binfiles arch=i386-openbsd size=1
bin/i386-openbsd/texsis
+
+name bin-texsis.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for i386-solaris
+execute BuildFormat texsis
binfiles arch=i386-solaris size=1
bin/i386-solaris/texsis
-binfiles arch=i386-linux size=1
- bin/i386-linux/texsis
-binfiles arch=hppa-hpux size=1
- bin/hppa-hpux/texsis
+
+name bin-texsis.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for mips-irix
+execute BuildFormat texsis
binfiles arch=mips-irix size=1
bin/mips-irix/texsis
-binfiles arch=alpha-linux size=1
- bin/alpha-linux/texsis
+
+name bin-texsis.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for powerpc-aix
+execute BuildFormat texsis
+binfiles arch=powerpc-aix size=1
+ bin/powerpc-aix/texsis
+
+name bin-texsis.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for powerpc-darwin
+execute BuildFormat texsis
+binfiles arch=powerpc-darwin size=1
+ bin/powerpc-darwin/texsis
+
+name bin-texsis.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for powerpc-linux
+execute BuildFormat texsis
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/texsis
+
+name bin-texsis.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for sparc-linux
+execute BuildFormat texsis
binfiles arch=sparc-linux size=1
bin/sparc-linux/texsis
+
+name bin-texsis.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for sparc-solaris
+execute BuildFormat texsis
binfiles arch=sparc-solaris size=1
bin/sparc-solaris/texsis
-binfiles arch=i386-freebsd size=1
- bin/i386-freebsd/texsis
+
+name bin-texsis.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for win32
+execute BuildFormat texsis
binfiles arch=win32 size=1
bin/win32/texsis.exe
-binfiles arch=i386-darwin size=1
- bin/i386-darwin/texsis
-binfiles arch=powerpc-linux size=1
- bin/powerpc-linux/texsis
-binfiles arch=powerpc-aix size=1
- bin/powerpc-aix/texsis
+
+name bin-texsis.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texsis for x86_64-linux
+execute BuildFormat texsis
binfiles arch=x86_64-linux size=1
bin/x86_64-linux/texsis
-binfiles arch=powerpc-darwin size=1
- bin/powerpc-darwin/texsis
name bin-texware
category TLCore
revision 5403
+depend bin-texware.ARCH
docfiles size=2
texmf/doc/man/man1/dvitype.1
texmf/doc/man/man1/pooltype.1
+
+name bin-texware.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for alpha-linux
+binfiles arch=alpha-linux size=40
+ bin/alpha-linux/dvitype
+ bin/alpha-linux/pooltype
+
+name bin-texware.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for hppa-hpux
+binfiles arch=hppa-hpux size=40
+ bin/hppa-hpux/dvitype
+ bin/hppa-hpux/pooltype
+
+name bin-texware.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for i386-darwin
+binfiles arch=i386-darwin size=34
+ bin/i386-darwin/dvitype
+ bin/i386-darwin/pooltype
+
+name bin-texware.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for i386-freebsd
+binfiles arch=i386-freebsd size=27
+ bin/i386-freebsd/dvitype
+ bin/i386-freebsd/pooltype
+
+name bin-texware.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for i386-linux
+binfiles arch=i386-linux size=24
+ bin/i386-linux/dvitype
+ bin/i386-linux/pooltype
+
+name bin-texware.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for i386-openbsd
binfiles arch=i386-openbsd size=27
bin/i386-openbsd/dvitype
bin/i386-openbsd/pooltype
+
+name bin-texware.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for i386-solaris
binfiles arch=i386-solaris size=29
bin/i386-solaris/dvitype
bin/i386-solaris/pooltype
-binfiles arch=i386-linux size=24
- bin/i386-linux/dvitype
- bin/i386-linux/pooltype
-binfiles arch=hppa-hpux size=40
- bin/hppa-hpux/dvitype
- bin/hppa-hpux/pooltype
+
+name bin-texware.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for mips-irix
binfiles arch=mips-irix size=50
bin/mips-irix/dvitype
bin/mips-irix/pooltype
-binfiles arch=alpha-linux size=40
- bin/alpha-linux/dvitype
- bin/alpha-linux/pooltype
+
+name bin-texware.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for powerpc-aix
+binfiles arch=powerpc-aix size=31
+ bin/powerpc-aix/dvitype
+ bin/powerpc-aix/pooltype
+
+name bin-texware.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for powerpc-darwin
+binfiles arch=powerpc-darwin size=33
+ bin/powerpc-darwin/dvitype
+ bin/powerpc-darwin/pooltype
+
+name bin-texware.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for powerpc-linux
+binfiles arch=powerpc-linux size=28
+ bin/powerpc-linux/dvitype
+ bin/powerpc-linux/pooltype
+
+name bin-texware.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for sparc-linux
binfiles arch=sparc-linux size=29
bin/sparc-linux/dvitype
bin/sparc-linux/pooltype
+
+name bin-texware.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for sparc-solaris
binfiles arch=sparc-solaris size=59
bin/sparc-solaris/dvitype
bin/sparc-solaris/pooltype
-binfiles arch=i386-freebsd size=27
- bin/i386-freebsd/dvitype
- bin/i386-freebsd/pooltype
+
+name bin-texware.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for win32
binfiles arch=win32 size=9
bin/win32/dvitype.exe
bin/win32/pooltype.exe
-binfiles arch=i386-darwin size=34
- bin/i386-darwin/dvitype
- bin/i386-darwin/pooltype
-binfiles arch=powerpc-linux size=28
- bin/powerpc-linux/dvitype
- bin/powerpc-linux/pooltype
-binfiles arch=powerpc-aix size=31
- bin/powerpc-aix/dvitype
- bin/powerpc-aix/pooltype
+
+name bin-texware.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-texware for x86_64-linux
binfiles arch=x86_64-linux size=30
bin/x86_64-linux/dvitype
bin/x86_64-linux/pooltype
-binfiles arch=powerpc-darwin size=33
- bin/powerpc-darwin/dvitype
- bin/powerpc-darwin/pooltype
name bin-thumbpdf
category TLCore
revision 5466
+depend bin-thumbpdf.ARCH
docfiles size=1
texmf/doc/man/man1/thumbpdf.1
runfiles size=11
texmf/scripts/thumbpdf/thumbpdf.pl
+
+name bin-thumbpdf.alpha-linux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for alpha-linux
+binfiles arch=alpha-linux size=11
+ bin/alpha-linux/thumbpdf
+
+name bin-thumbpdf.hppa-hpux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for hppa-hpux
+binfiles arch=hppa-hpux size=11
+ bin/hppa-hpux/thumbpdf
+
+name bin-thumbpdf.i386-darwin
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for i386-darwin
+binfiles arch=i386-darwin size=11
+ bin/i386-darwin/thumbpdf
+
+name bin-thumbpdf.i386-freebsd
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for i386-freebsd
+binfiles arch=i386-freebsd size=11
+ bin/i386-freebsd/thumbpdf
+
+name bin-thumbpdf.i386-linux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for i386-linux
+binfiles arch=i386-linux size=11
+ bin/i386-linux/thumbpdf
+
+name bin-thumbpdf.i386-openbsd
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for i386-openbsd
binfiles arch=i386-openbsd size=11
bin/i386-openbsd/thumbpdf
+
+name bin-thumbpdf.i386-solaris
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for i386-solaris
binfiles arch=i386-solaris size=11
bin/i386-solaris/thumbpdf
-binfiles arch=i386-linux size=11
- bin/i386-linux/thumbpdf
-binfiles arch=hppa-hpux size=11
- bin/hppa-hpux/thumbpdf
+
+name bin-thumbpdf.mips-irix
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for mips-irix
binfiles arch=mips-irix size=11
bin/mips-irix/thumbpdf
-binfiles arch=alpha-linux size=11
- bin/alpha-linux/thumbpdf
+
+name bin-thumbpdf.powerpc-aix
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for powerpc-aix
+binfiles arch=powerpc-aix size=11
+ bin/powerpc-aix/thumbpdf
+
+name bin-thumbpdf.powerpc-darwin
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for powerpc-darwin
+binfiles arch=powerpc-darwin size=11
+ bin/powerpc-darwin/thumbpdf
+
+name bin-thumbpdf.powerpc-linux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for powerpc-linux
+binfiles arch=powerpc-linux size=11
+ bin/powerpc-linux/thumbpdf
+
+name bin-thumbpdf.sparc-linux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for sparc-linux
binfiles arch=sparc-linux size=11
bin/sparc-linux/thumbpdf
+
+name bin-thumbpdf.sparc-solaris
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for sparc-solaris
binfiles arch=sparc-solaris size=11
bin/sparc-solaris/thumbpdf
-binfiles arch=i386-freebsd size=11
- bin/i386-freebsd/thumbpdf
+
+name bin-thumbpdf.win32
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for win32
binfiles arch=win32 size=2
bin/win32/thumbpdf.exe
-binfiles arch=i386-darwin size=11
- bin/i386-darwin/thumbpdf
-binfiles arch=powerpc-linux size=11
- bin/powerpc-linux/thumbpdf
-binfiles arch=powerpc-aix size=11
- bin/powerpc-aix/thumbpdf
+
+name bin-thumbpdf.x86_64-linux
+category TLCore
+revision 5466
+shortdesc binary files of bin-thumbpdf for x86_64-linux
binfiles arch=x86_64-linux size=11
bin/x86_64-linux/thumbpdf
-binfiles arch=powerpc-darwin size=11
- bin/powerpc-darwin/thumbpdf
name bin-tie
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-tie.ARCH
docfiles size=1
texmf/doc/man/man1/tie.1
+
+name bin-tie.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for alpha-linux
+binfiles arch=alpha-linux size=5
+ bin/alpha-linux/tie
+
+name bin-tie.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for hppa-hpux
+binfiles arch=hppa-hpux size=7
+ bin/hppa-hpux/tie
+
+name bin-tie.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for i386-darwin
+binfiles arch=i386-darwin size=5
+ bin/i386-darwin/tie
+
+name bin-tie.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/tie
+
+name bin-tie.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/tie
+
+name bin-tie.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/tie
+
+name bin-tie.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/tie
-binfiles arch=i386-linux size=3
- bin/i386-linux/tie
-binfiles arch=hppa-hpux size=7
- bin/hppa-hpux/tie
+
+name bin-tie.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for mips-irix
binfiles arch=mips-irix size=5
bin/mips-irix/tie
-binfiles arch=alpha-linux size=5
- bin/alpha-linux/tie
+
+name bin-tie.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/tie
+
+name bin-tie.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for powerpc-darwin
+binfiles arch=powerpc-darwin size=5
+ bin/powerpc-darwin/tie
+
+name bin-tie.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/tie
+
+name bin-tie.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/tie
+
+name bin-tie.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for sparc-solaris
binfiles arch=sparc-solaris size=4
bin/sparc-solaris/tie
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/tie
+
+name bin-tie.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for win32
binfiles arch=win32 size=2
bin/win32/tie.exe
-binfiles arch=i386-darwin size=5
- bin/i386-darwin/tie
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/tie
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/tie
+
+name bin-tie.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tie for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/tie
-binfiles arch=powerpc-darwin size=5
- bin/powerpc-darwin/tie
name bin-tifftools
category TLCore
revision 5403
+depend bin-tifftools.ARCH
+
+name bin-tifftools.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for alpha-linux
+
+name bin-tifftools.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for hppa-hpux
+
+name bin-tifftools.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for i386-darwin
+
+name bin-tifftools.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for i386-freebsd
+
+name bin-tifftools.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for i386-linux
+
+name bin-tifftools.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for i386-openbsd
+
+name bin-tifftools.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for i386-solaris
+
+name bin-tifftools.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for mips-irix
+
+name bin-tifftools.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for powerpc-aix
+
+name bin-tifftools.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for powerpc-darwin
+
+name bin-tifftools.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for powerpc-linux
+
+name bin-tifftools.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for sparc-linux
+
+name bin-tifftools.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for sparc-solaris
+
+name bin-tifftools.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for win32
binfiles arch=win32 size=76
bin/win32/tiff2png.exe
+name bin-tifftools.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-tifftools for x86_64-linux
+
name bin-tpic2pdftex
category TLCore
revision 3920
+depend bin-tpic2pdftex.ARCH
docfiles size=20
texmf/doc/tpic2pdftex/Makefile
texmf/doc/tpic2pdftex/beamerexample.pdf
texmf/doc/tpic2pdftex/beamerexample.pic
texmf/doc/tpic2pdftex/example.pdf
texmf/doc/tpic2pdftex/example.pic
+
+name bin-tpic2pdftex.alpha-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/tpic2pdftex
+
+name bin-tpic2pdftex.hppa-hpux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/tpic2pdftex
+
+name bin-tpic2pdftex.i386-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/tpic2pdftex
+
+name bin-tpic2pdftex.i386-freebsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/tpic2pdftex
+
+name bin-tpic2pdftex.i386-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/tpic2pdftex
+
+name bin-tpic2pdftex.i386-openbsd
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/tpic2pdftex
+
+name bin-tpic2pdftex.i386-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/tpic2pdftex
-binfiles arch=i386-linux size=3
- bin/i386-linux/tpic2pdftex
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/tpic2pdftex
+
+name bin-tpic2pdftex.mips-irix
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/tpic2pdftex
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/tpic2pdftex
+
+name bin-tpic2pdftex.powerpc-aix
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/tpic2pdftex
+
+name bin-tpic2pdftex.powerpc-darwin
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/tpic2pdftex
+
+name bin-tpic2pdftex.powerpc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/tpic2pdftex
+
+name bin-tpic2pdftex.sparc-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/tpic2pdftex
+
+name bin-tpic2pdftex.sparc-solaris
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/tpic2pdftex
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/tpic2pdftex
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/tpic2pdftex
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/tpic2pdftex
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/tpic2pdftex
+
+name bin-tpic2pdftex.win32
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for win32
+
+name bin-tpic2pdftex.x86_64-linux
+category TLCore
+revision 3920
+shortdesc binary files of bin-tpic2pdftex for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/tpic2pdftex
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/tpic2pdftex
name bin-ttf2pt1
category TLCore
revision 5403
+depend bin-ttf2pt1.ARCH
docfiles size=8
texmf/doc/man/man1/ttf2pt1.1
+
+name bin-ttf2pt1.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for alpha-linux
+
+name bin-ttf2pt1.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for hppa-hpux
+
+name bin-ttf2pt1.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for i386-darwin
+
+name bin-ttf2pt1.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for i386-freebsd
+
+name bin-ttf2pt1.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for i386-linux
+
+name bin-ttf2pt1.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for i386-openbsd
+
+name bin-ttf2pt1.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for i386-solaris
+
+name bin-ttf2pt1.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for mips-irix
+
+name bin-ttf2pt1.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for powerpc-aix
+
+name bin-ttf2pt1.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for powerpc-darwin
+
+name bin-ttf2pt1.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for powerpc-linux
+
+name bin-ttf2pt1.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for sparc-linux
+
+name bin-ttf2pt1.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for sparc-solaris
+
+name bin-ttf2pt1.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for win32
binfiles arch=win32 size=107
bin/win32/ttf2pt1.exe
+name bin-ttf2pt1.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttf2pt1 for x86_64-linux
+
name bin-ttfutils
category TLCore
revision 5403
+depend bin-ttfutils.ARCH
docfiles size=29
texmf/doc/man/man1/ttf2afm.1
texmf/doc/man/man1/ttf2pk.1
@@ -15298,167 +21588,541 @@ runfiles size=221
texmf/fonts/sfd/Unicode.sfd
texmf/ttf2pk/VPS.rpl
texmf/ttf2pk/ttf2pk.cfg
+
+name bin-ttfutils.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for alpha-linux
+binfiles arch=alpha-linux size=201
+ bin/alpha-linux/ttf2afm
+ bin/alpha-linux/ttf2pk
+ bin/alpha-linux/ttf2tfm
+
+name bin-ttfutils.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for hppa-hpux
+binfiles arch=hppa-hpux size=165
+ bin/hppa-hpux/ttf2afm
+ bin/hppa-hpux/ttf2pk
+ bin/hppa-hpux/ttf2tfm
+
+name bin-ttfutils.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for i386-darwin
+binfiles arch=i386-darwin size=142
+ bin/i386-darwin/ttf2afm
+ bin/i386-darwin/ttf2pk
+ bin/i386-darwin/ttf2tfm
+
+name bin-ttfutils.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for i386-freebsd
+binfiles arch=i386-freebsd size=125
+ bin/i386-freebsd/ttf2afm
+ bin/i386-freebsd/ttf2pk
+ bin/i386-freebsd/ttf2tfm
+
+name bin-ttfutils.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for i386-linux
+binfiles arch=i386-linux size=121
+ bin/i386-linux/ttf2afm
+ bin/i386-linux/ttf2pk
+ bin/i386-linux/ttf2tfm
+
+name bin-ttfutils.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for i386-openbsd
binfiles arch=i386-openbsd size=124
bin/i386-openbsd/ttf2afm
bin/i386-openbsd/ttf2pk
bin/i386-openbsd/ttf2tfm
+
+name bin-ttfutils.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for i386-solaris
binfiles arch=i386-solaris size=132
bin/i386-solaris/ttf2afm
bin/i386-solaris/ttf2pk
bin/i386-solaris/ttf2tfm
-binfiles arch=i386-linux size=121
- bin/i386-linux/ttf2afm
- bin/i386-linux/ttf2pk
- bin/i386-linux/ttf2tfm
-binfiles arch=hppa-hpux size=165
- bin/hppa-hpux/ttf2afm
- bin/hppa-hpux/ttf2pk
- bin/hppa-hpux/ttf2tfm
+
+name bin-ttfutils.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for mips-irix
binfiles arch=mips-irix size=229
bin/mips-irix/ttf2afm
bin/mips-irix/ttf2pk
bin/mips-irix/ttf2tfm
-binfiles arch=alpha-linux size=201
- bin/alpha-linux/ttf2afm
- bin/alpha-linux/ttf2pk
- bin/alpha-linux/ttf2tfm
+
+name bin-ttfutils.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for powerpc-aix
+binfiles arch=powerpc-aix size=173
+ bin/powerpc-aix/ttf2afm
+ bin/powerpc-aix/ttf2pk
+ bin/powerpc-aix/ttf2tfm
+
+name bin-ttfutils.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for powerpc-darwin
+binfiles arch=powerpc-darwin size=134
+ bin/powerpc-darwin/ttf2afm
+ bin/powerpc-darwin/ttf2pk
+ bin/powerpc-darwin/ttf2tfm
+
+name bin-ttfutils.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for powerpc-linux
+binfiles arch=powerpc-linux size=136
+ bin/powerpc-linux/ttf2afm
+ bin/powerpc-linux/ttf2pk
+ bin/powerpc-linux/ttf2tfm
+
+name bin-ttfutils.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for sparc-linux
binfiles arch=sparc-linux size=139
bin/sparc-linux/ttf2afm
bin/sparc-linux/ttf2pk
bin/sparc-linux/ttf2tfm
+
+name bin-ttfutils.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for sparc-solaris
binfiles arch=sparc-solaris size=208
bin/sparc-solaris/ttf2afm
bin/sparc-solaris/ttf2pk
bin/sparc-solaris/ttf2tfm
-binfiles arch=i386-freebsd size=125
- bin/i386-freebsd/ttf2afm
- bin/i386-freebsd/ttf2pk
- bin/i386-freebsd/ttf2tfm
+
+name bin-ttfutils.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for win32
binfiles arch=win32 size=83
bin/win32/ttf2afm.exe
bin/win32/ttf2pk.exe
bin/win32/ttf2tfm.exe
bin/win32/ttfdump.exe
-binfiles arch=i386-darwin size=142
- bin/i386-darwin/ttf2afm
- bin/i386-darwin/ttf2pk
- bin/i386-darwin/ttf2tfm
-binfiles arch=powerpc-linux size=136
- bin/powerpc-linux/ttf2afm
- bin/powerpc-linux/ttf2pk
- bin/powerpc-linux/ttf2tfm
-binfiles arch=powerpc-aix size=173
- bin/powerpc-aix/ttf2afm
- bin/powerpc-aix/ttf2pk
- bin/powerpc-aix/ttf2tfm
+
+name bin-ttfutils.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-ttfutils for x86_64-linux
binfiles arch=x86_64-linux size=155
bin/x86_64-linux/ttf2afm
bin/x86_64-linux/ttf2pk
bin/x86_64-linux/ttf2tfm
-binfiles arch=powerpc-darwin size=134
- bin/powerpc-darwin/ttf2afm
- bin/powerpc-darwin/ttf2pk
- bin/powerpc-darwin/ttf2tfm
name bin-vlna
category TLCore
revision 5403
+depend bin-vlna.ARCH
+
+name bin-vlna.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for alpha-linux
+
+name bin-vlna.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for hppa-hpux
+
+name bin-vlna.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for i386-darwin
+
+name bin-vlna.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for i386-freebsd
+
+name bin-vlna.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for i386-linux
+
+name bin-vlna.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for i386-openbsd
+
+name bin-vlna.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for i386-solaris
+
+name bin-vlna.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for mips-irix
+
+name bin-vlna.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for powerpc-aix
+
+name bin-vlna.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for powerpc-darwin
+
+name bin-vlna.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for powerpc-linux
+
+name bin-vlna.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for sparc-linux
+
+name bin-vlna.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for sparc-solaris
+
+name bin-vlna.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for win32
binfiles arch=win32 size=3
bin/win32/vlna.exe
+name bin-vlna.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-vlna for x86_64-linux
+
name bin-vpe
category TLCore
revision 5402
depend vpe
+depend bin-vpe.ARCH
runfiles size=3
texmf/scripts/vpe/vpe.pl
+
+name bin-vpe.alpha-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for alpha-linux
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/vpe
+
+name bin-vpe.hppa-hpux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for hppa-hpux
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/vpe
+
+name bin-vpe.i386-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for i386-darwin
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/vpe
+
+name bin-vpe.i386-freebsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for i386-freebsd
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/vpe
+
+name bin-vpe.i386-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for i386-linux
+binfiles arch=i386-linux size=3
+ bin/i386-linux/vpe
+
+name bin-vpe.i386-openbsd
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for i386-openbsd
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/vpe
+
+name bin-vpe.i386-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for i386-solaris
binfiles arch=i386-solaris size=3
bin/i386-solaris/vpe
-binfiles arch=i386-linux size=3
- bin/i386-linux/vpe
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/vpe
+
+name bin-vpe.mips-irix
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for mips-irix
binfiles arch=mips-irix size=3
bin/mips-irix/vpe
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/vpe
+
+name bin-vpe.powerpc-aix
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for powerpc-aix
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/vpe
+
+name bin-vpe.powerpc-darwin
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for powerpc-darwin
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/vpe
+
+name bin-vpe.powerpc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for powerpc-linux
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/vpe
+
+name bin-vpe.sparc-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for sparc-linux
binfiles arch=sparc-linux size=3
bin/sparc-linux/vpe
+
+name bin-vpe.sparc-solaris
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for sparc-solaris
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/vpe
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/vpe
+
+name bin-vpe.win32
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for win32
binfiles arch=win32 size=2
bin/win32/vpe.exe
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/vpe
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/vpe
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/vpe
+
+name bin-vpe.x86_64-linux
+category TLCore
+revision 5402
+shortdesc binary files of bin-vpe for x86_64-linux
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/vpe
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/vpe
name bin-web
category TLCore
revision 5403
depend bin-kpathsea
+depend bin-web.ARCH
docfiles size=3
texmf/doc/man/man1/tangle.1
texmf/doc/man/man1/weave.1
+
+name bin-web.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for alpha-linux
+binfiles arch=alpha-linux size=78
+ bin/alpha-linux/tangle
+ bin/alpha-linux/weave
+
+name bin-web.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for hppa-hpux
+binfiles arch=hppa-hpux size=69
+ bin/hppa-hpux/tangle
+ bin/hppa-hpux/weave
+
+name bin-web.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for i386-darwin
+binfiles arch=i386-darwin size=58
+ bin/i386-darwin/tangle
+ bin/i386-darwin/weave
+
+name bin-web.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for i386-freebsd
+binfiles arch=i386-freebsd size=50
+ bin/i386-freebsd/tangle
+ bin/i386-freebsd/weave
+
+name bin-web.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for i386-linux
+binfiles arch=i386-linux size=44
+ bin/i386-linux/tangle
+ bin/i386-linux/weave
+
+name bin-web.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for i386-openbsd
binfiles arch=i386-openbsd size=48
bin/i386-openbsd/tangle
bin/i386-openbsd/weave
+
+name bin-web.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for i386-solaris
binfiles arch=i386-solaris size=52
bin/i386-solaris/tangle
bin/i386-solaris/weave
-binfiles arch=i386-linux size=44
- bin/i386-linux/tangle
- bin/i386-linux/weave
-binfiles arch=hppa-hpux size=69
- bin/hppa-hpux/tangle
- bin/hppa-hpux/weave
+
+name bin-web.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for mips-irix
binfiles arch=mips-irix size=91
bin/mips-irix/tangle
bin/mips-irix/weave
-binfiles arch=alpha-linux size=78
- bin/alpha-linux/tangle
- bin/alpha-linux/weave
+
+name bin-web.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for powerpc-aix
+binfiles arch=powerpc-aix size=61
+ bin/powerpc-aix/tangle
+ bin/powerpc-aix/weave
+
+name bin-web.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for powerpc-darwin
+binfiles arch=powerpc-darwin size=58
+ bin/powerpc-darwin/tangle
+ bin/powerpc-darwin/weave
+
+name bin-web.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for powerpc-linux
+binfiles arch=powerpc-linux size=55
+ bin/powerpc-linux/tangle
+ bin/powerpc-linux/weave
+
+name bin-web.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for sparc-linux
binfiles arch=sparc-linux size=54
bin/sparc-linux/tangle
bin/sparc-linux/weave
+
+name bin-web.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for sparc-solaris
binfiles arch=sparc-solaris size=99
bin/sparc-solaris/tangle
bin/sparc-solaris/weave
-binfiles arch=i386-freebsd size=50
- bin/i386-freebsd/tangle
- bin/i386-freebsd/weave
+
+name bin-web.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for win32
binfiles arch=win32 size=19
bin/win32/tangle.exe
bin/win32/weave.exe
-binfiles arch=i386-darwin size=58
- bin/i386-darwin/tangle
- bin/i386-darwin/weave
-binfiles arch=powerpc-linux size=55
- bin/powerpc-linux/tangle
- bin/powerpc-linux/weave
-binfiles arch=powerpc-aix size=61
- bin/powerpc-aix/tangle
- bin/powerpc-aix/weave
+
+name bin-web.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-web for x86_64-linux
binfiles arch=x86_64-linux size=55
bin/x86_64-linux/tangle
bin/x86_64-linux/weave
-binfiles arch=powerpc-darwin size=58
- bin/powerpc-darwin/tangle
- bin/powerpc-darwin/weave
name bin-winutils
category TLCore
revision 5403
+depend bin-winutils.ARCH
+
+name bin-winutils.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for alpha-linux
+
+name bin-winutils.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for hppa-hpux
+
+name bin-winutils.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for i386-darwin
+
+name bin-winutils.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for i386-freebsd
+
+name bin-winutils.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for i386-linux
+
+name bin-winutils.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for i386-openbsd
+
+name bin-winutils.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for i386-solaris
+
+name bin-winutils.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for mips-irix
+
+name bin-winutils.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for powerpc-aix
+
+name bin-winutils.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for powerpc-darwin
+
+name bin-winutils.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for powerpc-linux
+
+name bin-winutils.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for sparc-linux
+
+name bin-winutils.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for sparc-solaris
+
+name bin-winutils.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for win32
binfiles arch=win32 size=576
bin/win32/aftopl.exe
bin/win32/bmeps.exe
@@ -15477,16 +22141,98 @@ binfiles arch=win32 size=576
bin/win32/unzip.exe
bin/win32/wget.exe
+name bin-winutils.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-winutils for x86_64-linux
+
name bin-wordcount
category TLCore
revision 4713
depend wordcount
+depend bin-wordcount.ARCH
+
+name bin-wordcount.alpha-linux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for alpha-linux
+
+name bin-wordcount.hppa-hpux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for hppa-hpux
+
+name bin-wordcount.i386-darwin
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for i386-darwin
+
+name bin-wordcount.i386-freebsd
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for i386-freebsd
+
+name bin-wordcount.i386-linux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for i386-linux
binfiles arch=i386-linux size=1
bin/i386-linux/wordcount.sh
+name bin-wordcount.i386-openbsd
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for i386-openbsd
+
+name bin-wordcount.i386-solaris
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for i386-solaris
+
+name bin-wordcount.mips-irix
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for mips-irix
+
+name bin-wordcount.powerpc-aix
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for powerpc-aix
+
+name bin-wordcount.powerpc-darwin
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for powerpc-darwin
+
+name bin-wordcount.powerpc-linux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for powerpc-linux
+
+name bin-wordcount.sparc-linux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for sparc-linux
+
+name bin-wordcount.sparc-solaris
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for sparc-solaris
+
+name bin-wordcount.win32
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for win32
+
+name bin-wordcount.x86_64-linux
+category TLCore
+revision 4713
+shortdesc binary files of bin-wordcount for x86_64-linux
+
name bin-xdvi
category TLCore
revision 5391
+depend bin-xdvi.ARCH
docfiles size=33
texmf/doc/man/man1/oxdvi.1
texmf/doc/man/man1/xdvi.1
@@ -15496,120 +22242,300 @@ runfiles size=9
texmf/xdvi/pixmaps/toolbar.xpm
texmf/xdvi/pixmaps/toolbar2.xpm
texmf/xdvi/xdvi.cfg
+
+name bin-xdvi.alpha-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for alpha-linux
+binfiles arch=alpha-linux size=274
+ bin/alpha-linux/oxdvi
+ bin/alpha-linux/xdvi
+ bin/alpha-linux/xdvi-xaw.bin
+ bin/alpha-linux/xdvizilla
+
+name bin-xdvi.hppa-hpux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for hppa-hpux
+binfiles arch=hppa-hpux size=237
+ bin/hppa-hpux/oxdvi
+ bin/hppa-hpux/xdvi
+ bin/hppa-hpux/xdvi-xaw.bin
+ bin/hppa-hpux/xdvizilla
+
+name bin-xdvi.i386-darwin
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for i386-darwin
+binfiles arch=i386-darwin size=210
+ bin/i386-darwin/oxdvi
+ bin/i386-darwin/xdvi
+ bin/i386-darwin/xdvi-xaw.bin
+ bin/i386-darwin/xdvizilla
+
+name bin-xdvi.i386-freebsd
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for i386-freebsd
+binfiles arch=i386-freebsd size=178
+ bin/i386-freebsd/oxdvi
+ bin/i386-freebsd/xdvi
+ bin/i386-freebsd/xdvi-xaw.bin
+ bin/i386-freebsd/xdvizilla
+
+name bin-xdvi.i386-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for i386-linux
+binfiles arch=i386-linux size=176
+ bin/i386-linux/oxdvi
+ bin/i386-linux/xdvi
+ bin/i386-linux/xdvi-xaw.bin
+ bin/i386-linux/xdvizilla
+
+name bin-xdvi.i386-openbsd
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for i386-openbsd
binfiles arch=i386-openbsd size=180
bin/i386-openbsd/oxdvi
bin/i386-openbsd/xdvi
bin/i386-openbsd/xdvi-xaw.bin
bin/i386-openbsd/xdvizilla
+
+name bin-xdvi.i386-solaris
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for i386-solaris
binfiles arch=i386-solaris size=191
bin/i386-solaris/oxdvi
bin/i386-solaris/xdvi
bin/i386-solaris/xdvi-xaw.bin
bin/i386-solaris/xdvizilla
-binfiles arch=i386-linux size=176
- bin/i386-linux/oxdvi
- bin/i386-linux/xdvi
- bin/i386-linux/xdvi-xaw.bin
- bin/i386-linux/xdvizilla
-binfiles arch=hppa-hpux size=237
- bin/hppa-hpux/oxdvi
- bin/hppa-hpux/xdvi
- bin/hppa-hpux/xdvi-xaw.bin
- bin/hppa-hpux/xdvizilla
+
+name bin-xdvi.mips-irix
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for mips-irix
binfiles arch=mips-irix size=308
bin/mips-irix/oxdvi
bin/mips-irix/xdvi
bin/mips-irix/xdvi-motif.bin
bin/mips-irix/xdvizilla
-binfiles arch=alpha-linux size=274
- bin/alpha-linux/oxdvi
- bin/alpha-linux/xdvi
- bin/alpha-linux/xdvi-xaw.bin
- bin/alpha-linux/xdvizilla
+
+name bin-xdvi.powerpc-aix
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for powerpc-aix
+binfiles arch=powerpc-aix size=248
+ bin/powerpc-aix/oxdvi
+ bin/powerpc-aix/xdvi
+ bin/powerpc-aix/xdvi-motif.bin
+ bin/powerpc-aix/xdvizilla
+
+name bin-xdvi.powerpc-darwin
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for powerpc-darwin
+binfiles arch=powerpc-darwin size=206
+ bin/powerpc-darwin/oxdvi
+ bin/powerpc-darwin/xdvi
+ bin/powerpc-darwin/xdvi-xaw.bin
+ bin/powerpc-darwin/xdvizilla
+
+name bin-xdvi.powerpc-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for powerpc-linux
+binfiles arch=powerpc-linux size=208
+ bin/powerpc-linux/oxdvi
+ bin/powerpc-linux/xdvi
+ bin/powerpc-linux/xdvi-xaw.bin
+ bin/powerpc-linux/xdvizilla
+
+name bin-xdvi.sparc-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for sparc-linux
binfiles arch=sparc-linux size=198
bin/sparc-linux/oxdvi
bin/sparc-linux/xdvi
bin/sparc-linux/xdvi-xaw.bin
bin/sparc-linux/xdvizilla
+
+name bin-xdvi.sparc-solaris
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for sparc-solaris
binfiles arch=sparc-solaris size=305
bin/sparc-solaris/oxdvi
bin/sparc-solaris/xdvi
bin/sparc-solaris/xdvi-motif.bin
bin/sparc-solaris/xdvizilla
-binfiles arch=i386-freebsd size=178
- bin/i386-freebsd/oxdvi
- bin/i386-freebsd/xdvi
- bin/i386-freebsd/xdvi-xaw.bin
- bin/i386-freebsd/xdvizilla
-binfiles arch=i386-darwin size=210
- bin/i386-darwin/oxdvi
- bin/i386-darwin/xdvi
- bin/i386-darwin/xdvi-xaw.bin
- bin/i386-darwin/xdvizilla
-binfiles arch=powerpc-linux size=208
- bin/powerpc-linux/oxdvi
- bin/powerpc-linux/xdvi
- bin/powerpc-linux/xdvi-xaw.bin
- bin/powerpc-linux/xdvizilla
-binfiles arch=powerpc-aix size=248
- bin/powerpc-aix/oxdvi
- bin/powerpc-aix/xdvi
- bin/powerpc-aix/xdvi-motif.bin
- bin/powerpc-aix/xdvizilla
+
+name bin-xdvi.win32
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for win32
+
+name bin-xdvi.x86_64-linux
+category TLCore
+revision 5391
+shortdesc binary files of bin-xdvi for x86_64-linux
binfiles arch=x86_64-linux size=218
bin/x86_64-linux/oxdvi
bin/x86_64-linux/xdvi
bin/x86_64-linux/xdvi-xaw.bin
bin/x86_64-linux/xdvizilla
-binfiles arch=powerpc-darwin size=206
- bin/powerpc-darwin/oxdvi
- bin/powerpc-darwin/xdvi
- bin/powerpc-darwin/xdvi-xaw.bin
- bin/powerpc-darwin/xdvizilla
name bin-xetex
category TLCore
revision 5403
+depend bin-xetex.ARCH
execute BuildFormat xetex
runfiles size=9
texmf/fmtutil/format.xetex.cnf
texmf/web2c/xetex.pool
+
+name bin-xetex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for alpha-linux
+execute BuildFormat xetex
+binfiles arch=alpha-linux size=2674
+ bin/alpha-linux/xdvipdfmx
+ bin/alpha-linux/xelatex
+ bin/alpha-linux/xetex
+
+name bin-xetex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for hppa-hpux
+execute BuildFormat xetex
+binfiles arch=hppa-hpux size=2439
+ bin/hppa-hpux/xdvipdfmx
+ bin/hppa-hpux/xelatex
+ bin/hppa-hpux/xetex
+
+name bin-xetex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for i386-darwin
+execute BuildFormat xetex
+binfiles arch=i386-darwin size=2167
+ bin/i386-darwin/T1Wrap
+ bin/i386-darwin/xdv2pdf
+ bin/i386-darwin/xdvipdfmx
+ bin/i386-darwin/xelatex
+ bin/i386-darwin/xetex
+
+name bin-xetex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for i386-freebsd
+execute BuildFormat xetex
+binfiles arch=i386-freebsd size=2149
+ bin/i386-freebsd/xdvipdfmx
+ bin/i386-freebsd/xelatex
+ bin/i386-freebsd/xetex
+
+name bin-xetex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for i386-linux
+execute BuildFormat xetex
+binfiles arch=i386-linux size=2216
+ bin/i386-linux/xdvipdfmx
+ bin/i386-linux/xelatex
+ bin/i386-linux/xetex
+
+name bin-xetex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for i386-openbsd
+execute BuildFormat xetex
binfiles arch=i386-openbsd size=2064
bin/i386-openbsd/xdvipdfmx
bin/i386-openbsd/xelatex
bin/i386-openbsd/xetex
+
+name bin-xetex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for i386-solaris
+execute BuildFormat xetex
binfiles arch=i386-solaris size=2310
bin/i386-solaris/xdvipdfmx
bin/i386-solaris/xelatex
bin/i386-solaris/xetex
-binfiles arch=i386-linux size=2216
- bin/i386-linux/xdvipdfmx
- bin/i386-linux/xelatex
- bin/i386-linux/xetex
-binfiles arch=hppa-hpux size=2439
- bin/hppa-hpux/xdvipdfmx
- bin/hppa-hpux/xelatex
- bin/hppa-hpux/xetex
+
+name bin-xetex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for mips-irix
+execute BuildFormat xetex
binfiles arch=mips-irix size=2697
bin/mips-irix/xdvipdfmx
bin/mips-irix/xelatex
bin/mips-irix/xetex
-binfiles arch=alpha-linux size=2674
- bin/alpha-linux/xdvipdfmx
- bin/alpha-linux/xelatex
- bin/alpha-linux/xetex
+
+name bin-xetex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for powerpc-aix
+execute BuildFormat xetex
+binfiles arch=powerpc-aix size=2438
+ bin/powerpc-aix/xdvipdfmx
+ bin/powerpc-aix/xelatex
+ bin/powerpc-aix/xetex
+
+name bin-xetex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for powerpc-darwin
+execute BuildFormat xetex
+binfiles arch=powerpc-darwin size=2179
+ bin/powerpc-darwin/T1Wrap
+ bin/powerpc-darwin/xdv2pdf
+ bin/powerpc-darwin/xdvipdfmx
+ bin/powerpc-darwin/xelatex
+ bin/powerpc-darwin/xetex
+
+name bin-xetex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for powerpc-linux
+execute BuildFormat xetex
+binfiles arch=powerpc-linux size=2284
+ bin/powerpc-linux/xdvipdfmx
+ bin/powerpc-linux/xelatex
+ bin/powerpc-linux/xetex
+
+name bin-xetex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for sparc-linux
+execute BuildFormat xetex
binfiles arch=sparc-linux size=2237
bin/sparc-linux/xdvipdfmx
bin/sparc-linux/xelatex
bin/sparc-linux/xetex
+
+name bin-xetex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for sparc-solaris
+execute BuildFormat xetex
binfiles arch=sparc-solaris size=2506
bin/sparc-solaris/xdvipdfmx
bin/sparc-solaris/xelatex
bin/sparc-solaris/xetex
-binfiles arch=i386-freebsd size=2149
- bin/i386-freebsd/xdvipdfmx
- bin/i386-freebsd/xelatex
- bin/i386-freebsd/xetex
+
+name bin-xetex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for win32
+execute BuildFormat xetex
binfiles arch=win32 size=3688
bin/win32/TECkit_x86.dll
bin/win32/cache/readme.txt
@@ -15654,102 +22580,250 @@ binfiles arch=win32 size=3688
bin/win32/xelatex.exe
bin/win32/xetex.dll
bin/win32/xetex.exe
-binfiles arch=i386-darwin size=2167
- bin/i386-darwin/T1Wrap
- bin/i386-darwin/xdv2pdf
- bin/i386-darwin/xdvipdfmx
- bin/i386-darwin/xelatex
- bin/i386-darwin/xetex
-binfiles arch=powerpc-linux size=2284
- bin/powerpc-linux/xdvipdfmx
- bin/powerpc-linux/xelatex
- bin/powerpc-linux/xetex
-binfiles arch=powerpc-aix size=2438
- bin/powerpc-aix/xdvipdfmx
- bin/powerpc-aix/xelatex
- bin/powerpc-aix/xetex
+
+name bin-xetex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xetex for x86_64-linux
+execute BuildFormat xetex
binfiles arch=x86_64-linux size=2407
bin/x86_64-linux/xdvipdfmx
bin/x86_64-linux/xelatex
bin/x86_64-linux/xetex
-binfiles arch=powerpc-darwin size=2179
- bin/powerpc-darwin/T1Wrap
- bin/powerpc-darwin/xdv2pdf
- bin/powerpc-darwin/xdvipdfmx
- bin/powerpc-darwin/xelatex
- bin/powerpc-darwin/xetex
name bin-xmltex
category TLCore
revision 5403
depend bin-pdftex
depend bin-tex
+depend bin-xmltex.ARCH
execute BuildFormat xmltex
runfiles size=1
texmf/fmtutil/format.xmltex.cnf
+
+name bin-xmltex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for alpha-linux
+execute BuildFormat xmltex
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/giftopng
+ bin/alpha-linux/pdfxmltex
+ bin/alpha-linux/xmltex
+
+name bin-xmltex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for hppa-hpux
+execute BuildFormat xmltex
+binfiles arch=hppa-hpux size=3
+ bin/hppa-hpux/giftopng
+ bin/hppa-hpux/pdfxmltex
+ bin/hppa-hpux/xmltex
+
+name bin-xmltex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for i386-darwin
+execute BuildFormat xmltex
+binfiles arch=i386-darwin size=3
+ bin/i386-darwin/giftopng
+ bin/i386-darwin/pdfxmltex
+ bin/i386-darwin/xmltex
+
+name bin-xmltex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for i386-freebsd
+execute BuildFormat xmltex
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/giftopng
+ bin/i386-freebsd/pdfxmltex
+ bin/i386-freebsd/xmltex
+
+name bin-xmltex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for i386-linux
+execute BuildFormat xmltex
+binfiles arch=i386-linux size=3
+ bin/i386-linux/giftopng
+ bin/i386-linux/pdfxmltex
+ bin/i386-linux/xmltex
+
+name bin-xmltex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for i386-openbsd
+execute BuildFormat xmltex
binfiles arch=i386-openbsd size=3
bin/i386-openbsd/giftopng
bin/i386-openbsd/pdfxmltex
bin/i386-openbsd/xmltex
+
+name bin-xmltex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for i386-solaris
+execute BuildFormat xmltex
binfiles arch=i386-solaris size=3
bin/i386-solaris/giftopng
bin/i386-solaris/pdfxmltex
bin/i386-solaris/xmltex
-binfiles arch=i386-linux size=3
- bin/i386-linux/giftopng
- bin/i386-linux/pdfxmltex
- bin/i386-linux/xmltex
-binfiles arch=hppa-hpux size=3
- bin/hppa-hpux/giftopng
- bin/hppa-hpux/pdfxmltex
- bin/hppa-hpux/xmltex
+
+name bin-xmltex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for mips-irix
+execute BuildFormat xmltex
binfiles arch=mips-irix size=3
bin/mips-irix/giftopng
bin/mips-irix/pdfxmltex
bin/mips-irix/xmltex
-binfiles arch=alpha-linux size=3
- bin/alpha-linux/giftopng
- bin/alpha-linux/pdfxmltex
- bin/alpha-linux/xmltex
+
+name bin-xmltex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for powerpc-aix
+execute BuildFormat xmltex
+binfiles arch=powerpc-aix size=3
+ bin/powerpc-aix/giftopng
+ bin/powerpc-aix/pdfxmltex
+ bin/powerpc-aix/xmltex
+
+name bin-xmltex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for powerpc-darwin
+execute BuildFormat xmltex
+binfiles arch=powerpc-darwin size=3
+ bin/powerpc-darwin/giftopng
+ bin/powerpc-darwin/pdfxmltex
+ bin/powerpc-darwin/xmltex
+
+name bin-xmltex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for powerpc-linux
+execute BuildFormat xmltex
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/giftopng
+ bin/powerpc-linux/pdfxmltex
+ bin/powerpc-linux/xmltex
+
+name bin-xmltex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for sparc-linux
+execute BuildFormat xmltex
binfiles arch=sparc-linux size=3
bin/sparc-linux/giftopng
bin/sparc-linux/pdfxmltex
bin/sparc-linux/xmltex
+
+name bin-xmltex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for sparc-solaris
+execute BuildFormat xmltex
binfiles arch=sparc-solaris size=3
bin/sparc-solaris/giftopng
bin/sparc-solaris/pdfxmltex
bin/sparc-solaris/xmltex
-binfiles arch=i386-freebsd size=3
- bin/i386-freebsd/giftopng
- bin/i386-freebsd/pdfxmltex
- bin/i386-freebsd/xmltex
+
+name bin-xmltex.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for win32
+execute BuildFormat xmltex
binfiles arch=win32 size=2
bin/win32/pdfxmltex.exe
bin/win32/xmltex.exe
-binfiles arch=i386-darwin size=3
- bin/i386-darwin/giftopng
- bin/i386-darwin/pdfxmltex
- bin/i386-darwin/xmltex
-binfiles arch=powerpc-linux size=3
- bin/powerpc-linux/giftopng
- bin/powerpc-linux/pdfxmltex
- bin/powerpc-linux/xmltex
-binfiles arch=powerpc-aix size=3
- bin/powerpc-aix/giftopng
- bin/powerpc-aix/pdfxmltex
- bin/powerpc-aix/xmltex
+
+name bin-xmltex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xmltex for x86_64-linux
+execute BuildFormat xmltex
binfiles arch=x86_64-linux size=3
bin/x86_64-linux/giftopng
bin/x86_64-linux/pdfxmltex
bin/x86_64-linux/xmltex
-binfiles arch=powerpc-darwin size=3
- bin/powerpc-darwin/giftopng
- bin/powerpc-darwin/pdfxmltex
- bin/powerpc-darwin/xmltex
name bin-xpdf
category TLCore
revision 5403
+depend bin-xpdf.ARCH
+
+name bin-xpdf.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for alpha-linux
+
+name bin-xpdf.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for hppa-hpux
+
+name bin-xpdf.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for i386-darwin
+
+name bin-xpdf.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for i386-freebsd
+
+name bin-xpdf.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for i386-linux
+
+name bin-xpdf.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for i386-openbsd
+
+name bin-xpdf.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for i386-solaris
+
+name bin-xpdf.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for mips-irix
+
+name bin-xpdf.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for powerpc-aix
+
+name bin-xpdf.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for powerpc-darwin
+
+name bin-xpdf.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for powerpc-linux
+
+name bin-xpdf.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for sparc-linux
+
+name bin-xpdf.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for sparc-solaris
+
+name bin-xpdf.win32
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for win32
binfiles arch=win32 size=551
bin/win32/pdffonts.exe
bin/win32/pdfimages.exe
@@ -15757,6 +22831,11 @@ binfiles arch=win32 size=551
bin/win32/pdftops.exe
bin/win32/pdftotext.exe
+name bin-xpdf.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of bin-xpdf for x86_64-linux
+
name binomexp
category Package
revision 3355
@@ -15764,6 +22843,7 @@ shortdesc Calculate Pascal's triangle.
longdesc The package calculates and prints rows of Pascal's triangle. It
longdesc may be used: – simply to print successive rows of the
longdesc triangle, or – to print the rows inside an array or tabular.
+depend binomexp.ARCH
docfiles size=22
texmf-dist/doc/latex/binomexp/README details="Readme"
texmf-dist/doc/latex/binomexp/binomexp.pdf details="Package documentation"
@@ -15789,6 +22869,7 @@ longdesc Fungi, Animalia and Bacteria kingdoms. There are default
longdesc settings for the way species names are typeset, but they can be
longdesc customized. Different default styles are used in different
longdesc situations.
+depend biocon.ARCH
docfiles size=19
texmf-dist/doc/latex/biocon/README details="Readme"
texmf-dist/doc/latex/biocon/manual.dvi
@@ -15813,6 +22894,7 @@ revision 714
shortdesc Draw bit field data structure diagrams (obsolete).
longdesc Use of this package is no longer recommended, since all its
longdesc facilities are now better provided by the bytefield package.
+depend bitfield.ARCH
srcfiles size=7
texmf-dist/source/latex/bitfield/bitfield.dtx
texmf-dist/source/latex/bitfield/bitfield.ins
@@ -15830,6 +22912,7 @@ shortdesc Typeset business cards.
longdesc This is an adaption for current LaTeX of a LaTeX 2.09 style by
longdesc Silvano Balemi. It produces cards at the normal US card size,
longdesc 76.2mm x 50.8mm.
+depend bizcard.ARCH
docfiles size=3
texmf-dist/doc/latex/bizcard/bizex.dvi
texmf-dist/doc/latex/bizcard/bizex.tex
@@ -15853,6 +22936,7 @@ longdesc Yannis Haralambous's old German fonts Gothic, Schwabacher and
longdesc Fraktur (which are also available in Adobe type 1 format). The
longdesc package includes LaTeX macros to embed the fonts into the LaTeX
longdesc font selection scheme.
+depend blacklettert1.ARCH
docfiles size=29
texmf-dist/doc/fonts/blacklettert1/COPYING
texmf-dist/doc/fonts/blacklettert1/INSTALL
@@ -15902,6 +22986,7 @@ longdesc entire random document with sections, lists, etc. The package
longdesc supports three languages, english, (n)german and latin; the
longdesc latin option provides a short “lorem ipsum” (for a fuller
longdesc lorem ipsum text, see the lipsum package).
+depend blindtext.ARCH
docfiles size=852
texmf-dist/doc/latex/blindtext/ClassesEn.pdf details="Usage example (English):" language="en"
texmf-dist/doc/latex/blindtext/ClassesGe.pdf details="Usage example (German):" language="de"
@@ -15924,6 +23009,7 @@ shortdesc Block diagrams and bond graphs, with MetaPost.
longdesc A set of simple MetaPost macros for the task. While the task is
longdesc not itself difficult to program, it is felt that many users
longdesc will be happy to have a library for the job..
+depend blockdraw_mp.ARCH
docfiles size=87
texmf-dist/doc/metapost/blockdraw_mp/README details="Readme"
texmf-dist/doc/metapost/blockdraw_mp/blockdraw_mp.pdf
@@ -15951,6 +23037,7 @@ shortdesc Boxes that may break across pages
longdesc Defines environments that allow page breaks inside framed boxes
longdesc whose edges may be variously fancy. The bundle includes a few
longdesc examples (shaded box, box with a wavy line on its side, etc).
+depend boites.ARCH
docfiles size=12
texmf-dist/doc/latex/boites/README
texmf-dist/doc/latex/boites/boites_exemples.dvi
@@ -15972,6 +23059,7 @@ revision 4621
shortdesc Bold latin and greek characters through simple prefix characters.
longdesc This package provides bold latin and greek characters within
longdesc \mathversion{normal}, by using ~ and " as prefix characters.
+depend boldtensors.ARCH
docfiles size=17
texmf-dist/doc/latex/boldtensors/boldtensors.pdf details="Package documentation"
texmf-dist/doc/latex/boldtensors/boldtensors.tex
@@ -15989,6 +23077,7 @@ shortdesc Extended book class.
longdesc The class extends the standard book class, in the areas of
longdesc colour scheme management, document layout, headings and
longdesc footers, front page layout, and other minor items.
+depend bookest.ARCH
docfiles size=71
texmf-dist/doc/latex/bookest/README details="Readme"
texmf-dist/doc/latex/bookest/bookestdoc-en.pdf details="Package documentation (English)" language="en"
@@ -16018,6 +23107,7 @@ longdesc (13–15th centuries); Humanist Minuscule (14th century
longdesc onwards); Uncial (3rd–6th centuries); Half Uncial (3rd–9th
longdesc centuries); Artificial Uncial (6th–10th centuries); and
longdesc Insular Majuscule (6th–9th centuries).
+depend bookhands.ARCH
docfiles size=349
texmf-dist/doc/fonts/bookhands/README.PRW
texmf-dist/doc/fonts/bookhands/README.auncial
@@ -16322,6 +23412,7 @@ longdesc per physical sheet of paper, two pages per side. The resulting
longdesc sheets will, when folded in half, assemble into a booklet.
longdesc Instructions on producing the manual itself as a booklet are
longdesc included.
+depend booklet.ARCH
docfiles size=64
texmf-dist/doc/latex/booklet/README details="Readme"
texmf-dist/doc/latex/booklet/booklet.pdf details="Package documentation"
@@ -16339,6 +23430,7 @@ catalogue-license lppl
name bookman
category Package
revision 2488
+depend bookman.ARCH
runfiles size=420
texmf-dist/dvips/bookman/config.ubk
texmf-dist/fonts/afm/adobe/bookman/pbkd8a.afm
@@ -16560,6 +23652,7 @@ longdesc extra commands as well as behind-the-scenes optimisation.
longdesc Guidelines are given as to what constitutes a good table in
longdesc this context. From version 1.61, the package offers longtable
longdesc compatibility.
+depend booktabs.ARCH
docfiles size=54
texmf-dist/doc/latex/booktabs/COPYING
texmf-dist/doc/latex/booktabs/README details="Readme"
@@ -16582,6 +23675,7 @@ longdesc Using the \AtBeginPage hook, you can add material in the
longdesc background of a page. \PageLayout can be used to give page
longdesc makeup commands to be executed on every page (e.g., depend on
longdesc the page style).
+depend bophook.ARCH
srcfiles size=4
texmf-dist/source/latex/bophook/bophook.dtx
texmf-dist/source/latex/bophook/bophook.ins
@@ -16604,6 +23698,7 @@ longdesc of the arrows and realizing the pagesetting. All the user has
longdesc to do about the arrows is to specify their type (monomorphism,
longdesc pair of adjoint arrows, etc.) and their direction (north,
longdesc south-east, etc.); 12 types and 32 directions are available.
+depend borceux.ARCH
docfiles size=14
texmf-dist/doc/generic/borceux/Diagram_Mode_d_Emploi
texmf-dist/doc/generic/borceux/Diagram_Read_Me
@@ -16641,6 +23736,7 @@ longdesc technical report with tables and figures interspersed in the
longdesc text, to a journal-manuscript submission, with figures
longdesc collected at the end of document, as well as lof and lot
longdesc deferred or preempted.
+depend boxhandler.ARCH
docfiles size=56
texmf-dist/doc/latex/boxhandler/README details="README file"
texmf-dist/doc/latex/boxhandler/boxhandler.pdf details="Package documentation:"
@@ -16662,6 +23758,7 @@ longdesc The package provides support for typesetting simple chemical
longdesc formulae, those long IUPAC compound names, and some chemical
longdesc idioms. It also supports the labelling of compounds and
longdesc reference to labelled compounds.
+depend bpchem.ARCH
srcfiles size=5
texmf-dist/source/latex/bpchem/bpchem.dtx
texmf-dist/source/latex/bpchem/bpchem.ins
@@ -16682,6 +23779,7 @@ longdesc years to learn). Python scripts grade1.py and grade2.py convert
longdesc ordinary text to grade 1 and 2 braille tags; then, the LaTeX
longdesc package braille.sty takes the tags and prints out corresponding
longdesc braille symbols.
+depend braille.ARCH
docfiles size=51
texmf-dist/doc/latex/braille/README.braille details="Readme"
texmf-dist/doc/latex/braille/braille.html details="Package documentation (HTML)"
@@ -16709,6 +23807,7 @@ longdesc the dvips driver is being used, the original \url doesn’t
longdesc allow line breaks in the middle of the created link: the link
longdesc comes in one atomic piece. This package allows such line breaks
longdesc in the generated links.
+depend breakurl.ARCH
docfiles size=29
texmf-dist/doc/latex/breakurl/README details="Package README"
texmf-dist/doc/latex/breakurl/breakurl.pdf details="Package documentation"
@@ -16741,6 +23840,7 @@ longdesc keeping an eye on possible glitches. The package is not
longdesc currently available from CTAN, but may be retrieved from its
longdesc home directory; it is also available in the major TeX
longdesc distributions.
+depend breqn.ARCH
docfiles size=18
texmf-dist/doc/latex/breqn/breqndoc.dvi
texmf-dist/doc/latex/breqn/eqbreaks.dvi
@@ -16763,6 +23863,7 @@ revision 728
shortdesc Typesetting bridge diagrams.
longdesc The file contains an article that sets out macros for
longdesc typesetting bridge in LaTeX (2.09).
+depend bridge.ARCH
runfiles size=1
texmf-dist/tex/latex/bridge/bridge.tex
catalogue-version
@@ -16779,6 +23880,7 @@ longdesc that simulates hand-written characters. The font is available
longdesc in italic shape only. The package includes the files needed by
longdesc LaTeX in order to use that font. The file AAA_readme.tex fully
longdesc describes the package and sample.tex illustrates its use.
+depend brushscr.ARCH
execute addMap pbsi.map
docfiles size=12
texmf-dist/doc/latex/brushscr/AAA_readme.bbl
@@ -16819,6 +23921,7 @@ longdesc The bullcntr package defines the command bullcntr, which can be
longdesc thought of as an analogue of the \fnsymbol command: like the
longdesc latter, it displays the value of a counter lying between 1 and
longdesc 9, but uses, for the purpose, a regular pattern of bullets.
+depend bullcntr.ARCH
docfiles size=217
texmf-dist/doc/latex/bullcntr/00readme.txt
texmf-dist/doc/latex/bullcntr/README details="Readme"
@@ -16845,6 +23948,7 @@ shortdesc Basic Support for Writing Burmese.
longdesc This package provides basic support for writing Burmese. The
longdesc package provides a preprocessor (written in Perl), an Adobe
longdesc Type 1 font, and LaTeX macros.
+depend burmese.ARCH
execute addMap burmese.map
docfiles size=18
texmf-dist/doc/fonts/burmese/burmguide.pdf
@@ -16873,6 +23977,7 @@ longdesc \fCenter. This is the style often used in sequent calculus
longdesc proofs. The package works in a Plain TeX document, as well as
longdesc in LaTeX; an exposition of the commands available is given in
longdesc the package file itself.
+depend bussproofs.ARCH
docfiles size=15
texmf-dist/doc/latex/bussproofs/testbp2.pdf details="Test/example of use"
texmf-dist/doc/latex/bussproofs/testbp2.tex
@@ -16891,6 +23996,7 @@ longdesc The bytefield package helps the user create illustrations for
longdesc network protocol specifications and anything else that utilizes
longdesc fields of data. These illustrations show how the bits and bytes
longdesc are laid out in a packet or in memory.
+depend bytefield.ARCH
docfiles size=125
texmf-dist/doc/latex/bytefield/README details="Readme"
texmf-dist/doc/latex/bytefield/bytefield.pdf details="Package documentation"
@@ -16912,6 +24018,7 @@ revision 613
shortdesc Typeset Python, C and Pascal programs.
longdesc A TeX macro package for easy typesetting programs in Python, C
longdesc and Pascal. Program source files may also be input.
+depend c-pascal.ARCH
docfiles size=6
texmf-dist/doc/generic/c-pascal/demo1.tex
texmf-dist/doc/generic/c-pascal/demo2.tex
@@ -16932,6 +24039,7 @@ catalogue-license pd
name c90enc
category Package
revision 2361
+depend c90enc.ARCH
runfiles size=1
texmf-dist/fonts/enc/dvips/c90enc/c90.enc
@@ -16943,6 +24051,7 @@ longdesc Includes, for example, a package which organizes date items in
longdesc a format suitable for conference schedules, itineraries,
longdesc academic teaching timetables and the like. Developments of the
longdesc bundle appear as evautofl and evweek
+depend calendar.ARCH
docfiles size=70
texmf-dist/doc/latex/calendar/autofilo.dvi
texmf-dist/doc/latex/calendar/calendar.dvi
@@ -17049,6 +24158,7 @@ shortdesc Calligraphic font.
longdesc A calligraphic font in the handwriting style of the author,
longdesc Peter Vanroose. The font is supplied as MetaFont source A LaTeX
longdesc package for using this font is available in fundus.
+depend calligra.ARCH
runfiles size=76
texmf-dist/fonts/source/public/calligra/callig15.mf
texmf-dist/fonts/source/public/calligra/calligra.mf
@@ -17063,6 +24173,7 @@ category Package
revision 733
shortdesc Copperplate calligraphic letters in LaTeX.
longdesc Provides a maths interface to the rsfs fonts.
+depend calrsfs.ARCH
docfiles size=1
texmf-dist/doc/fonts/calrsfs/readme details="Readme"
runfiles size=2
@@ -17081,6 +24192,7 @@ longdesc Prints a card-size calendar for any year, AD or BC, with
longdesc Gregorian or Julian leap rules (useful for years before
longdesc adoption of Gregorian rules). Cal2000.tex prints a calendar for
longdesc years 1990--2020.
+depend calxxxx.ARCH
docfiles size=3
texmf-dist/doc/latex/calxxxx/readme.tex
runfiles size=5
@@ -17097,6 +24209,7 @@ revision 1487
shortdesc Prototype work on future citation engine.
longdesc Comprehensive bibliography manager (developed as a
longdesc demonstration engine for the work on citations for LaTeX3).
+depend camel.ARCH
docfiles size=110
texmf-dist/doc/latex/camel/camel.dvi
texmf-dist/doc/latex/camel/index.dvi
@@ -17142,6 +24255,7 @@ longdesc text and the entries in the list-of pages. The \caption and
longdesc \captcont commands generate list-of page entries. The \caption
longdesc and \caption* commands increment the figure or table counter.
longdesc Captcont also fully supports the subfigure package.
+depend captcont.ARCH
docfiles size=36
texmf-dist/doc/latex/captcont/README details="Readme"
texmf-dist/doc/latex/captcont/captcont.pdf details="Package documentation"
@@ -17171,6 +24285,7 @@ longdesc notes, for other packages, is provided in the documentation.
longdesc The package also provides the "caption outside float" facility,
longdesc in the same way that simpler packages like capt-of do. The
longdesc package supersedes caption2.
+depend caption.ARCH
docfiles size=499
texmf-dist/doc/latex/caption/README
texmf-dist/doc/latex/caption/caption-deu.pdf details="German documentation:" language="de"
@@ -17200,6 +24315,7 @@ catalogue-license lppl
name carlisle
category Package
revision 1716
+depend carlisle.ARCH
docfiles size=102
texmf-dist/doc/latex/carlisle/README
texmf-dist/doc/latex/carlisle/fix2col.pdf
@@ -17229,6 +24345,7 @@ runfiles size=40
name carolmin-ps
category Package
revision 5356
+depend carolmin-ps.ARCH
execute addMap cmin.map
docfiles size=1
texmf-dist/doc/fonts/carolmin-ps/README
@@ -17253,6 +24370,7 @@ revision 1487
shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics.
longdesc The bundle constitutes a font (as MetaFont source) and LaTeX
longdesc macros for their use within a document.
+depend casyl.ARCH
docfiles size=3
texmf-dist/doc/latex/casyl/casyldoc.dvi
texmf-dist/doc/latex/casyl/casyldoc.tex
@@ -17268,6 +24386,7 @@ catalogue-license unknown
name cb
category Package
revision 101
+depend cb.ARCH
execute addMixedMap cbgreek.map
docfiles size=1
texmf-dist/doc/fonts/cb/README
@@ -17576,6 +24695,7 @@ longdesc coptic bundle. The CBcoptic bundle includes font description
longdesc files, MetaFont sources and equivalent Adobe Type 1 fonts in
longdesc pfb format. The bundle also includes a package that provides
longdesc some macros of philological interest.
+depend cbcoptic.ARCH
docfiles size=56
texmf-dist/doc/latex/cbcoptic/README
texmf-dist/doc/latex/cbcoptic/coptfont.pdf
@@ -17605,6 +24725,7 @@ longdesc These MetaFont sources rely on the availability of the MetaFont
longdesc ‘Polish’ fonts and of the MetaFont sources of the original
longdesc Concrete fonts. Adobe Type 1 versions of the fonts are
longdesc available in package cc-plps.
+depend cc-pl.ARCH
execute addMixedMap ccpl.map
docfiles size=2
texmf-dist/doc/fonts/cc-pl/00readme
@@ -17663,6 +24784,7 @@ longdesc any environment. Methods are also provided to define captions
longdesc for use outside float (e.g., figure and table) environments,
longdesc and to define new float environments and Lists of Floats. Tools
longdesc are provided for specifying your own captioning styles.
+depend ccaption.ARCH
docfiles size=97
texmf-dist/doc/latex/ccaption/README details="Readme"
texmf-dist/doc/latex/ccaption/ccaption.pdf details="Package documentation"
@@ -17684,6 +24806,7 @@ longdesc LaTeX font definition files for the Concrete fonts and a LaTeX
longdesc package for typesetting documents using Concrete as the default
longdesc font family. The files support OT1, T1, TS1, and Concrete
longdesc mathematics including AMS fonts (Ulrik Vieth's concmath).
+depend ccfonts.ARCH
docfiles size=2
texmf-dist/doc/latex/ccfonts/readme details="Readme"
srcfiles size=6
@@ -17705,6 +24828,7 @@ revision 743
shortdesc Chinese chess.
longdesc Macros and a font for typesetting Chinese Chess board diagrams.
longdesc The font is distributed as MetaFont source.
+depend cchess.ARCH
runfiles size=16
texmf-dist/fonts/source/public/cchess/cchess46.mf
texmf-dist/fonts/source/public/cchess/ccpieces.mf
@@ -17718,6 +24842,7 @@ catalogue-license unknown
name cclicenses
category Package
revision 5017
+depend cclicenses.ARCH
docfiles size=25
texmf-dist/doc/latex/cclicenses/README
texmf-dist/doc/latex/cclicenses/cclicenses_short.pdf
@@ -17731,6 +24856,7 @@ name cd
category Package
revision 1487
shortdesc Typeset CD covers.
+depend cd.ARCH
docfiles size=28
texmf-dist/doc/latex/cd/CD.dvi
texmf-dist/doc/latex/cd/CD.tex
@@ -17751,6 +24877,7 @@ catalogue-license unknown
name cd-cover
category Package
revision 745
+depend cd-cover.ARCH
docfiles size=1
texmf-dist/doc/latex/cd-cover/README
srcfiles size=12
@@ -17763,6 +24890,7 @@ runfiles size=5
name cdpbundl
category Package
revision 2411
+depend cdpbundl.ARCH
docfiles size=171
texmf-dist/doc/latex/cdpbundl/00readme.txt
texmf-dist/doc/latex/cdpbundl/README
@@ -17795,6 +24923,7 @@ longdesc noticeably simpler than that of tabls, which considers the
longdesc dimensions of each entire row; whereas you can ask the
longdesc cellspace only to look at the cells of potentially difficult
longdesc columns.
+depend cellspace.ARCH
docfiles size=120
texmf-dist/doc/latex/cellspace/README details="Readme"
texmf-dist/doc/latex/cellspace/cellspace.pdf details="Package documentation"
@@ -17814,6 +24943,7 @@ longdesc Cellular tables are ruled tables with spanned cells; the
longdesc present package achieves that, and includes several tricks for
longdesc dealing with the idiosyncracies of printers of the time when it
longdesc was written.
+depend cellular.ARCH
docfiles size=2
texmf-dist/doc/plain/cellular/cellular.doc
texmf-dist/doc/plain/cellular/origin
@@ -17837,6 +24967,7 @@ longdesc \cbstart and \cbend commands; the bars may be coloured. The
longdesc package uses 'drivers' to place the bars; the available drivers
longdesc can work with dvitoln03, dvitops, dvips, the emTeX and TeXtures
longdesc DVI drivers, and VTeX and PDFTeX.
+depend changebar.ARCH
docfiles size=185
texmf-dist/doc/latex/changebar/00readme.txt details="Readme"
texmf-dist/doc/latex/changebar/catalog.txt
@@ -17871,6 +25002,7 @@ longdesc text is shown in a different colour; deleted text is crossed
longdesc out. The package allows free defining of additional authors and
longdesc their associated colour. It also allows you to define a markup
longdesc for authors or annotations.
+depend changes.ARCH
docfiles size=135
texmf-dist/doc/latex/changes/README details="Readme"
texmf-dist/doc/latex/changes/changes.example1.tex
@@ -17895,6 +25027,7 @@ shortdesc Page numbering by chapter.
longdesc The package provides for ‘chapterno-pageno’ or
longdesc ‘chaptername-pageno’ page numbering. Provision is made for
longdesc front- and backmatter in book class.
+depend chappg.ARCH
docfiles size=51
texmf-dist/doc/latex/chappg/chappg.pdf details="Package documentation"
srcfiles size=6
@@ -17918,6 +25051,7 @@ longdesc chapter/section/subsection, and provides macros that allow
longdesc inclusion without using the full path, rather the path relative
longdesc to the current folder of the chapter/section/subsection. It
longdesc makes easy changing the name of a folder, for example.
+depend chapterfolder.ARCH
docfiles size=42
texmf-dist/doc/latex/chapterfolder/README
texmf-dist/doc/latex/chapterfolder/aclocal.m4
@@ -17948,6 +25082,7 @@ shortdesc Charter fonts.
longdesc A commercial text font donated for the common good. Available
longdesc in medium weight only; no bold version. Support for use with
longdesc LaTeX is available in freenfss, part of psnfss.
+depend charter.ARCH
docfiles size=1
texmf-dist/doc/fonts/charter/readme.charter details="Readme for this distribution"
runfiles size=127
@@ -18022,6 +25157,7 @@ longdesc Various BibTeX formats for journals in Chemistry, including
longdesc Reviews in Computational Chemistry, Journal of Physical
longdesc Chemistry, Journal of Computational Chemistry, and Physical
longdesc Chemistry Chemical Physics.
+depend chem-journal.ARCH
runfiles size=20
texmf-dist/bibtex/bst/chem-journal/jcc.bst
texmf-dist/bibtex/bst/chem-journal/jpc.bst
@@ -18040,6 +25176,7 @@ longdesc This bundle consists of a font (available as metafont source,
longdesc metapost source, and generated type 1 versions), and a package
longdesc to use it. The arrows in the font are designed to look more
longdesc like those in chemistry text-books than do Knuth's originals.
+depend chemarrow.ARCH
execute addMap chemarrow.map
docfiles size=6
texmf-dist/doc/fonts/chemarrow/Liesmich.txt details="Package Liesmich" language="de"
@@ -18070,6 +25207,7 @@ longdesc numbering of chemical compounds. Optionally, it is possible to
longdesc supply a custom name for each compound. The package differs
longdesc from the chemcono package by not generating an odd-looking list
longdesc of compounds inside the text.
+depend chemcompounds.ARCH
docfiles size=33
texmf-dist/doc/latex/chemcompounds/README
texmf-dist/doc/latex/chemcompounds/chemcompounds.pdf
@@ -18092,6 +25230,7 @@ longdesc documents. It works like \cite and the \thebibliography, using
longdesc \fcite and \theffbibliography instead. It allows compound names
longdesc in documents to be numbered and does not affect the normal
longdesc citation routines.
+depend chemcono.ARCH
docfiles size=5
texmf-dist/doc/latex/chemcono/example.dvi
texmf-dist/doc/latex/chemcono/example.tex
@@ -18114,6 +25253,7 @@ longdesc LaTeX default types figure and table. The scheme float type
longdesc acts in the same way as those defined by the LaTeX kernel, but
longdesc is intended for chemical schemes. The package also provides a
longdesc method for adding automatic numbering of chemicals to schemes.
+depend chemscheme.ARCH
docfiles size=68
texmf-dist/doc/latex/chemscheme/README details="Readme"
texmf-dist/doc/latex/chemscheme/chemscheme.cdx
@@ -18144,6 +25284,7 @@ longdesc provides some handy chemistry-related macros. Chemstyle is much
longdesc enhanced compared to its predecessor, and users of rsc are
longdesc strongly encouraged to migrate, (all of the additional macros
longdesc in the rsc LaTeX package are present in chemstyle).
+depend chemstyle.ARCH
docfiles size=62
texmf-dist/doc/latex/chemstyle/README
texmf-dist/doc/latex/chemstyle/chemstyle.pdf details="Package documentation"
@@ -18177,6 +25318,7 @@ longdesc as a .ps file, which from the documentation sounds as if it
longdesc ought to be a .pfa file. Metrics (both AFM and TeX .pl files),
longdesc and a simple package for generating images of pieces, are
longdesc provided.
+depend cheq.ARCH
execute addMap cheq.map
runfiles size=42
texmf-dist/fonts/enc/dvips/cheq/chess.enc
@@ -18202,6 +25344,7 @@ longdesc been arbitrarily encoded in the range 38–122; the cherokee
longdesc package provides commands that map each such syllable to the
longdesc appropriate character; for example, Segwoya himself would be
longdesc represented \Cse\Cgwo\Cya.
+depend cherokee.ARCH
runfiles size=8
texmf-dist/fonts/source/public/cherokee/cherokee.mf
texmf-dist/fonts/tfm/public/cherokee/cherokee.tfm
@@ -18219,6 +25362,7 @@ longdesc The original (and now somewhat dated) TeX chess font package.
longdesc Potential users should consider skak (for alternative fonts,
longdesc and notation support), texmate (for alternative notation
longdesc support), or chessfss (for flexible font choices).
+depend chess.ARCH
runfiles size=37
texmf-dist/fonts/source/public/chess/chess10.mf
texmf-dist/fonts/source/public/chess/chess20.mf
@@ -18252,6 +25396,7 @@ longdesc that they don't have to implement all these commands for
longdesc themselves. A normal user can use the package to print e.g.
longdesc single chess symbols and simple diagrams. The documentation
longdesc contains also a section about installation of chess fonts.
+depend chessfss.ARCH
docfiles size=1
texmf-dist/doc/latex/chessfss/README details="Readme"
srcfiles size=25
@@ -18301,6 +25446,7 @@ shortdesc Font and macros for Chinese calendar.
longdesc A LaTeX package to produce Chinese calendar symbols of the old
longdesc Chinese lunisolar calendar. The associated font is distributed
longdesc as MetaFont source.
+depend china2e.ARCH
docfiles size=12
texmf-dist/doc/latex/china2e/chinadoc.dvi
texmf-dist/doc/latex/china2e/chinadoc.tex
@@ -18332,6 +25478,7 @@ longdesc package also has simple facilities for producing optics
longdesc diagrams; however, no-one would deny that the PSTricks pst-
longdesc optic package, or the MetaPost makecirc package does the job
longdesc better.
+depend circ.ARCH
docfiles size=27
texmf-dist/doc/latex/circ/README details="Readme"
texmf-dist/doc/latex/circ/cidoc.tex
@@ -18378,6 +25525,7 @@ shortdesc Fonts for Cirth.
longdesc This is a font to represent the runic Cirth script devised by
longdesc Tolkien for his Sindarin language. The font is provided as
longdesc MetaFont source.
+depend cirth.ARCH
docfiles size=39
texmf-dist/doc/fonts/cirth/Changelog
texmf-dist/doc/fonts/cirth/README details="Readme"
@@ -18413,6 +25561,7 @@ longdesc keys rather than numbers; – overcite, which prints citation
longdesc numbers in a superscript position; and – chapterbib, which
longdesc permits multiple bibliographies, one per \included file in a
longdesc document.
+depend cite.ARCH
docfiles size=1
texmf-dist/doc/latex/cite/README
runfiles size=17
@@ -18431,6 +25580,7 @@ revision 759
shortdesc Add reference-page-list to bibliography-items.
longdesc The citeref package does its job without using the indexing
longdesc facilities, and needs no special \cite-replacement package.
+depend citeref.ARCH
runfiles size=1
texmf-dist/tex/latex/citeref/citeref.sty
catalogue-version
@@ -18441,6 +25591,7 @@ catalogue-license lppl
name cjhebrew
category Package
revision 4014
+depend cjhebrew.ARCH
execute addMap cjhebrew.map
docfiles size=29
texmf-dist/doc/fonts/cjhebrew/cjhebtst.tex
@@ -18469,6 +25620,7 @@ shortdesc A bundle of packages and classes.
longdesc The bundle contains letter and envelope classes, and several
longdesc packages of a general nature, including one for constructing
longdesc outlines.
+depend cjw.ARCH
srcfiles size=50
texmf-dist/source/latex/cjw/cjw-latex.dtx
texmf-dist/source/latex/cjw/cjw-latex.ins
@@ -18500,6 +25652,7 @@ catalogue-license unknown
name clarendo
category Package
revision 90
+depend clarendo.ARCH
runfiles size=8
texmf-dist/fonts/tfm/cg/clarendo/ccdr8tc.tfm
texmf-dist/fonts/tfm/cg/clarendo/ccdrrc.tfm
@@ -18519,6 +25672,7 @@ longdesc in homage to Bringhurst’s “The Elements of Typographic
longdesc Style”. It makes use of a range of techniques to get the best
longdesc results achievable using TeX. Included in the bundle are
longdesc templates to make thesis writing easier.
+depend classicthesis.ARCH
docfiles size=203
texmf-dist/doc/latex/classicthesis/Bibliography.bib
texmf-dist/doc/latex/classicthesis/CHANGES
@@ -18574,6 +25728,7 @@ longdesc value associated to the key, does not produce text;
longdesc \TheValue{key} to return the value linked to the key. Both
longdesc arguments of \TheKey are ‘moving’ as LaTeX defines the term
longdesc and we have sometimes to protect them.
+depend clefval.ARCH
docfiles size=96
texmf-dist/doc/latex/clefval/Changements
texmf-dist/doc/latex/clefval/Changes
@@ -18608,6 +25763,7 @@ longdesc package also offers a means of referencing a list of
longdesc references, each formatted according to its type. In such
longdesc lists, it can collapse sequences of numerically-consecutive
longdesc labels to a reference range.
+depend cleveref.ARCH
docfiles size=68
texmf-dist/doc/latex/cleveref/README details="Readme"
texmf-dist/doc/latex/cleveref/cleveref.pdf details="Package documentation"
@@ -18630,6 +25786,7 @@ longdesc hands) and text clocks (in 24h format) which can show system
longdesc time or any time the user desires. Works with both TeX and
longdesc LaTeX. The clock faces (appearances of the dial) are easily
longdesc expandable; the default uses a custom MetaFont font.
+depend clock.ARCH
docfiles size=35
texmf-dist/doc/latex/clock/COPYING
texmf-dist/doc/latex/clock/EMTEX
@@ -18659,6 +25816,7 @@ longdesc Leiserson, Rivest, and Stein. The package was written by the
longdesc authors. You use the commands the same way the package's author
longdesc did when writing the book, and your output will look just like
longdesc the pseudocode in the text.
+depend clrscode.ARCH
docfiles size=11
texmf-dist/doc/latex/clrscode/README
texmf-dist/doc/latex/clrscode/clrscode.pdf details="Package documentation"
@@ -18681,6 +25839,7 @@ longdesc mathematical facilities of TeX itself. The base fonts are
longdesc distributed as MetaFont source, but autotraced PostScript Type
longdesc 1 versions are available (see the Bluesky/Y&Y and BaKoMa
longdesc versions).
+depend cm.ARCH
execute addMixedMap cmother-bsr.map
execute addMixedMap cmtext-bsr-interpolated.map
execute addMixedMap cmtext-bsr.map
@@ -19077,6 +26236,7 @@ longdesc Cyrillic, or cbgreek for Greek), since it is available at a
longdesc single size only; it offers a compact set for ‘general’
longdesc working. The fonts themselves are encoded to external
longdesc standards, and virtual fonts are provided for use with TeX.
+depend cm-lgc.ARCH
execute addMap cm-lgc.map
docfiles size=10
texmf-dist/doc/latex/cm-lgc/COPYING
@@ -19515,6 +26675,7 @@ longdesc supporting all European languages except Greek, and all
longdesc Cyrillic-based languages), and bringing many ameliorations in
longdesc typesetting quality. The fonts exhibit the same metrics as the
longdesc MetaFont-encoded originals.
+depend cm-super.ARCH
execute addMixedMap cm-super-t1.map
execute addMixedMap cm-super-t2a.map
execute addMixedMap cm-super-t2b.map
@@ -20380,6 +27541,7 @@ longdesc fonts. The package’s main limitation currently is the
longdesc inability to work with virtual fonts, because of limitations of
longdesc pdfTeX. This restriction may be resolved in a future version of
longdesc pdfTeX.
+depend cmap.ARCH
docfiles size=1
texmf-dist/doc/latex/cmap/README
runfiles size=10
@@ -20404,6 +27566,7 @@ revision 2890
shortdesc MetaPost arrows and braces in the Computer Modern style.
longdesc This MetaPost package contains macros to draw arrows and braces
longdesc in the Computer Modern style.
+depend cmarrows.ARCH
docfiles size=48
texmf-dist/doc/metapost/cmarrows/README details="README file"
texmf-dist/doc/metapost/cmarrows/cmarrows.pdf details="Package documentation"
@@ -20449,6 +27612,7 @@ shortdesc Font for planetary symbols.
longdesc The package provides a font as MetaFont source (with driver
longdesc files for a number of sizes), and LaTeX code for using the
longdesc font.
+depend cmastro.ARCH
docfiles size=12
texmf-dist/doc/fonts/cmastro/00astro.tex
texmf-dist/doc/fonts/cmastro/00dofour.sh
@@ -20494,6 +27658,7 @@ longdesc fonts is available from Micropress. Free versions are
longdesc available, in the cm-super font bundle (the T1 and TS1 encoded
longdesc part of the set), and in the hfbright (the OT1 encoded part,
longdesc and the maths fonts).
+depend cmbright.ARCH
docfiles size=5
texmf-dist/doc/latex/cmbright/copyrite.txt
texmf-dist/doc/latex/cmbright/manifest.txt
@@ -20694,6 +27859,7 @@ longdesc letters, in MetaFont sources and ATM Compatible Type 1 format.
longdesc The fonts are provided in KOI-7, but virtual fonts are
longdesc available to recode them to three other Russian 8-bit
longdesc encodings.
+depend cmcyr.ARCH
execute addMap cmcyr.map
docfiles size=1
texmf-dist/doc/fonts/cmcyr/README details="Readme"
@@ -21446,6 +28612,7 @@ catalogue-license pd
name cmcyralt
category Package
revision 769
+depend cmcyralt.ARCH
docfiles size=7
texmf-dist/doc/latex/cmcyralt/rhyphen.tex
srcfiles size=10
@@ -21473,6 +28640,7 @@ revision 4189
shortdesc Get command name reliably.
longdesc Extracts the letters of a command’s name (e.g., foo for
longdesc command \foo), in a reliable way.
+depend cmdstring.ARCH
docfiles size=90
texmf-dist/doc/latex/cmdstring/README details="Readme"
texmf-dist/doc/latex/cmdstring/cmdstring.pdf details="Package documentation"
@@ -21496,6 +28664,7 @@ longdesc point and the beginning of the document will be marked for
longdesc logging. At the end of the document a report of the command
longdesc usage will be printed in the TeX log, for example: mdash was
longdesc used on line 25; ndash was never used.
+depend cmdtrack.ARCH
srcfiles size=6
texmf-dist/source/latex/cmdtrack/cmdtrack.dtx
texmf-dist/source/latex/cmdtrack/cmdtrack.ins
@@ -21509,6 +28678,7 @@ catalogue-license dfsg
name cmex
category Package
revision 98
+depend cmex.ARCH
execute addMixedMap ttcmex.map
runfiles size=28
texmf-dist/fonts/map/dvips/cmex/ttcmex.map
@@ -21519,6 +28689,7 @@ runfiles size=28
name cmextra
category Package
revision 101
+depend cmextra.ARCH
runfiles size=27
texmf-dist/fonts/source/public/cmextra/cmbxcd10.mf
texmf-dist/fonts/source/public/cmextra/cmbxti12.mf
@@ -21557,6 +28728,7 @@ longdesc Variants are included for use with Computer Modern serif and
longdesc sans-serif and with the AMS Euler series. The font is provided
longdesc both as MetaFont source, and in Adobe Type 1 format. LaTeX
longdesc support is provided. format.
+depend cmll.ARCH
execute addMixedMap cmll.map
docfiles size=17
texmf-dist/doc/latex/cmll/README details="Readme"
@@ -21671,6 +28843,7 @@ longdesc publishers. The font is a fixed-width one, rather less heavy
longdesc than Computer Modern typewriter. Emphasis for bold-face comes
longdesc from a wavy underline of each letter. The two fonts are
longdesc supplied as MetaFont source.
+depend cmpica.ARCH
docfiles size=1
texmf-dist/doc/fonts/cmpica/README.cmp
runfiles size=12
@@ -21701,6 +28874,7 @@ longdesc recognized as being ‘boldface’. This package attempts to
longdesc make these T1 fonts look like the traditional ones did. You do
longdesc not need any new fonts; the package just changes the way LaTeX
longdesc makes use of the current ones.
+depend cmsd.ARCH
srcfiles size=2
texmf-dist/source/latex/cmsd/liesmich
texmf-dist/source/latex/cmsd/readme
@@ -21716,6 +28890,7 @@ catalogue-license lppl
name cns
category Package
revision 90
+depend cns.ARCH
docfiles size=8
texmf-dist/doc/fonts/cns/cns40-1/README
texmf-dist/doc/fonts/cns/cns40-2/README
@@ -22008,6 +29183,7 @@ shortdesc Support for variant code pages.
longdesc The package provides a mechanism for inputting non-ASCII text.
longdesc Nowadays, the job is mostly done by the inputenc package in the
longdesc LaTeX distribution.
+depend codepage.ARCH
docfiles size=47
texmf-dist/doc/latex/codepage/codepage.dvi
texmf-dist/doc/latex/codepage/frintro.dvi
@@ -22059,6 +29235,7 @@ depend xu-hyphen
depend hyphen-base
depend collection-basicbin
depend collection-documentation-base
+depend collection-basic.ARCH
name collection-basicbin
category Collection
@@ -22083,6 +29260,7 @@ depend bin-tex
depend bin-texconfig
depend bin-thumbpdf
depend bin-xdvi
+depend collection-basicbin.ARCH
name collection-bibtexextra
category Collection
@@ -22121,6 +29299,7 @@ depend sort-by-letters
depend splitbib
depend urlbst
depend collection-latex
+depend collection-bibtexextra.ARCH
name collection-binextra
category Collection
@@ -22152,6 +29331,7 @@ depend bin-tpic2pdftex
depend bin-vpe
depend bin-web
depend collection-basic
+depend collection-binextra.ARCH
name collection-context
category Collection
@@ -22163,6 +29343,7 @@ depend jmn
depend lmextra
depend bin-context
depend collection-basic
+depend collection-context.ARCH
name collection-documentation-base
category Collection
@@ -22171,6 +29352,7 @@ shortdesc Base documentation
longdesc Basic documentation
depend texlive-common
depend texlive-en
+depend collection-documentation-base.ARCH
name collection-documentation-bulgarian
category Collection
@@ -22179,6 +29361,7 @@ shortdesc Bulgarian documentation
longdesc Assorted useful Bulgarian documentation and guides
depend lshort-bulgarian
depend collection-documentation-base
+depend collection-documentation-bulgarian.ARCH
name collection-documentation-chinese
category Collection
@@ -22186,6 +29369,7 @@ revision 5228
shortdesc Chinese documentation
depend texlive-zh-cn
depend collection-documentation-base
+depend collection-documentation-chinese.ARCH
name collection-documentation-czechslovak
category Collection
@@ -22195,6 +29379,7 @@ longdesc Assorted useful Czechslovak documentation and guides
depend lshort-slovak
depend texlive-cz
depend collection-documentation-base
+depend collection-documentation-czechslovak.ARCH
name collection-documentation-dutch
category Collection
@@ -22205,6 +29390,7 @@ depend lkort
depend lshort-dutch
depend ntg
depend collection-documentation-base
+depend collection-documentation-dutch.ARCH
name collection-documentation-english
category Collection
@@ -22246,6 +29432,7 @@ depend webguide
depend wp-conv
depend xetexref
depend collection-documentation-base
+depend collection-documentation-english.ARCH
name collection-documentation-finnish
category Collection
@@ -22254,6 +29441,7 @@ shortdesc Finnish documentation
longdesc Assorted useful Finnish documentation and guides
depend lshort-finnish
depend collection-documentation-base
+depend collection-documentation-finnish.ARCH
name collection-documentation-french
category Collection
@@ -22267,6 +29455,7 @@ depend l2tabu-french
depend lshort-french
depend texlive-fr
depend collection-documentation-base
+depend collection-documentation-french.ARCH
name collection-documentation-german
category Collection
@@ -22283,6 +29472,7 @@ depend templates-sommer
depend texlive-ge
depend voss-de
depend collection-documentation-base
+depend collection-documentation-german.ARCH
name collection-documentation-greek
category Collection
@@ -22291,6 +29481,7 @@ shortdesc Greek documentation
longdesc Assorted useful Greek documentation and guides
depend gentle-gr
depend collection-documentation-base
+depend collection-documentation-greek.ARCH
name collection-documentation-italian
category Collection
@@ -22305,6 +29496,7 @@ depend l2tabu-it
depend lshort-italian
depend psfrag-italian
depend collection-documentation-base
+depend collection-documentation-italian.ARCH
name collection-documentation-japanese
category Collection
@@ -22313,6 +29505,7 @@ shortdesc Japanese documentation
longdesc Assorted useful Japanese documentation and guides
depend lshort-japanese
depend collection-documentation-base
+depend collection-documentation-japanese.ARCH
name collection-documentation-korean
category Collection
@@ -22321,6 +29514,7 @@ shortdesc Korean documentation
longdesc Assorted useful Korean documentation and guides
depend lshort-korean
depend collection-documentation-base
+depend collection-documentation-korean.ARCH
name collection-documentation-mongolian
category Collection
@@ -22329,6 +29523,7 @@ shortdesc Mongolian documentation
longdesc Assorted useful Mongolian documentation and guides
depend lshort-mongolian
depend collection-documentation-base
+depend collection-documentation-mongolian.ARCH
name collection-documentation-polish
category Collection
@@ -22340,6 +29535,7 @@ depend lshort-polish
depend tex-virtual-academy-pl
depend texlive-pl
depend collection-documentation-base
+depend collection-documentation-polish.ARCH
name collection-documentation-portuguese
category Collection
@@ -22350,6 +29546,7 @@ depend cursolatex
depend lshort-portuguese
depend xypic-tut-pt
depend collection-documentation-base
+depend collection-documentation-portuguese.ARCH
name collection-documentation-russian
category Collection
@@ -22359,6 +29556,7 @@ longdesc Assorted useful Russian documentation and guides
depend lshort-russian
depend texlive-ru
depend collection-documentation-base
+depend collection-documentation-russian.ARCH
name collection-documentation-spanish
category Collection
@@ -22368,6 +29566,7 @@ longdesc Assorted useful Spanish documentation and guides
depend es-tex-faq
depend lshort-spanish
depend collection-documentation-base
+depend collection-documentation-spanish.ARCH
name collection-documentation-thai
category Collection
@@ -22376,6 +29575,7 @@ shortdesc Thai documentation
longdesc Thai documentation and guides.
depend lshort-thai
depend collection-documentation-base
+depend collection-documentation-thai.ARCH
name collection-documentation-turkish
category Collection
@@ -22384,6 +29584,7 @@ shortdesc Turkish documentation
longdesc Turkish documentation and guides.
depend lshort-turkish
depend collection-documentation-base
+depend collection-documentation-turkish.ARCH
name collection-documentation-ukrainian
category Collection
@@ -22392,6 +29593,7 @@ shortdesc Ukrainian documentation
longdesc Assorted useful Ukrainian documentation and guides
depend lshort-ukr
depend collection-documentation-base
+depend collection-documentation-ukrainian.ARCH
name collection-documentation-vietnamese
category Collection
@@ -22401,6 +29603,7 @@ depend amsldoc-vn
depend lshort-vietnamese
depend ntheorem-vn
depend collection-documentation-base
+depend collection-documentation-vietnamese.ARCH
name collection-fontbin
category Collection
@@ -22415,6 +29618,7 @@ depend bin-afm2pl
depend bin-fontware
depend bin-ps2pkm
depend collection-basic
+depend collection-fontbin.ARCH
name collection-fontsextra
category Collection
@@ -22545,6 +29749,7 @@ depend wsuipa
depend yfonts
depend zefonts
depend collection-basic
+depend collection-fontsextra.ARCH
name collection-fontsrecommended
category Collection
@@ -22581,6 +29786,7 @@ depend wasysym
depend zapfchan
depend zapfding
depend collection-basic
+depend collection-fontsrecommended.ARCH
name collection-formatsextra
category Collection
@@ -22604,6 +29810,7 @@ depend bin-physe
depend bin-phyzzx
depend bin-texsis
depend collection-basic
+depend collection-formatsextra.ARCH
name collection-games
category Collection
@@ -22629,6 +29836,7 @@ depend sudoku
depend sudokubundle
depend xq
depend collection-latex
+depend collection-games.ARCH
name collection-genericextra
category Collection
@@ -22660,6 +29868,7 @@ depend realcalc
depend vrb
depend vtex
depend collection-basic
+depend collection-genericextra.ARCH
name collection-genericrecommended
category Collection
@@ -22672,6 +29881,7 @@ depend genmisc
depend multido
depend tex-ps
depend collection-basic
+depend collection-genericrecommended.ARCH
name collection-graphicstools
category Collection
@@ -22680,6 +29890,7 @@ shortdesc Graphics tools
longdesc dvipng, pngtools.
depend bin-dvipng
depend bin-pngtools
+depend collection-graphicstools.ARCH
name collection-htmlxml
category Collection
@@ -22697,6 +29908,7 @@ depend bin-xmltex
depend collection-basic
depend collection-fontsrecommended
depend collection-latex
+depend collection-htmlxml.ARCH
name collection-humanities
category Collection
@@ -22735,6 +29947,7 @@ depend stage
depend tree-dvips
depend verse
depend xyling
+depend collection-humanities.ARCH
name collection-langafrican
category Collection
@@ -22745,6 +29958,7 @@ depend ethiop
depend ethiop-t1
depend fc
depend collection-basic
+depend collection-langafrican.ARCH
name collection-langarab
category Collection
@@ -22755,6 +29969,7 @@ depend arabi
depend arabtex
depend hyphen-arabic
depend collection-basic
+depend collection-langarab.ARCH
name collection-langarmenian
category Collection
@@ -22763,6 +29978,7 @@ shortdesc Armenian
longdesc Essential armenian
depend armenian
depend collection-basic
+depend collection-langarmenian.ARCH
name collection-langcjk
category Collection
@@ -22783,6 +29999,7 @@ depend bin-cjkutils
depend hyphen-pinyin
depend collection-basic
depend collection-documentation-chinese
+depend collection-langcjk.ARCH
name collection-langcroatian
category Collection
@@ -22793,6 +30010,7 @@ depend croatian
depend hrlatex
depend hyphen-croatian
depend collection-basic
+depend collection-langcroatian.ARCH
name collection-langcyrillic
category Collection
@@ -22820,6 +30038,7 @@ depend hyphen-bulgarian
depend hyphen-russian
depend hyphen-ukrainian
depend collection-basic
+depend collection-langcyrillic.ARCH
name collection-langczechslovak
category Collection
@@ -22835,6 +30054,7 @@ depend bin-vlna
depend hyphen-czechslovak
depend collection-basic
depend collection-latex
+depend collection-langczechslovak.ARCH
name collection-langdanish
category Collection
@@ -22843,6 +30063,7 @@ shortdesc Danish
longdesc Essential Danish
depend hyphen-danish
depend collection-basic
+depend collection-langdanish.ARCH
name collection-langdutch
category Collection
@@ -22851,6 +30072,7 @@ shortdesc Dutch
longdesc Essential Dutch
depend hyphen-dutch
depend collection-basic
+depend collection-langdutch.ARCH
name collection-langfinnish
category Collection
@@ -22860,6 +30082,7 @@ longdesc Essential finnish
depend finbib
depend hyphen-finnish
depend collection-basic
+depend collection-langfinnish.ARCH
name collection-langfrench
category Collection
@@ -22875,6 +30098,7 @@ depend variations
depend hyphen-basque
depend hyphen-french
depend collection-basic
+depend collection-langfrench.ARCH
name collection-langgerman
category Collection
@@ -22889,6 +30113,7 @@ depend uhrzeit
depend umlaute
depend hyphen-german
depend collection-basic
+depend collection-langgerman.ARCH
name collection-langgreek
category Collection
@@ -22912,6 +30137,7 @@ depend yannisgr
depend hyphen-greek
depend hyphen-ibycus
depend collection-basic
+depend collection-langgreek.ARCH
name collection-langhebrew
category Collection
@@ -22920,6 +30146,7 @@ shortdesc Hebrew
longdesc Fonts and support for typesetting Hebrew
depend cjhebrew
depend collection-basic
+depend collection-langhebrew.ARCH
name collection-langhungarian
category Collection
@@ -22929,6 +30156,7 @@ longdesc Essential Hungarian
depend magyar
depend hyphen-hungarian
depend collection-basic
+depend collection-langhungarian.ARCH
name collection-langindic
category Collection
@@ -22949,6 +30177,7 @@ depend wntamil
depend bin-devnag
depend bin-ebong
depend collection-basic
+depend collection-langindic.ARCH
name collection-langitalian
category Collection
@@ -22957,6 +30186,7 @@ shortdesc Italian
depend collection-basic
depend hyphen-italian
depend itnumpar
+depend collection-langitalian.ARCH
name collection-langlatin
category Collection
@@ -22965,6 +30195,7 @@ shortdesc Latin
longdesc Essential Latin
depend hyphen-latin
depend collection-basic
+depend collection-langlatin.ARCH
name collection-langmanju
category Collection
@@ -22973,6 +30204,7 @@ shortdesc Manju
longdesc Essential Manju
depend manjutex
depend collection-basic
+depend collection-langmanju.ARCH
name collection-langmongolian
category Collection
@@ -22984,6 +30216,7 @@ depend hyphen-mongolian
depend mongolian-babel
depend montex
depend soyombo
+depend collection-langmongolian.ARCH
name collection-langnorwegian
category Collection
@@ -22992,6 +30225,7 @@ shortdesc Norwegian
longdesc Essential Norwegian
depend hyphen-norwegian
depend collection-basic
+depend collection-langnorwegian.ARCH
name collection-langother
category Collection
@@ -23011,6 +30245,7 @@ depend hyphen-turkish
depend hyphen-usorbian
depend hyphen-welsh
depend collection-basic
+depend collection-langother.ARCH
name collection-langpolish
category Collection
@@ -23034,6 +30269,7 @@ depend utf8mex
depend bin-mex
depend hyphen-polish
depend collection-latex
+depend collection-langpolish.ARCH
name collection-langportuguese
category Collection
@@ -23042,6 +30278,7 @@ shortdesc Portuguese
depend ordinalpt
depend hyphen-portuguese
depend collection-basic
+depend collection-langportuguese.ARCH
name collection-langspanish
category Collection
@@ -23050,6 +30287,7 @@ shortdesc Spanish
longdesc Essential spanish
depend hyphen-spanish
depend collection-basic
+depend collection-langspanish.ARCH
name collection-langswedish
category Collection
@@ -23059,6 +30297,7 @@ longdesc Essential swedish
depend swebib
depend hyphen-swedish
depend collection-basic
+depend collection-langswedish.ARCH
name collection-langtibetan
category Collection
@@ -23068,6 +30307,7 @@ longdesc Fonts and support for typesetting Tibetan
depend ctib
depend otibet
depend collection-basic
+depend collection-langtibetan.ARCH
name collection-langukenglish
category Collection
@@ -23076,6 +30316,7 @@ shortdesc UK English
longdesc Essential UK English
depend hyphen-ukenglish
depend collection-basic
+depend collection-langukenglish.ARCH
name collection-langvietnamese
category Collection
@@ -23085,6 +30326,7 @@ longdesc Vietnamese support
depend plnfss
depend vntex
depend collection-basic
+depend collection-langvietnamese.ARCH
name collection-latex
category Collection
@@ -23117,6 +30359,7 @@ depend pspicture
depend tools
depend bin-latex
depend collection-basic
+depend collection-latex.ARCH
name collection-latex3
category Collection
@@ -23131,6 +30374,7 @@ depend xor
depend xparse
depend xtheorem
depend collection-latex
+depend collection-latex3.ARCH
name collection-latexextra
category Collection
@@ -23684,6 +30928,7 @@ depend zed-csp
depend bin-perltex
depend bin-ppower4
depend collection-latex
+depend collection-latexextra.ARCH
name collection-latexrecommended
category Collection
@@ -23733,6 +30978,7 @@ depend ucs
depend xcolor
depend xkeyval
depend collection-latex
+depend collection-latexrecommended.ARCH
name collection-mathextra
category Collection
@@ -23767,6 +31013,7 @@ depend yhmath
depend bin-amstex
depend collection-fontsrecommended
depend collection-latex
+depend collection-mathextra.ARCH
name collection-metapost
category Collection
@@ -23796,6 +31043,7 @@ depend splines
depend textpath
depend bin-metapost
depend collection-basic
+depend collection-metapost.ARCH
name collection-music
category Collection
@@ -23812,6 +31060,7 @@ depend musixtex
depend songbook
depend bin-musixflx
depend collection-latex
+depend collection-music.ARCH
name collection-omega
category Collection
@@ -23828,12 +31077,14 @@ depend bin-aleph
depend bin-omega
depend bin-omegaware
depend collection-basic
+depend collection-omega.ARCH
name collection-perl
category Collection
revision 4468
shortdesc Perl for Windows
longdesc This is a minimal Perl installation for Windows.
+depend collection-perl.ARCH
name collection-pictures
category Collection
@@ -23863,6 +31114,7 @@ depend swimgraf
depend texdraw
depend xypic
depend collection-basic
+depend collection-pictures.ARCH
name collection-plainextra
category Collection
@@ -23882,6 +31134,7 @@ depend treetex
depend typespec
depend vertex
depend collection-basic
+depend collection-plainextra.ARCH
name collection-pstricks
category Collection
@@ -23935,6 +31188,7 @@ depend pstricks
depend pstricks-add
depend uml
depend collection-basic
+depend collection-pstricks.ARCH
name collection-psutils
category Collection
@@ -23948,6 +31202,7 @@ depend bin-pstools
depend bin-psutils
depend bin-t1utils
depend bin-ttf2pt1
+depend collection-psutils.ARCH
name collection-publishers
category Collection
@@ -24013,6 +31268,7 @@ depend uwthesis
depend vancouver
depend york-thesis
depend collection-latex
+depend collection-publishers.ARCH
name collection-science
category Collection
@@ -24063,6 +31319,7 @@ depend textopo
depend unitsdef
depend youngtab
depend collection-latex
+depend collection-science.ARCH
name collection-texinfo
category Collection
@@ -24072,6 +31329,7 @@ longdesc Programs and macros for the GNU Texinfo documentation system.
depend texinfo
depend bin-texinfo
depend collection-basic
+depend collection-texinfo.ARCH
name collection-ttfutils
category Collection
@@ -24079,6 +31337,7 @@ revision 5228
shortdesc TrueType font manipulation
longdesc Utilities to manipulate TrueType fonts
depend bin-ttfutils
+depend collection-ttfutils.ARCH
name collection-wintools
category Collection
@@ -24089,6 +31348,7 @@ longdesc tiff2png.
depend bin-tifftools
depend bin-winutils
depend collection-perl
+depend collection-wintools.ARCH
name collection-xetex
category Collection
@@ -24107,11 +31367,13 @@ depend xltxtra
depend xunicode
depend bin-xetex
depend collection-basic
+depend collection-xetex.ARCH
name colorinfo
category Package
revision 773
shortdesc Retrieve colour model and values for defined colours.
+depend colorinfo.ARCH
docfiles size=2
texmf-dist/doc/latex/colorinfo/README details="Readme"
texmf-dist/doc/latex/colorinfo/colorinfo-test.tex
@@ -24128,6 +31390,7 @@ revision 88
shortdesc Color separation.
longdesc Support for colour separation when using dvips. The package is
longdesc not available on CTAN.
+depend colorsep.ARCH
runfiles size=2
texmf-dist/dvips/colorsep/colorsep.pro
catalogue-version
@@ -24146,6 +31409,7 @@ longdesc with LaTeX (it assures compatibility with the longtable
longdesc package, which is no longer true with colortab); another modern
longdesc option is the table-colouring option of the xcolor. however,
longdesc colortab is still an adequate solution with Plain TeX.
+depend colortab.ARCH
docfiles size=4
texmf-dist/doc/generic/colortab/colortab.doc
runfiles size=7
@@ -24162,6 +31426,7 @@ revision 775
shortdesc Add colour to LaTeX tables.
longdesc Allows rows and columns to be coloured, and even individual
longdesc cells.
+depend colortbl.ARCH
docfiles size=60
texmf-dist/doc/latex/colortbl/README
texmf-dist/doc/latex/colortbl/colortbl.pdf
@@ -24183,6 +31448,7 @@ longdesc The package allows the user to obtain an RGB value (suitable
longdesc for use in the color package) from a wavelength of light. The
longdesc default unit is nanometres, but other units may be used. Note
longdesc that this function is also available within the xcolor.
+depend colorwav.ARCH
docfiles size=30
texmf-dist/doc/latex/colorwav/README details="Readme"
texmf-dist/doc/latex/colorwav/colorwav.pdf details="Package documentation"
@@ -24206,6 +31472,7 @@ longdesc proceedings. The auxiliary combinet package puts the titles and
longdesc authors from \maketitle commands into the main document's Table
longdesc of Contents. The package cooperates with the abstract and
longdesc titling packages.
+depend combine.ARCH
docfiles size=1
texmf-dist/doc/latex/combine/README details="Package Readme"
srcfiles size=35
@@ -24228,6 +31495,7 @@ longdesc Provides a range of differential, partial differential and
longdesc delimiter commands, together with a \fullfunction (function,
longdesc with both domain and range, and function operation) and various
longdesc reference commands.
+depend commath.ARCH
docfiles size=37
texmf-dist/doc/latex/commath/README details="Readme"
texmf-dist/doc/latex/commath/commath.pdf details="Package documentation"
@@ -24256,6 +31524,7 @@ longdesc \excludecoment{versionb} These environments are used as
longdesc \versiona ... \endversiona or \begin{versiona} ...
longdesc \end{versiona} with the opening and closing commands again on a
longdesc line of their own.
+depend comment.ARCH
docfiles size=2
texmf-dist/doc/latex/comment/comm_test_l.dvi
texmf-dist/doc/latex/comment/comm_test_l.tex
@@ -24274,6 +31543,7 @@ revision 779
shortdesc Multiple thebibliography environments.
longdesc Allows a second bibliography, optionally with a different
longdesc title, after the main bibliography.
+depend compactbib.ARCH
runfiles size=2
texmf-dist/tex/latex/compactbib/compactbib.sty
catalogue-version
@@ -24292,6 +31562,7 @@ longdesc including which font classes are typeset in and how many are
longdesc defined (all of them or just the basic, most commonly used
longdesc ones). The package has no dependencies other than the standard
longdesc ifthen package.
+depend complexity.ARCH
docfiles size=60
texmf-dist/doc/latex/complexity/README details="Readme"
texmf-dist/doc/latex/complexity/complexity.pdf details="Package documentation"
@@ -24308,6 +31579,7 @@ catalogue-license lppl
name components-of-TeX
category Documentation
revision 20
+depend components-of-TeX.ARCH
docfiles size=11
texmf-doc/doc/english/components-of-TeX/README
texmf-doc/doc/english/components-of-TeX/etexkomp.tex
@@ -24319,6 +31591,7 @@ docfiles size=11
name comprehensive
category Documentation
revision 20
+depend comprehensive.ARCH
docfiles size=870
texmf-doc/doc/english/comprehensive/README
texmf-doc/doc/english/comprehensive/SYMLIST
@@ -24339,6 +31612,7 @@ longdesc Complexity, and it can also be used for a lot of other
longdesc articles. You may like it since it contains a lot of features
longdesc as more intelligent references, a set of theorem definitions,
longdesc an algorithm environment, ... The class requires natbib.
+depend computational-complexity.ARCH
docfiles size=181
texmf-dist/doc/latex/computational-complexity/cc-portability-frame.tex
texmf-dist/doc/latex/computational-complexity/cc.pdf details="Package documentation"
@@ -24385,6 +31659,7 @@ longdesc A LaTeX package and font definition files to access the
longdesc Concrete mathematics fonts, which were derived from Computer
longdesc Modern math fonts using parameters from Concrete Roman text
longdesc fonts.
+depend concmath.ARCH
docfiles size=12
texmf-dist/doc/fonts/concmath/CATALOGUE
texmf-dist/doc/fonts/concmath/Makefile
@@ -24473,6 +31748,7 @@ revision 1487
shortdesc Concert programmes.
longdesc A class which provides the necessary macros to prepare a
longdesc (classical) concert programme; a sample is provided.
+depend concprog.ARCH
docfiles size=2
texmf-dist/doc/latex/concprog/program.dvi
texmf-dist/doc/latex/concprog/program.tex
@@ -24495,6 +31771,7 @@ longdesc beton, concmath and ccfonts packages. T1- and TS1-encoded
longdesc versions of the fonts are available in the ecc bundle, and
longdesc Adobe Type 1 versions of the ecc fonts are part of the cm-super
longdesc bundle.
+depend concrete.ARCH
docfiles size=3
texmf-dist/doc/fonts/concrete/CATALOGUE
texmf-dist/doc/fonts/concrete/Makefile
@@ -24546,6 +31823,7 @@ longdesc bibliography back-references. Confproc also uses many other
longdesc packages for fine tuning of the table of contents, bibliography
longdesc and index of authors. The added value of the class resides in
longdesc its time-saving aspects when designing conference proceedings.
+depend confproc.ARCH
docfiles size=716
texmf-dist/doc/latex/confproc/README details="Readme"
texmf-dist/doc/latex/confproc/buildcls
@@ -24617,6 +31895,7 @@ shortdesc The ConTeXt macro package.
longdesc A full featured, parameter driven macro package, which fully
longdesc supports advanced interactive documents. See the ConTeXt garden
longdesc for a wealth of support information.
+depend context.ARCH
docfiles size=118
texmf-dist/doc/context/bib/bibmod-doc.pdf
texmf-dist/doc/context/bib/bibmod-doc.tex
@@ -25853,6 +33132,7 @@ shortdesc Print a coloured contour around text.
longdesc This package generates a coloured contour around a given text
longdesc in order to enable printing text over a background without the
longdesc need of a coloured box around the text.
+depend contour.ARCH
docfiles size=53
texmf-dist/doc/latex/contour/ChangeLog
texmf-dist/doc/latex/contour/README details="Package Readme"
@@ -25881,6 +33161,7 @@ revision 2663
shortdesc Typeset recipes.
longdesc The package typesets recipes according to the style used in a
longdesc well-respected German cookery book.
+depend cooking.ARCH
docfiles size=25
texmf-dist/doc/latex/cooking/COPYING
texmf-dist/doc/latex/cooking/README details="Package Readme"
@@ -25908,6 +33189,7 @@ longdesc conversion of LaTeX documents to other executable formats (such
longdesc as Content MathML or Mathematica code) is greatly simplified.
longdesc The package requires the coolstr, coollist and forloop
longdesc packages.
+depend cool.ARCH
docfiles size=143
texmf-dist/doc/latex/cool/Content_LaTeX_Package_Demo.pdf details="EXamples of use"
texmf-dist/doc/latex/cool/Content_LaTeX_Package_Demo.tex
@@ -25933,6 +33215,7 @@ longdesc of the list while neglecting others—essentially turning lists
longdesc into a sort of array. Lists elements are accessed by specifying
longdesc the position of the object within the list (the index of the
longdesc item).
+depend coollist.ARCH
docfiles size=31
texmf-dist/doc/latex/coollist/README
texmf-dist/doc/latex/coollist/coollist.pdf details="Package documentation"
@@ -25955,6 +33238,7 @@ longdesc manipulation of strings. A string is defined as a sequence of
longdesc characters (not tokens). The package provides the ability to
longdesc access a specific character of a string, as well as determine
longdesc if the string contains numeric or integer data.
+depend coolstr.ARCH
docfiles size=34
texmf-dist/doc/latex/coolstr/README details="Readme"
texmf-dist/doc/latex/coolstr/coolstr.pdf details="Package documentation"
@@ -25977,6 +33261,7 @@ longdesc hyperlinks that pop up a brief tooltip when the mouse moves
longdesc over them and also open a small window containing additional
longdesc text. cooltooltips provides the mechanism used by the Visual
longdesc LaTeX FAQ to indicate the question that each hyperlink answers.
+depend cooltooltips.ARCH
docfiles size=57
texmf-dist/doc/latex/cooltooltips/README details="Readme"
texmf-dist/doc/latex/cooltooltips/cooltooltips.pdf details="Package documentation"
@@ -26000,6 +33285,7 @@ longdesc environment. The package may be integrated with other drawing
longdesc mechanisms: the documentation shows examples of drawing graphs
longdesc (coordinate tables created by Maple), using the eepic package's
longdesc drawing capabilities.
+depend coordsys.ARCH
docfiles size=87
texmf-dist/doc/latex/coordsys/README details="Bundle Readme"
texmf-dist/doc/latex/coordsys/coordsys.pdf details="Bundle documentation"
@@ -26018,6 +33304,7 @@ catalogue-license lppl
name coronet
category Package
revision 90
+depend coronet.ARCH
runfiles size=8
texmf-dist/fonts/tfm/cg/coronet/cor10u.tfm
texmf-dist/fonts/tfm/cg/coronet/cor6j.tfm
@@ -26031,6 +33318,7 @@ runfiles size=8
name courier
category Package
revision 2488
+depend courier.ARCH
runfiles size=419
texmf-dist/dvips/courier/config.ucr
texmf-dist/fonts/afm/adobe/courier/pcrb8a.afm
@@ -26222,6 +33510,7 @@ runfiles size=419
name courier-scaled
category Package
revision 1477
+depend courier-scaled.ARCH
docfiles size=15
texmf-dist/doc/latex/courier-scaled/Couriers.pdf
texmf-dist/doc/latex/courier-scaled/README
@@ -26244,6 +33533,7 @@ revision 792
shortdesc Prepare university course outlines.
longdesc Courseoutline is a class designed to minimise markup in a
longdesc tedious task that needs to be repeated often.
+depend courseoutline.ARCH
docfiles size=2
texmf-dist/doc/latex/courseoutline/Outline.tex
runfiles size=3
@@ -26259,6 +33549,7 @@ revision 793
shortdesc Prepare university course papers.
longdesc Coursepaper is a class with which students can provide simple
longdesc course papers, in a uniform design to ease the task of marking.
+depend coursepaper.ARCH
docfiles size=2
texmf-dist/doc/latex/coursepaper/coursepaper.tex
runfiles size=4
@@ -26288,6 +33579,7 @@ longdesc the main document and its page layout. This package requires
longdesc four other packages (keyval, url, textcomp, and verbatim), but
longdesc all of them are standard packages and should be part of every
longdesc LaTeX installation.
+depend coverpage.ARCH
docfiles size=86
texmf-dist/doc/latex/coverpage/CoverPage.pdf details="Package documentation:"
texmf-dist/doc/latex/coverpage/ECCV06Sample.pdf details="Another sample:"
@@ -26314,6 +33606,7 @@ longdesc Numerous minor LaTeX enhancements for linguistics, including
longdesc multiple accents on the same letter, interline glosses (word-
longdesc by-word translations), Discourse Representation Structures, and
longdesc example numbering.
+depend covington.ARCH
docfiles size=10
texmf-dist/doc/latex/covington/covington.dvi
texmf-dist/doc/latex/covington/covington.tex
@@ -26335,6 +33628,7 @@ longdesc calligraphic), Croatian Cyrillic, stećak ornaments and
longdesc Croatian wattle patterns. The fonts are provided as MetaFont
longdesc source; some Plain TeX macro support is provided, including
longdesc hyphenation patterns.
+depend croatian.ARCH
docfiles size=6
texmf-dist/doc/fonts/croatian/crogl.tex
texmf-dist/doc/fonts/croatian/readme.txt
@@ -26403,6 +33697,7 @@ longdesc and a new cropmarks index and is printed at the top of the
longdesc page. A configuration command is provided for the info line
longdesc font. Options for better collaboration with dvips, pdftex and
longdesc vtex are provided.
+depend crop.ARCH
docfiles size=61
texmf-dist/doc/latex/crop/crop.pdf
texmf-dist/doc/latex/crop/crop.txt
@@ -26424,6 +33719,7 @@ shortdesc Crossreferences within documents.
longdesc The package defines cross-references (essentially ‘grand’
longdesc label references), which may be listed in a table of cross-
longdesc references.
+depend crossreference.ARCH
docfiles size=17
texmf-dist/doc/latex/crossreference/README details="Readme"
texmf-dist/doc/latex/crossreference/crossreference.pdf details="Package documentation"
@@ -26447,6 +33743,7 @@ longdesc The package provides a LaTeX method of typesetting crosswords,
longdesc and assists the composer ensure that the grid all goes together
longdesc properly. Brian Hamilton Kelly's original was written for LaTeX
longdesc 2.09, and needed to be updated to run with current LaTeX.
+depend crosswrd.ARCH
docfiles size=22
texmf-dist/doc/latex/crosswrd/crosswrd.dvi
texmf-dist/doc/latex/crosswrd/grid0.tex
@@ -26470,6 +33767,7 @@ revision 1487
shortdesc Font for symmetry elements in crystallography.
longdesc The font is in MetaFont source; a LaTeX .fd file for its use is
longdesc also provided.
+depend cryst.ARCH
docfiles size=10
texmf-dist/doc/fonts/cryst/cryst.dvi details="Package documentation (DVI)" language="de"
texmf-dist/doc/fonts/cryst/cryst.ger details="Package documentation (text)" language="de"
@@ -26486,6 +33784,7 @@ catalogue-license other-free
name cs
category Package
revision 101
+depend cs.ARCH
execute addMixedMap csother.map
execute addMixedMap cstext.map
runfiles size=784
@@ -26816,6 +34115,7 @@ name cslatex
category Package
revision 4912
shortdesc LaTeX support for Czech/Slovak typesetting.
+depend cslatex.ARCH
docfiles size=49
texmf-dist/doc/cslatex/base/INSTALL.cslatex
texmf-dist/doc/cslatex/base/README-cspsfont
@@ -26881,6 +34181,7 @@ name csplain
category Package
revision 4912
shortdesc Plain TeX support for Czech/Slovak typesetting.
+depend csplain.ARCH
runfiles size=49
texmf-dist/tex/csplain/base/cavantga.tex
texmf-dist/tex/csplain/base/cbookman.tex
@@ -26933,6 +34234,7 @@ longdesc available. There are additional facilities designed to cope
longdesc with the more specific demands of academic writing, especially
longdesc in the humanities and the social sciences. All quote styles as
longdesc well as the optional active quotes are freely configurable.
+depend csquotes.ARCH
docfiles size=77
texmf-dist/doc/latex/csquotes/README details="Package README"
texmf-dist/doc/latex/csquotes/csquotes.pdf details="Tutorial on use of the package"
@@ -26955,6 +34257,7 @@ longdesc Instead of an environment, a command with 4 arguments is used;
longdesc the first is optional and is used for key,value pairs
longdesc generating variations on the defaults and offering a route for
longdesc future extensions.
+depend ctable.ARCH
docfiles size=322
texmf-dist/doc/latex/ctable/01a
texmf-dist/doc/latex/ctable/01a.pdf
@@ -27040,6 +34343,7 @@ catalogue-license lppl
name ctib
category Package
revision 803
+depend ctib.ARCH
docfiles size=100
texmf-dist/doc/latex/ctib/README
texmf-dist/doc/latex/ctib/ctib4tex.pdf
@@ -27072,6 +34376,7 @@ revision 2664
shortdesc Typeset recipes.
longdesc Typeset recipes with the ingredients lined up with their method
longdesc step (somewhat similarly to the layout used in cooking).
+depend cuisine.ARCH
docfiles size=24
texmf-dist/doc/latex/cuisine/README details="Package Readme"
texmf-dist/doc/latex/cuisine/cuisine.pdf details="Package documentation"
@@ -27093,6 +34398,7 @@ longdesc Currvita is a package rather than a class (like most other
longdesc curriculum vitae offerings). The author considers that a
longdesc curriculum vitae can quite reasonably form part of another
longdesc document (such as a letter, or a dissertation).
+depend currvita.ARCH
docfiles size=30
texmf-dist/doc/latex/currvita/README details="Package Readme"
texmf-dist/doc/latex/currvita/currvita.pdf details="Package documentation"
@@ -27112,6 +34418,7 @@ category Documentation
revision 1756
shortdesc A LaTeX tutorial.
longdesc The tutorial is presented as a set of slides (in Portuguese).
+depend cursolatex.ARCH
docfiles size=544
texmf-doc/doc/portuguese/cursolatex/README
texmf-doc/doc/portuguese/cursolatex/cursolatex.pdf language="pt"
@@ -27133,6 +34440,7 @@ revision 3107
shortdesc Draw a cursor in an equation.
longdesc Creates a simple L-shaped ‘cursor’ in a mathematics
longdesc environment to highlight a part of an equation.
+depend cursor.ARCH
docfiles size=9
texmf-dist/doc/latex/cursor/cursor.pdf details="Samples of use (with source)"
texmf-dist/doc/latex/cursor/cursor.tex
@@ -27147,6 +34455,7 @@ catalogue-license unknown
name curve
category Package
revision 4674
+depend curve.ARCH
docfiles size=49
texmf-dist/doc/latex/curve/NEWS
texmf-dist/doc/latex/curve/README
@@ -27170,6 +34479,7 @@ longdesc for lines and vectors, new specifications for line terminations
longdesc and joins, arcs with any angular aperture, arcs with arrows at
longdesc one or both ends, generic curves specified with their nodes and
longdesc the tangent direction at these nodes.
+depend curve2e.ARCH
docfiles size=56
texmf-dist/doc/latex/curve2e/README
texmf-dist/doc/latex/curve2e/curve2e.pdf details="Package documentation"
@@ -27195,6 +34505,7 @@ longdesc symbols or dash patterns along curves. Equivalent to technical
longdesc pens with compasses and French curves. Curves consist of short
longdesc secants drawn by overlapping disks or line drawing \specials
longdesc selected by package options.
+depend curves.ARCH
docfiles size=37
texmf-dist/doc/latex/curves/curves.pdf details="Package documentation"
srcfiles size=18
@@ -27216,6 +34527,7 @@ longdesc Package generating customized BibTeX bibliography styles from a
longdesc generic file using docstrip driven by parameters generated by a
longdesc menu application. Includes support for the Harvard style of
longdesc citations.
+depend custom-bib.ARCH
docfiles size=117
texmf-dist/doc/latex/custom-bib/README.420
texmf-dist/doc/latex/custom-bib/makebst.pdf details="Package documentation"
@@ -27258,6 +34570,7 @@ category Package
revision 1487
shortdesc A package for creating a curriculum vitae.
longdesc The package is distributed with two example files.
+depend cv.ARCH
docfiles size=6
texmf-dist/doc/latex/cv/ApplicationLetter.dvi
texmf-dist/doc/latex/cv/ApplicationLetter.tex
@@ -27278,6 +34591,7 @@ 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 cweb.ARCH
docfiles size=34
texmf-dist/doc/plain/cweb/cwebman.dvi
runfiles size=22
@@ -27300,6 +34614,7 @@ shortdesc A LaTeX version of CWEB.
longdesc This bundle allows marking-up of CWEB code in LaTeX. The
longdesc distribution includes the "Counting Words" program distributed
longdesc with CWEB, edited to run with LaTeX.
+depend cweb-latex.ARCH
docfiles size=228
texmf-dist/doc/latex/cweb-latex/CATALOG
texmf-dist/doc/latex/cweb-latex/History
@@ -27391,6 +34706,7 @@ catalogue-license gpl
name cwpuzzle
category Package
revision 1487
+depend cwpuzzle.ARCH
docfiles size=13
texmf-dist/doc/latex/cwpuzzle/cwpuzzle.dvi
srcfiles size=21
@@ -27415,6 +34731,7 @@ longdesc fonts encoded under the T2* and X2 encodings. These encodings
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 cyrillic.ARCH
docfiles size=169
texmf-dist/doc/latex/cyrillic/00readme.txt
texmf-dist/doc/latex/cyrillic/changes.txt
@@ -27553,6 +34870,7 @@ catalogue-license lppl
name cyrplain
category Package
revision 621
+depend cyrplain.ARCH
runfiles size=17
texmf-dist/tex/plain/cyrplain/README
texmf-dist/tex/plain/cyrplain/cyramstx.ini
@@ -27583,6 +34901,7 @@ longdesc thaTiStOsaYsentenceSiNthEcodElooKlikEthiS. In some cases, the
longdesc man has no arms, making it impossible for him to hold a flag.
longdesc In these cases, he is wearing a flag on his hat in the
longdesc ‘character’. The font is distributed as MetaFont source.
+depend dancers.ARCH
runfiles size=9
texmf-dist/fonts/source/public/dancers/dancers.mf
texmf-dist/fonts/tfm/public/dancers/dancers.tfm
@@ -27598,6 +34917,7 @@ shortdesc Draw dashed boxes.
longdesc The package can draw boxes that perform like \framebox or
longdesc \fbox, but use dashed lines. The package can also draw (an
longdesc illusion of) vertical stacks of boxes.
+depend dashbox.ARCH
srcfiles size=5
texmf-dist/source/latex/dashbox/dashbox.dtx
texmf-dist/source/latex/dashbox/dashbox.ins
@@ -27622,6 +34942,7 @@ longdesc of dash segments and the space between those segments. Because
longdesc dashrule's rules are constructed internally using \rule (as
longdesc opposed to, e.g., PostScript \specials) they are fully
longdesc compatible with every LaTeX back-end processor.
+depend dashrule.ARCH
docfiles size=1
texmf-dist/doc/latex/dashrule/README
srcfiles size=5
@@ -27659,6 +34980,7 @@ longdesc manipulated there before being printed (this permits a LaTeX-
longdesc based route to printing bibliographies in formats for which no
longdesc BibTeX style is available). The bundle replaces and supersedes
longdesc the author’s csvtools bundle.
+depend datatool.ARCH
docfiles size=291
texmf-dist/doc/latex/datatool/README details="Readme"
texmf-dist/doc/latex/datatool/doc/CHANGES
@@ -27686,6 +35008,7 @@ longdesc The package provides a file list (similar to that offered by
longdesc \listfiles), neatly laid out as a table. The main document can
longdesc be included in the list, and a command is available for
longdesc providing RCS-maintained data for printing in the file list.
+depend dateiliste.ARCH
docfiles size=73
texmf-dist/doc/latex/dateiliste/README details="Readme"
texmf-dist/doc/latex/dateiliste/README-de details="Readme" language="de"
@@ -27710,6 +35033,7 @@ longdesc This package provides commands to convert a date into a number
longdesc and vice versa. Additionally there are commands for
longdesc incrementing and decrementing a date. Leap years and the
longdesc Gregorian calendar reform are considered.
+depend datenumber.ARCH
docfiles size=13
texmf-dist/doc/latex/datenumber/README.txt details="Package README" language="en"
texmf-dist/doc/latex/datenumber/doc.dvi
@@ -27740,6 +35064,7 @@ longdesc Provides various different formats for the command \today, and
longdesc also provides commands for displaying the current time, in 12-
longdesc hour, 24-hour or text format. The package requires the fmtcount
longdesc package.
+depend datetime.ARCH
docfiles size=64
texmf-dist/doc/latex/datetime/CHANGES
texmf-dist/doc/latex/datetime/README details="Package README"
@@ -27806,6 +35131,7 @@ catalogue-license lppl
name dcpic
category Package
revision 818
+depend dcpic.ARCH
docfiles size=88
texmf-dist/doc/latex/dcpic/examples.tex
texmf-dist/doc/latex/dcpic/gpl.txt
@@ -27821,6 +35147,7 @@ shortdesc LaTeX package for the English raised decimal point.
longdesc This LaTeX package should be used by people who need the
longdesc traditional English raised decimal point, instead of the
longdesc American-style period.
+depend decimal.ARCH
srcfiles size=4
texmf-dist/source/latex/decimal/decimal.dtx
texmf-dist/source/latex/decimal/decimal.ins
@@ -27838,6 +35165,7 @@ shortdesc Flexible numbering of equations.
longdesc Provides a more flexible numbering of equations and 'recycled'
longdesc equations, including 'partial' equation numbers ("3a", "3b",
longdesc etc.).
+depend deleq.ARCH
docfiles size=15
texmf-dist/doc/latex/deleq/deleq.dvi
texmf-dist/doc/latex/deleq/delex.dvi
@@ -27861,6 +35189,7 @@ longdesc This experimental package can read and parse text tables
longdesc delimited by user-defined tokens (e.g., tab). It can be used
longdesc for serial letters and the like, making it easier to export the
longdesc data file from MS-Excel/MS-Word
+depend delimtxt.ARCH
docfiles size=20
texmf-dist/doc/latex/delimtxt/delimtxt.pdf
texmf-dist/doc/latex/delimtxt/resulta.dat
@@ -27886,6 +35215,7 @@ shortdesc A diagnostic tool for a TeX installation.
longdesc Provides macros to assist evaluation of the capabilities of a
longdesc TeX installation (i.e., what extensions it supports). An
longdesc example document that examines the installation is available.
+depend diagnose.ARCH
docfiles size=30
texmf-dist/doc/latex/diagnose/README details="Package Readme"
texmf-dist/doc/latex/diagnose/diagnose.pdf
@@ -27907,6 +35237,7 @@ revision 1487
shortdesc Macros for constructing interactive LaTeX scripts.
longdesc Gathers together a bunch of code and examples about how to
longdesc write macros to carry on a dialogue with the user.
+depend dialogl.ARCH
docfiles size=128
texmf-dist/doc/latex/dialogl/animals.tex
texmf-dist/doc/latex/dialogl/animals2.tex
@@ -27947,6 +35278,7 @@ revision 1487
shortdesc A font for die faces.
longdesc A MetaFont font that can produce die faces in 2D or with
longdesc various 3D effects.
+depend dice.ARCH
docfiles size=2
texmf-dist/doc/fonts/dice/dice3d.dvi
texmf-dist/doc/fonts/dice/dice3d.tex
@@ -27967,6 +35299,7 @@ longdesc keys (used especially in biology for species identification),
longdesc taking care of numbering and indentation of successive key
longdesc steps automatically. An example file is provided, which
longdesc demonstrates usage.
+depend dichokey.ARCH
docfiles size=3
texmf-dist/doc/latex/dichokey/rhodocyb.dvi
texmf-dist/doc/latex/dichokey/rhodocyb.tex
@@ -27986,6 +35319,7 @@ longdesc Georg Verweyen and all files required to use it with LaTeX on
longdesc the Unix or PC platforms. The font provides a number of symbols
longdesc commonly used in dictionaries. The accompanying macro package
longdesc makes the symbols accessible as LaTeX commands.
+depend dictsym.ARCH
execute addMap dictsym.map
docfiles size=9
texmf-dist/doc/fonts/dictsym/README details="Readme"
@@ -28012,6 +35346,7 @@ longdesc can be solved in terms of so-called “configurations”. A
longdesc configuration is basically a square matrix of \circ and \bullet
longdesc symbols. This package provides a convenient and compact
longdesc mechanism for displaying these configurations.
+depend digiconfigs.ARCH
docfiles size=34
texmf-dist/doc/latex/digiconfigs/README details="Readme"
texmf-dist/doc/latex/digiconfigs/digiconfigs.pdf details="Package documentation"
@@ -28031,6 +35366,7 @@ longdesc Bibliography style files intended for texts in german. They
longdesc draw up bibliographies in accordance with the german DIN 1505,
longdesc parts 2 and 3. For more information see the included
longdesc documentation.
+depend dinat.ARCH
docfiles size=9
texmf-dist/doc/bibtex/dinat/dinat-index.html language="de"
texmf-dist/doc/bibtex/dinat/history.html
@@ -28055,6 +35391,7 @@ longdesc which the user can recognize what they are used for. In
longdesc addition there are example files showing how letters may be
longdesc created with the package. A graphical interface for use of the
longdesc dinbrief is provided in the dinbrief-GUI bundle.
+depend dinbrief.ARCH
docfiles size=151
texmf-dist/doc/latex/dinbrief/brfbody.tex
texmf-dist/doc/latex/dinbrief/brfkopf.tex
@@ -28088,6 +35425,7 @@ revision 2411
shortdesc Two dingbat symbol fonts.
longdesc The fonts (ark10 and dingbat) are specified in MetaFont;
longdesc support macros are provided for use in plain TeX and in LaTeX.
+depend dingbat.ARCH
docfiles size=34
texmf-dist/doc/latex/dingbat/README details="Readme"
texmf-dist/doc/latex/dingbat/dingbat.pdf details="Package details including symbol table"
@@ -28115,6 +35453,7 @@ shortdesc An address book using BibTeX.
longdesc A package for LaTeX and BibTeX that facilitates the
longdesc construction, maintenance and exploitation of an address book-
longdesc like database.
+depend directory.ARCH
docfiles size=56
texmf-dist/doc/latex/directory/README details="Package Readme"
texmf-dist/doc/latex/directory/directory.pdf details="Package documentation"
@@ -28146,6 +35485,7 @@ longdesc typesetting dissertations in Russian. One of its primary
longdesc advantages is a simplicity of format specification for
longdesc titlepage, headers and elements of automatically generated
longdesc lists (table of contents, list of figures, etc).
+depend disser.ARCH
docfiles size=104
texmf-dist/doc/latex/disser/README details="Readme (English)" language="en"
texmf-dist/doc/latex/disser/README.ru details="Readme (Russian)" language="ru"
@@ -28246,6 +35586,7 @@ longdesc Danish. The files have been extended with URL, ISBN, ISSN,
longdesc annote and printing fields which can be enabled through a LaTeX
longdesc style file. Dk-bib also comes with a couple of Danish sorting
longdesc order files for BibTeX8.
+depend dk-bib.ARCH
docfiles size=115
texmf-dist/doc/latex/dk-bib/COPYRIGHT
texmf-dist/doc/latex/dk-bib/README details="Readme"
@@ -28287,6 +35628,7 @@ longdesc sample is included in the distribution); – dlfltxbmisc:
longdesc various macros for typesetting LaTeX arguments, and the macro
longdesc used in the bibliography that can wrap a URL up into a bibtex
longdesc entry.
+depend dlfltxb.ARCH
docfiles size=166
texmf-dist/doc/latex/dlfltxb/README details="Readme"
texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.pdf details="dlfltxbcodetips package documentation"
@@ -28316,6 +35658,7 @@ longdesc Defines a means of specifying sequences of bases. The bases may
longdesc be numbered (per line) and you may specify that subsequences be
longdesc coloured. For a more ‘vanilla-flavoured’ way of typesetting
longdesc base sequences, the user might consider the seqsplit package.
+depend dnaseq.ARCH
docfiles size=16
texmf-dist/doc/latex/dnaseq/DNAtest.dvi
texmf-dist/doc/latex/dnaseq/DNAtest.tex
@@ -28337,6 +35680,7 @@ shortdesc Document non-LaTeX code.
longdesc Extends the doc package to cater for documenting non-LaTeX
longdesc code, such as MetaFont or MetaPost, or other programming
longdesc languages.
+depend docmfp.ARCH
docfiles size=1
texmf-dist/doc/latex/docmfp/README details="Package Readme"
srcfiles size=7
@@ -28360,6 +35704,7 @@ longdesc all been spotted). This will either upset (La)TeX, or your PDF
longdesc reader. This package contains a single user-level command
longdesc \doi{}, which takes a DOI number, and creates a correct
longdesc hyperlink from it.
+depend doi.ARCH
docfiles size=1
texmf-dist/doc/latex/doi/README details="Readme"
runfiles size=1
@@ -28376,6 +35721,7 @@ shortdesc Special commands for use in bibliographies.
longdesc The package provides the commands \doi, \pubmed and \citeurl.
longdesc These commands are primarily designed for use in
longdesc bibliographies. A LaTeX2HTML style file is also provided.
+depend doipubmed.ARCH
docfiles size=25
texmf-dist/doc/latex/doipubmed/CHANGES
texmf-dist/doc/latex/doipubmed/README details="Readme"
@@ -28401,6 +35747,7 @@ longdesc equations, one reportedly used in 'old style Britsh books':
longdesc equations aligned on the left, with dots on the right leading
longdesc to the equation number. In default of an equation number, the
longdesc package operates much like the fleqn class option (no leaders).
+depend dotseqn.ARCH
srcfiles size=6
texmf-dist/source/latex/dotseqn/dotseqn.dtx
texmf-dist/source/latex/dotseqn/dotseqn.ins
@@ -28423,6 +35770,7 @@ longdesc graphs). If you have shell-escape enabled, the package will
longdesc arrange for your files to be processed at LaTeX time;
longdesc otherwise, the conversion must be done manually as an
longdesc intermediate process before a second LaTeX run.
+depend dottex.ARCH
docfiles size=30
texmf-dist/doc/latex/dottex/README
texmf-dist/doc/latex/dottex/dottex.pdf
@@ -28448,6 +35796,7 @@ longdesc numbers (Z), rational numbers (Q), real numbers (R) and complex
longdesc numbers (C). The font is available both as MetaFont source and
longdesc in Adobe Type 1 format. The fonts appear in the blackboard bold
longdesc sampler.
+depend doublestroke.ARCH
execute addMap dstroke.map
docfiles size=31
texmf-dist/doc/fonts/doublestroke/README details="Package Readme"
@@ -28493,6 +35842,7 @@ longdesc used inside a figure, table, or other float environment. If the
longdesc first of a 2-page spread uses a "leftfullpage" environment, the
longdesc float will only be typeset on an even-numbered page, and the
longdesc two floats will appear side-by-side in a two-sided document.
+depend dpfloat.ARCH
docfiles size=1
texmf-dist/doc/latex/dpfloat/README.dpfloat
runfiles size=1
@@ -28511,6 +35861,7 @@ longdesc across the background (or at the bottom) of each (or selected)
longdesc pages of the document. The package uses PostScript \special
longdesc commands, and may not therefore be used with PDFLaTeX. For that
longdesc usage, consider the wallpaper or draftwatermark packages.
+depend draftcopy.ARCH
docfiles size=45
texmf-dist/doc/latex/draftcopy/README
texmf-dist/doc/latex/draftcopy/THIS-IS-VERSION-2.16
@@ -28570,6 +35921,7 @@ longdesc CONFIDENTIAL across document pages. The package performs a
longdesc similar function to that of draftcopy, but its implementation
longdesc is output device independent, and very made simple by relying
longdesc on everpage.
+depend draftwatermark.ARCH
docfiles size=7
texmf-dist/doc/latex/draftwatermark/README details="Readme"
texmf-dist/doc/latex/draftwatermark/draftwatermark.pdf details="Package documentation"
@@ -28593,6 +35945,7 @@ longdesc or in verse; new document divisions corresponding to acts and
longdesc scenes; macros that control the appearance of characters and
longdesc stage directions; and automatic generation of a `dramatis
longdesc personae' list.
+depend dramatist.ARCH
docfiles size=83
texmf-dist/doc/latex/dramatist/README details="Package Readme"
texmf-dist/doc/latex/dramatist/dramatist.pdf details="Package documentation"
@@ -28615,6 +35968,7 @@ revision 613
shortdesc General drawing macros.
longdesc A low level (DraTex.sty) and a high-level (AlDraTex.sty)
longdesc drawing package written entirely in TeX.
+depend dratex.ARCH
docfiles size=12
texmf-dist/doc/generic/dratex/Examples.tex
texmf-dist/doc/generic/dratex/README
@@ -28636,6 +35990,7 @@ longdesc A LaTeX2e macro for dropping the first character(s) (or
longdesc word(s)) of a paragraph, extending the LaTeX 2.09 package
longdesc dropcaps and automatically taking care of finding the font
longdesc name.
+depend dropping.ARCH
docfiles size=5
texmf-dist/doc/latex/dropping/dropping.dvi
srcfiles size=6
@@ -28658,6 +36013,7 @@ longdesc “Die TeXnische Komödie” — the communications of the
longdesc German TeX Users Group DANTE e.V. This means that this class
longdesc can be used by article writers to typeset a single article as
longdesc well as to produce the complete journal.
+depend dtk.ARCH
docfiles size=5
texmf-dist/doc/latex/dtk/README details="Readme"
texmf-dist/doc/latex/dtk/beispiel.ltx
@@ -28683,6 +36039,7 @@ catalogue-license other-free
name dtxgallery
category Package
revision 4715
+depend dtxgallery.ARCH
docfiles size=95
texmf-dist/doc/latex/dtxgallery/README
texmf-dist/doc/latex/dtxgallery/conditional-code.pdf
@@ -28698,6 +36055,7 @@ srcfiles size=5
name dtxtut
category Documentation
revision 20
+depend dtxtut.ARCH
docfiles size=88
texmf-doc/doc/english/dtxtut/README
texmf-doc/doc/english/dtxtut/cskeleton.dtx
@@ -28715,6 +36073,7 @@ longdesc These fonts are designed for titling use, and consist of
longdesc capital roman letters only. Together with the normal set of
longdesc base shapes, the family also offers an informal shape. LaTeX
longdesc support is available in the duerer-latex bundle.
+depend duerer.ARCH
docfiles size=1
texmf-dist/doc/fonts/duerer/duerer.readme details="Readme"
runfiles size=30
@@ -28755,6 +36114,7 @@ longdesc class is not limited to DVDs—you can of course typeset
longdesc archives of CD-ROMs, Audio-CDs and so on. Supported languages
longdesc at the moment: English, French, German, Italian, Polish,
longdesc Portuguese, Spanish. Some help is needed for other languages!
+depend dvdcoll.ARCH
docfiles size=137
texmf-dist/doc/latex/dvdcoll/CHANGES
texmf-dist/doc/latex/dvdcoll/INSTALL details="Installation instructions"
@@ -28804,6 +36164,7 @@ category Package
revision 2756
shortdesc A DVI to PostScript driver.
longdesc This package has been withdrawn from CTAN.
+depend dvips.ARCH
runfiles size=49
texmf-dist/dvips/base/ehandler.ps
texmf-dist/dvips/base/resolution400.ps
@@ -28855,6 +36216,7 @@ longdesc invers, select transparency / paper for tektronix 550/560,
longdesc manual feeder, envelope feeder, and tray 1, 2 and 3, and
longdesc printing a PostScript grid underneath the page material—very
longdesc useful for measuring and eliminating paper feed errors!
+depend dvipsconfig.ARCH
runfiles size=39
texmf-dist/dvips/dvipsconfig/README
texmf-dist/dvips/dvipsconfig/addpsctrl
@@ -28904,6 +36266,7 @@ longdesc cartan coefficients in boxes connected by a series of lines.
longdesc Such a diagram is a tool for working out the states and their
longdesc weights in terms of the fundamental weights and the simple
longdesc roots. The package makes use of the author's coollist package.
+depend dyntree.ARCH
docfiles size=38
texmf-dist/doc/latex/dyntree/README details="Readme"
texmf-dist/doc/latex/dyntree/dyntree.pdf details="Package documentation"
@@ -28920,6 +36283,7 @@ catalogue-license lgpl
name eCards
category Package
revision 841
+depend eCards.ARCH
docfiles size=471
texmf-dist/doc/latex/eCards/README
texmf-dist/doc/latex/eCards/eCard.cus
@@ -28970,6 +36334,7 @@ shortdesc Macros for making EAN barcodes.
longdesc Provides EAN-8 and EAN-13 forms. The package needs the ocr-b
longdesc fonts; note that the fonts are not available under a free
longdesc licence, as the macros are.
+depend ean.ARCH
docfiles size=2
texmf-dist/doc/fonts/ean/README details="Readme"
texmf-dist/doc/fonts/ean/ocrbinfo
@@ -29012,6 +36377,7 @@ longdesc matrices; – easyeqn, support for various aspects of
longdesc equations; – easymat, support for composing matrices; –
longdesc easytable, support for writing tables; – easyvector, a C-like
longdesc syntax for writing vectors.
+depend easy.ARCH
docfiles size=125
texmf-dist/doc/latex/easy/README
texmf-dist/doc/latex/easy/doc.dvi/docbib.dvi
@@ -29050,6 +36416,7 @@ longdesc picture environment. Linear, quadratic, and cubic bezier curves
longdesc are supplied in connection with higher level circle drawing
longdesc commands. Additionally some macros for the calculation of curve
longdesc lenghts are part of this package.
+depend ebezier.ARCH
docfiles size=82
texmf-dist/doc/latex/ebezier/ebezier.pdf details="Package documentation"
srcfiles size=18
@@ -29065,6 +36432,7 @@ catalogue-license lppl
name ebong
category Package
revision 2124
+depend ebong.ARCH
docfiles size=27
texmf-dist/doc/latex/ebong/ANNOUNCE.txt
texmf-dist/doc/latex/ebong/README
@@ -29080,6 +36448,7 @@ longdesc The ebsthesis class and ebstools package facilitate the
longdesc production of camera-ready manuscripts in conformance with the
longdesc guidelines of Gabler Verlag and typographical rules established
longdesc by the European Business School.
+depend ebsthesis.ARCH
docfiles size=67
texmf-dist/doc/latex/ebsthesis/README
texmf-dist/doc/latex/ebsthesis/ebsthesis.pdf details="Package documentation"
@@ -29113,6 +36482,7 @@ longdesc the cm-super bundle. The other Computer Modern-style T1-encoded
longdesc Type 1 set, Latin Modern, is not actually a direct development
longdesc of the EC set, and differs from the EC in a number of
longdesc particulars.
+depend ec.ARCH
docfiles size=30
texmf-dist/doc/fonts/ec/00bugs.txt
texmf-dist/doc/fonts/ec/00error.txt
@@ -30370,6 +37740,7 @@ longdesc Fonts. This is the T1-encoded extension of Knuth's Concrete
longdesc fonts, including also the corresponding text companion fonts.
longdesc Adobe Type 1 versions of the fonts are available as part of the
longdesc cm-super font bundle.
+depend ecc.ARCH
docfiles size=3
texmf-dist/doc/fonts/ecc/copyrite
texmf-dist/doc/fonts/ecc/liesmich
@@ -30450,6 +37821,7 @@ shortdesc Trees using epic and eepic macros.
longdesc The package recursively draws trees: each subtree is defined in
longdesc a ‘bundle’ environment, with a set of leaves described by
longdesc \chunk macros. A chunk may have a bundle environment inside it.
+depend ecltree.ARCH
runfiles size=3
texmf-dist/tex/latex/ecltree/eclbip.sty
texmf-dist/tex/latex/ecltree/ecltree.sty
@@ -30467,6 +37839,7 @@ longdesc fonts with oldstyle numerals. These files can only be used
longdesc together with the standard ec fonts. The style file eco.sty is
longdesc sufficient to use the eco fonts but if you intend to use other
longdesc font families as well, e.g., PostScript fonts, try altfont.
+depend eco.ARCH
docfiles size=9
texmf-dist/doc/fonts/eco/CHANGES
texmf-dist/doc/fonts/eco/COPYING
@@ -31000,6 +38373,7 @@ longdesc European Review of Agricultural Economics (ERAE), the
longdesc International Economic Review (IER) and Economica. The macro
longdesc sets are based on (and require) the harvard package, and all
longdesc provide variations of author-date styles of presentation.
+depend economic.ARCH
docfiles size=20
texmf-dist/doc/bibtex/economic/README
texmf-dist/doc/bibtex/economic/aer-natbib.tex
@@ -31041,6 +38415,7 @@ catalogue-license lppl
name ecv
category Package
revision 5019
+depend ecv.ARCH
docfiles size=83
texmf-dist/doc/latex/ecv/COPYING
texmf-dist/doc/latex/ecv/README
@@ -31070,6 +38445,7 @@ longdesc collaboration on a LaTeX text. These allow authors to annotate
longdesc status information in the source. In draft mode, the
longdesc annotations are shown for communication, and in publication
longdesc mode these are suppressed.
+depend ed.ARCH
docfiles size=36
texmf-dist/doc/latex/ed/README details="Readme"
texmf-dist/doc/latex/ed/ed.pdf details="Package documentation"
@@ -31088,6 +38464,7 @@ category Package
revision 613
shortdesc Typeset scholarly edition.
longdesc A macro package for typesetting scholarly critical editions.
+depend edmac.ARCH
docfiles size=89
texmf-dist/doc/latex/edmac/COPYRIGHT
texmf-dist/doc/latex/edmac/braonain.tex
@@ -31117,6 +38494,7 @@ shortdesc Typeset scholarly edition.
longdesc A macro package for typesetting scholarly critical editions.
longdesc Provides macros for critical edition typesetting with LaTeX,
longdesc including support for line numbers and layers of footnotes.
+depend ednotes.ARCH
docfiles size=144
texmf-dist/doc/latex/ednotes/CHANGES.txt
texmf-dist/doc/latex/ednotes/CHANGING.txt
@@ -31153,6 +38531,7 @@ longdesc ‘her’, ‘her’ and ‘hers". Apart from the pronouns, one
longdesc can define ‘word pairs’, such as mother/father,
longdesc daughter/son, and so on. Gender may be defined once per
longdesc document, as an environment, or may be flipped on the fly.
+depend eemeir.ARCH
docfiles size=41
texmf-dist/doc/latex/eemeir/README
texmf-dist/doc/latex/eemeir/eemeir.pdf
@@ -31176,6 +38555,7 @@ longdesc circles in any radii, and the drawing of dotted and dashed
longdesc lines much faster with much less TeX memory, and providing
longdesc several new commands for drawing ellipses, arcs, splines, and
longdesc filled circles and ellipses.
+depend eepic.ARCH
docfiles size=20
texmf-dist/doc/latex/eepic/eepic.dvi
texmf-dist/doc/latex/eepic/eepic.tex
@@ -31210,6 +38590,7 @@ longdesc are used for graphics. (An older version of the package, which
longdesc uses the LaTeX picture environment rather than PSTricks and
longdesc consequently has many fewer features is available on the
longdesc package home page.)
+depend egameps.ARCH
docfiles size=51
texmf-dist/doc/latex/egameps/README
texmf-dist/doc/latex/egameps/egameps.pdf
@@ -31228,6 +38609,7 @@ shortdesc Encapsulate Gnuplot sources in LaTeX documents.
longdesc A package to encapsulate gnuplot commands in a LaTeX source
longdesc file, so that a document’s figures are maintained in parallel
longdesc with the document source itself.
+depend egplot.ARCH
docfiles size=38
texmf-dist/doc/latex/egplot/egplot.README
texmf-dist/doc/latex/egplot/manual.ps.gz
@@ -31255,6 +38637,7 @@ longdesc Computer Modern family of fonts. The font definitions use code
longdesc from the sauter fonts, so those fonts have to be installed
longdesc before using eiad. OT1*.fd files are provided for use with
longdesc LaTeX.
+depend eiad.ARCH
docfiles size=44
texmf-dist/doc/fonts/eiad/Leigh_me.txt
texmf-dist/doc/fonts/eiad/amhrawn.ps.gz
@@ -31355,6 +38738,7 @@ shortdesc Victor Eijkhout's packages.
longdesc Three unrelated packages: – DB_process, to parse and process
longdesc database output; – CD_labeler, to typeset user text to fit on
longdesc a CD label; and – repeat, a nestable, generic loop macro.
+depend eijkhout.ARCH
runfiles size=9
texmf-dist/tex/generic/eijkhout/CD_labeler.tex
texmf-dist/tex/generic/eijkhout/CD_labeler_test.tex
@@ -31373,6 +38757,7 @@ longdesc This is a simple package that fixes a problem in the way LaTeX
longdesc handles ellipses: it always puts a tiny bit more space after
longdesc \dots in text mode than before it, which results in the
longdesc ellipsis being off-center when used between two words.
+depend ellipsis.ARCH
docfiles size=34
texmf-dist/doc/latex/ellipsis/README details="Readme"
texmf-dist/doc/latex/ellipsis/ellipsis.pdf details="Package documentation"
@@ -31394,6 +38779,7 @@ longdesc This package has been designed to facilitate the use of Greek
longdesc letters in mathematical mode. The package allows one to
longdesc directly type in Greek letters (in ISO 8859-7 encoding) in math
longdesc mode.
+depend elmath.ARCH
docfiles size=24
texmf-dist/doc/latex/elmath/elmath.pdf details="Package documentation"
srcfiles size=4
@@ -31413,6 +38799,7 @@ shortdesc A simple class for electronic presentations
longdesc Elpres is a simple class for electronic presentations to be
longdesc shown on screen or a beamer. Elpres is derived from article.cls
longdesc and may be used with LaTeX or pdfLaTeX.
+depend elpres.ARCH
docfiles size=129
texmf-dist/doc/latex/elpres/elpres-example.pdf
texmf-dist/doc/latex/elpres/elpres-example.tex
@@ -31434,6 +38821,7 @@ shortdesc Classes for Elsevier Science journals.
longdesc The bundle contains a preprint class (elsart) and three journal
longdesc classes (elsart1p, elsart3p and elsart5p). All these files (and
longdesc the instructions for use) are provided by Elsevier themselves.
+depend elsevier.ARCH
docfiles size=105
texmf-dist/doc/latex/elsevier/CHANGES
texmf-dist/doc/latex/elsevier/README details="README file" language="en"
@@ -31459,6 +38847,7 @@ revision 3313
shortdesc BibTeX styles to be used in Elsevier preprints.
longdesc Four styles, one ‘harvard-like’, and three with numeric
longdesc labels, for use with the Elsevier preprint styles.
+depend elsevier-bib.ARCH
docfiles size=1
texmf-dist/doc/bibtex/elsevier-bib/README-bst
runfiles size=29
@@ -31478,6 +38867,7 @@ shortdesc Fonts for typesetting Tolkien Elvish scripts.
longdesc The bundle provides fonts for Cirth (cirth.mf, etc.) and for
longdesc Tengwar (teng10.mf). The Tengwar fonts are supported by macros
longdesc in teng.tex, or by the (better documented) tengtex package.
+depend elvish.ARCH
docfiles size=1
texmf-dist/doc/fonts/elvish/README
runfiles size=23
@@ -31499,6 +38889,7 @@ catalogue-license dfsg
name em
category Package
revision 857
+depend em.ARCH
docfiles size=3
texmf-dist/doc/latex/em/em.txt
srcfiles size=8
@@ -31521,6 +38912,7 @@ longdesc is therefore useful for keeping illustrations in synchrony with
longdesc the text. It also frees you from inventing descriptive names
longdesc for PostScript files that fit into the confines of file system
longdesc conventions.
+depend emp.ARCH
docfiles size=16
texmf-dist/doc/latex/emp/manual.ps.gz
srcfiles size=20
@@ -31544,6 +38936,7 @@ revision 2240
shortdesc Produce output similar to that of APJ.
longdesc A LaTeX class (based on RevTeX) to produce preprints with the
longdesc page layout similar to that of the Astrophysical Journal.
+depend emulateapj.ARCH
docfiles size=50
texmf-dist/doc/latex/emulateapj/README details="Readme"
texmf-dist/doc/latex/emulateapj/sample.pdf
@@ -31558,6 +38951,7 @@ catalogue-license lppl
name enctex
category Package
revision 613
+depend enctex.ARCH
docfiles size=118
texmf-dist/doc/generic/enctex/COPYING
texmf-dist/doc/generic/enctex/COPYING.UCD
@@ -31624,6 +39018,7 @@ longdesc Place all figures on pages by themselves at the end of the
longdesc document, optionally leaving markers like "[Figure 3 about
longdesc here]" in the text near to where the figure (or table) would
longdesc normally have occurred.
+depend endfloat.ARCH
docfiles size=95
texmf-dist/doc/latex/endfloat/COPYING
texmf-dist/doc/latex/endfloat/endfloat.asc
@@ -31651,6 +39046,7 @@ longdesc the endnotes counter, and put a line marking the chapter change
longdesc in the endnotes, at the beginning of every chapter. Endheads
longdesc requires the fancyhdr, needspace, ifthen, and endnotes
longdesc packages.
+depend endheads.ARCH
docfiles size=35
texmf-dist/doc/latex/endheads/README
texmf-dist/doc/latex/endheads/endheads.pdf details="Package documentation"
@@ -31674,6 +39070,7 @@ longdesc American English pronunciation as one can find it in the
longdesc ‘English Pronouncing Dictionary’ by Daniel Jones. There is
longdesc an option to typeset the pronunciation in the style of
longdesc Harrap’s dictionary.
+depend engpron.ARCH
docfiles size=121
texmf-dist/doc/latex/engpron/engpron.pdf details="Package documentation" language="fr"
texmf-dist/doc/latex/engpron/engpron.xml
@@ -31695,6 +39092,7 @@ longdesc number arguments to lower case or upper case greek letters.
longdesc They have the syntax of \alph, i.e. \engrec{a_counter},
longdesc \EnGrec{a_counter}. Options are provided to work with the
longdesc upgreek and fourier packages. Requires amsmath.
+depend engrec.ARCH
docfiles size=45
texmf-dist/doc/latex/engrec/Changements
texmf-dist/doc/latex/engrec/Changes
@@ -31723,6 +39121,7 @@ longdesc structured replacements for all their funtionality), and in
longdesc addition provides functions to compute the layout of labels,
longdesc and to ‘clone’ the standard environments, to create new
longdesc environments with counters of their own.
+depend enumitem.ARCH
docfiles size=49
texmf-dist/doc/latex/enumitem/README details="Readme"
texmf-dist/doc/latex/enumitem/enumitem.pdf details="Package documentation"
@@ -31740,6 +39139,7 @@ revision 865
shortdesc Printing addresses on envelopes.
longdesc A simple package, that prints both ‘from’ and ‘to’
longdesc addresses.
+depend envbig.ARCH
runfiles size=1
texmf-dist/tex/latex/envbig/envbig.sty
catalogue-version
@@ -31758,6 +39158,7 @@ longdesc a new author interface to creating new environments. For
longdesc example: \NewEnvironment{test}{[#1]} wraps the entire
longdesc environment body in square brackets, doing the right thing in
longdesc ignoring leading and trailing spaces.
+depend environ.ARCH
docfiles size=25
texmf-dist/doc/latex/environ/README details="Readme"
texmf-dist/doc/latex/environ/environ.pdf details="Package documentation"
@@ -31780,6 +39181,7 @@ longdesc A LaTeX package for producing mailing envelopes and labels,
longdesc including barcodes and address formatting according to the US
longdesc Postal Service rules. Redefines the standard \makelabels
longdesc command of the LaTeX letter documentclass.
+depend envlab.ARCH
docfiles size=35
texmf-dist/doc/latex/envlab/elguide.dvi
texmf-dist/doc/latex/envlab/elguide.tex
@@ -31801,6 +39203,7 @@ catalogue-license lppl
name epigrafica
category Package
revision 5094
+depend epigrafica.ARCH
execute addMap epigrafica.map
docfiles size=21
texmf-dist/doc/fonts/epigrafica/README
@@ -31871,6 +39274,7 @@ shortdesc A package for typesetting epigraphs.
longdesc Epigraphs are the pithy quotations often found at the start (or
longdesc end) of a chapter. Both single epigraphs and lists of epigraphs
longdesc are catered for. Various aspects are easily configurable.
+depend epigraph.ARCH
docfiles size=1
texmf-dist/doc/latex/epigraph/README details="Readme"
srcfiles size=9
@@ -31890,6 +39294,7 @@ shortdesc Typesetting the Epi-Olmec Language.
longdesc The package contains all the necessary files to typeset Epi-
longdesc Olmec ``documents'', a script used in Southern Middle America
longdesc until about 500 AD.
+depend epiolmec.ARCH
execute addMap epiolmec.map
docfiles size=32
texmf-dist/doc/latex/epiolmec/GlyphAccessCommands.pdf
@@ -31919,6 +39324,7 @@ longdesc useful LaTeX packages, notably graphics, graphicx, color,
longdesc autopict (a package instance of the LaTeX picture code),
longdesc psfrag, and url.
depend bin-eplain
+depend eplain.ARCH
docfiles size=416
texmf-dist/doc/eplain/AUTHORS
texmf-dist/doc/eplain/COPYING
@@ -31958,6 +39364,7 @@ longdesc takes a numeric argument (in the range 1-6), and selects a face
longdesc image from a file that contains each of the 6 possible die
longdesc faces. The graphic file is provided in both Encapsulated
longdesc PostScript and PDF formats.
+depend epsdice.ARCH
docfiles size=22
texmf-dist/doc/latex/epsdice/README details="Readme"
texmf-dist/doc/latex/epsdice/dice.eps
@@ -31984,6 +39391,7 @@ longdesc users, the package is nowadays deprecated in favour of the more
longdesc sophisticated standard LaTeX graphics bundle of packages (which
longdesc are also available to Plain TeX users, either via its Plain TeX
longdesc version, or through the support offered by etex).
+depend epsf.ARCH
docfiles size=26
texmf-dist/doc/generic/epsf/LICENSE
texmf-dist/doc/generic/epsf/Makefile
@@ -32011,6 +39419,7 @@ catalogue-license pd
name epslatex-fr
category Documentation
revision 2550
+depend epslatex-fr.ARCH
docfiles size=823
texmf-doc/doc/french/epslatex-fr/Ball.eps
texmf-doc/doc/french/epslatex-fr/CHAP2.sty
@@ -32080,6 +39489,7 @@ longdesc The package calls the epstopdf package to convert EPS graphics
longdesc to PDF, on the fly. It servs as a vehicle for passing
longdesc conversion options (such as grayscale, prepress or pdfversion)
longdesc to the epspdf converter.
+depend epspdfconversion.ARCH
docfiles size=111
texmf-dist/doc/latex/epspdfconversion/README details="Readme"
texmf-dist/doc/latex/epspdfconversion/documentation/epspdfconversion_docu.pdf details="Package documentation"
@@ -32100,6 +39510,7 @@ shortdesc Description lists with equal indentation.
longdesc This package provides a list environment which sets a
longdesc description-like list but with the difference that the
longdesc indentation corresponds to the longest item of the list.
+depend eqlist.ARCH
docfiles size=25
texmf-dist/doc/latex/eqlist/eqlist.pdf details="Package documentation"
texmf-dist/doc/latex/eqlist/eqlist.tex
@@ -32120,6 +39531,7 @@ shortdesc Name tags for equations.
longdesc The \eqname command provides a name tag for the current
longdesc equation, in place of an equation number. The name tag will be
longdesc picked up by a subsequent \label command.
+depend eqname.ARCH
runfiles size=1
texmf-dist/tex/latex/eqname/eqname.sty
catalogue-version
@@ -32136,6 +39548,7 @@ longdesc three columns, but otherwise behaves like LaTeX's eqnarray
longdesc environment. This environment is similar, in some ways, to the
longdesc align environment of amsmath. The package requires the array
longdesc package.
+depend eqnarray.ARCH
srcfiles size=9
texmf-dist/source/latex/eqnarray/README
texmf-dist/source/latex/eqnarray/eqnarray.bbl
@@ -32167,6 +39580,7 @@ longdesc in eqparbox's documentation. Version 2.0 makes better use of
longdesc TeX's memory, allows numbers and symbols to appear in tags,
longdesc preserves fonts across \\ boundaries, and eliminates some
longdesc incorrect \global prefixes.
+depend eqparbox.ARCH
docfiles size=44
texmf-dist/doc/latex/eqparbox/README details="Readme"
texmf-dist/doc/latex/eqparbox/eqparbox.pdf details="Package documentation"
@@ -32189,6 +39603,7 @@ longdesc errata in LaTeX documents. This allows the user to maintain an
longdesc updated version of the document (with all errors corrected) and
longdesc to automatically generate an errata document highlighting the
longdesc difference to the published version.
+depend errata.ARCH
docfiles size=44
texmf-dist/doc/latex/errata/README details="Readme"
texmf-dist/doc/latex/errata/errata-errata.tex
@@ -32206,6 +39621,7 @@ catalogue-license lppl
name es-tex-faq
category Documentation
revision 2227
+depend es-tex-faq.ARCH
docfiles size=306
texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.html
texmf-doc/doc/spanish/es-tex-faq/FAQ-CervanTeX.latin1
@@ -32222,6 +39638,7 @@ longdesc macros for derivatives, partial derivatives and multiple
longdesc derivatives, and allows specification of the point at which the
longdesc value is calculated. Some typographic alternatives may be
longdesc selected by package options
+depend esdiff.ARCH
docfiles size=1
texmf-dist/doc/latex/esdiff/readme.txt
srcfiles size=4
@@ -32245,6 +39662,7 @@ longdesc of these symbols are available in other font sets (pxfonts,
longdesc txfonts, etc.), but there is no good solution if you want to
longdesc use Computer Modern. The package provides Metafont source and
longdesc LaTeX macro support.
+depend esint.ARCH
execute addMixedMap esint.map
docfiles size=1
texmf-dist/doc/latex/esint/esint.readme
@@ -32275,6 +39693,7 @@ longdesc fonts with TeX; the TFM files can be generated from the
longdesc Metafont sources obtained by following the instructions in the
longdesc normal way.
depend esint
+depend esint-type1.ARCH
docfiles size=14
texmf-dist/doc/fonts/esint-type1/README details="Readme"
texmf-dist/doc/fonts/esint-type1/README.plainTeX details="Using the fonts with Plain TeX"
@@ -32297,6 +39716,7 @@ shortdesc Modern Russian typesetting.
longdesc The class offers modern Russian text formatting, in accordance
longdesc with accepted design standards. Fonts not (apparently)
longdesc available on CTAN are required for use of the class.
+depend eskd.ARCH
docfiles size=231
texmf-dist/doc/latex/eskd/README details="Package README"
texmf-dist/doc/latex/eskd/eskd.pdf details="Package documentation"
@@ -32319,6 +39739,7 @@ shortdesc Modern Russian typesetting.
longdesc Eskdx is a collection of LaTeX classes and packages to typeset
longdesc textual and graphical documents in accordance with Russian (and
longdesc probably post USSR) standards for designers.
+depend eskdx.ARCH
docfiles size=461
texmf-dist/doc/latex/eskdx/ChangeLog
texmf-dist/doc/latex/eskdx/FAQ details="Package FAQ" language="ru"
@@ -32423,6 +39844,7 @@ shortdesc Add picture commands (or backgrounds) to every page.
longdesc Eso-pic is an extension of everyshi. Using everyshi's
longdesc \EveryShipout command, eso-pic adds one or more user commands
longdesc to LaTeX's shipout actions.
+depend eso-pic.ARCH
docfiles size=58
texmf-dist/doc/latex/eso-pic/README
texmf-dist/doc/latex/eso-pic/eso-ex1.tex
@@ -32451,6 +39873,7 @@ longdesc Write vectors using an arrow which is different to the Computer
longdesc Modern one. You have the choice between several kinds of
longdesc arrows. The package consists of the relevant metafont code and
longdesc a package to use it.
+depend esvect.ARCH
execute addMap esvect.map
docfiles size=18
texmf-dist/doc/latex/esvect/README
@@ -32497,6 +39920,7 @@ longdesc similar to the enumerate environment, except that labels are
longdesc decreasing instead of increasing. The package provides a
longdesc noticeably more efficient alternative to the revnum package,
longdesc which uses painfully many counters.
+depend etaremune.ARCH
docfiles size=22
texmf-dist/doc/latex/etaremune/README details="Readme"
texmf-dist/doc/latex/etaremune/etaremune.pdf details="Package documentation"
@@ -32512,6 +39936,7 @@ catalogue-license lppl
name etex
category Package
revision 880
+depend etex.ARCH
docfiles size=114
texmf-dist/doc/etex/base/etex.html
texmf-dist/doc/etex/base/etex_gen.tex
@@ -32536,6 +39961,7 @@ longdesc Ethiopian language support for the babel package, including a
longdesc collection of fonts and TeX macros for typesetting the
longdesc characters of the languages of Ethiopia, with MetaFont fonts
longdesc based on EthTeX’s.
+depend ethiop.ARCH
execute addMixedMap ethiop.map
docfiles size=133
texmf-dist/doc/latex/ethiop/MANIFEST
@@ -32731,6 +40157,7 @@ revision 2269
shortdesc Type 1 versions of Amharic fonts.
longdesc These fonts are drop-in Adobe type 1 replacements for the fonts
longdesc of the ethiop package.
+depend ethiop-t1.ARCH
docfiles size=6
texmf-dist/doc/latex/ethiop-t1/COPYING
texmf-dist/doc/latex/ethiop-t1/README
@@ -32799,6 +40226,7 @@ longdesc the name elatex. This package will not modify any part of the
longdesc LaTeX kernel. Its name is not meant to imply that it patches
longdesc LaTeX such that the kernel makes use of e-TeX facilities by
longdesc default.
+depend etoolbox.ARCH
docfiles size=52
texmf-dist/doc/latex/etoolbox/README details="Readme"
texmf-dist/doc/latex/etoolbox/etoolbox.pdf details="Package documentation"
@@ -32813,6 +40241,7 @@ catalogue-license lppl
name euenc
category Package
revision 3737
+depend euenc.ARCH
docfiles size=30
texmf-dist/doc/xelatex/euenc/README
texmf-dist/doc/xelatex/euenc/euenc.pdf
@@ -32841,6 +40270,7 @@ longdesc handwriting.” [concrete-tug] The euler package is based on
longdesc Knuth’s macros for the book ‘Concrete Mathematics’. The
longdesc text fonts for the Concrete book are supported by the beton
longdesc package.
+depend euler.ARCH
docfiles size=10
texmf-dist/doc/latex/euler/euler.dvi
srcfiles size=11
@@ -32871,6 +40301,7 @@ longdesc particularly in conjunction with Type1 PostScript text fonts.
longdesc They are compatible with amsmath. A package option allows the
longdesc fonts to be loaded at 95% of their nominal size, thus blending
longdesc better with certain text fonts, e.g., Minion.
+depend eulervm.ARCH
docfiles size=32
texmf-dist/doc/latex/eulervm/README.eulervm details="Package Readme"
texmf-dist/doc/latex/eulervm/eulervm.pdf details="Package documentation"
@@ -32940,6 +40371,7 @@ longdesc a Framework 7 Proposal. It is optimized towards collaborative
longdesc projects. The package comes with an extensive example (a fake
longdesc EU proposal; see the file propB.tex) that shows all elements in
longdesc action.
+depend euproposal.ARCH
docfiles size=88
texmf-dist/doc/latex/euproposal/README details="Readme"
texmf-dist/doc/latex/euproposal/euproposal.pdf details="Package documentation"
@@ -32966,6 +40398,7 @@ longdesc way. Write, e.g., \ATS{17.6} to get something like ‘17,60 öS
longdesc (1,28 Euro)’ automatically. Conversion rates for the initial
longdesc Euro-zone countries are already built-in. Further rates can be
longdesc added easily. The package uses the fp package to do its sums.
+depend euro.ARCH
docfiles size=56
texmf-dist/doc/latex/euro/euro.pdf
texmf-dist/doc/latex/euro/euro.txt
@@ -32986,6 +40419,7 @@ revision 1487
shortdesc Euro and CE sign font.
longdesc MetaFont source for the symbols in several variants, designed
longdesc to fit with Computer Modern-set text.
+depend euro-ce.ARCH
docfiles size=5
texmf-dist/doc/fonts/euro-ce/euro-ce.doc
texmf-dist/doc/fonts/euro-ce/euro-ce.dvi
@@ -33041,6 +40475,7 @@ longdesc the Eurosym font, and any available Text Companion fonts. The
longdesc selection between these can be done using options passed to the
longdesc package. The eurofont package also ‘knows’ about the
longdesc China2e font’s euro symbol, and can be configured to use it.
+depend eurofont.ARCH
execute addMap zpeu.map
docfiles size=84
texmf-dist/doc/fonts/eurofont/README.europs
@@ -33092,6 +40527,7 @@ longdesc enough to be used for any kind of curriculum vitae. The class
longdesc has localisations for all the official languages of the EU
longdesc (plus Catalan), as well as options permitting input in UTF-8
longdesc and koi8-r.
+depend europecv.ARCH
docfiles size=245
texmf-dist/doc/latex/europecv/europecv.pdf details="Class documentation:"
texmf-dist/doc/latex/europecv/europecv.tex
@@ -33173,6 +40609,7 @@ longdesc only available from Adobe (though the fonts are free of charge,
longdesc the licence conditions prevent CTAN from distributing them).
longdesc Metrics and maps for using the fonts (at all) are available via
longdesc the adobe-euro package.
+depend eurosans.ARCH
docfiles size=2
texmf-dist/doc/latex/eurosans/README.eurosans details="Readme"
runfiles size=1
@@ -33191,6 +40628,7 @@ longdesc MetaFont, using the official European Commission dimensions,
longdesc and providing several shapes (normal, slanted, bold, outline).
longdesc The package also includes a LaTeX package which defines the
longdesc macro, pre-compiled tfm files, and documentation.
+depend eurosym.ARCH
execute addMixedMap eurosym.map
docfiles size=12
texmf-dist/doc/fonts/eurosym/COPYING
@@ -33241,6 +40679,7 @@ catalogue-license other
name euxm
category Package
revision 101
+depend euxm.ARCH
runfiles size=7
texmf-dist/fonts/source/public/euxm/euxm10.mf
texmf-dist/fonts/source/public/euxm/euxm5.mf
@@ -33260,6 +40699,7 @@ longdesc the page is composed, but before it is shipped, so they can be
longdesc used to prepare the output page in tasks like putting
longdesc watermarks in the background, or in setting the next page
longdesc layout, etc.
+depend everypage.ARCH
docfiles size=6
texmf-dist/doc/latex/everypage/README
texmf-dist/doc/latex/everypage/everypage.pdf
@@ -33299,6 +40739,7 @@ longdesc to headers and/or footers to allow for this. Note that the
longdesc bundles examdesign and exams also provide a file exam.cls;
longdesc these bundles therefore clash, and should not be installed on
longdesc the same system.
+depend exam.ARCH
docfiles size=107
texmf-dist/doc/latex/exam/README details="Package Readme"
texmf-dist/doc/latex/exam/examdoc.pdf details="Package documentation"
@@ -33313,6 +40754,7 @@ catalogue-license lppl
name examdesign
category Package
revision 2100
+depend examdesign.ARCH
docfiles size=121
texmf-dist/doc/latex/examdesign/Bugs
texmf-dist/doc/latex/examdesign/Changes
@@ -33353,6 +40795,7 @@ longdesc package for authors of manuals. With codep it is possible to
longdesc generate the source code, the LaTeX or METAPOST output and the
longdesc compilable example file from a single source embedded into the
longdesc appropriate place of the .tex document file.
+depend examplep.ARCH
docfiles size=142
texmf-dist/doc/latex/examplep/README
texmf-dist/doc/latex/examplep/eurotex_2005_examplep.pdf
@@ -33386,6 +40829,7 @@ longdesc customisable. It is then possible to typeset long problems,
longdesc short exercises, questionnaires, etc. Usage of the babel
longdesc package is detected, but not fully supported by now (only
longdesc english and french are implemented).
+depend exercise.ARCH
docfiles size=54
texmf-dist/doc/latex/exercise/README details="Readme"
texmf-dist/doc/latex/exercise/exercise.pdf details="Package documentation"
@@ -33408,6 +40852,7 @@ longdesc features to the LaTeX description environment. It supports
longdesc changing the left margin. With \listpart there is a new command
longdesc available which makes it possible to break a list for a comment
longdesc without touching any counters.
+depend expdlist.ARCH
docfiles size=1
texmf-dist/doc/latex/expdlist/readme.txt
srcfiles size=14
@@ -33430,6 +40875,7 @@ longdesc Experimental packages for experienced TeX programmers to
longdesc experiment with, and comment on. They contain a proposed set of
longdesc syntax conventions and basic data-types that might form the
longdesc basis for programming large scale projects in TeX.
+depend expl3.ARCH
docfiles size=202
texmf-dist/doc/latex/expl3/ChangeLog.fmi
texmf-dist/doc/latex/expl3/expl3.pdf details="The LaTeX3 Programming Language"
@@ -33511,6 +40957,7 @@ longdesc LaTeX registers (counters, rigid and rubber lengths only). It
longdesc is definitely not for faint-hearted users. The package may be
longdesc used, for example, to communicate between documents for the
longdesc purposes of dvipaste.
+depend export.ARCH
docfiles size=1
texmf-dist/doc/latex/export/00readme
srcfiles size=9
@@ -33535,6 +40982,7 @@ longdesc Particular support is provided for creating EXPRESS-G diagrams,
longdesc for example IDEF1X, OMT, Shlaer-Mellor, and NIAM diagrams. The
longdesc package may also be used to create UML and most other Box-Line-
longdesc Annotation charts, but not Gantt charts directly.
+depend expressg.ARCH
docfiles size=137
texmf-dist/doc/metapost/expressg/README details="Package Readme"
texmf-dist/doc/metapost/expressg/aamfigs.pdf details="Examples of use"
@@ -33559,6 +41007,7 @@ catalogue-license lppl
name extarrows
category Package
revision 899
+depend extarrows.ARCH
docfiles size=11
texmf-dist/doc/latex/extarrows/README
texmf-dist/doc/latex/extarrows/extarrows-test.pdf
@@ -33574,6 +41023,7 @@ longdesc Exteps is a module for including external EPS figures into
longdesc MetaPost figures. It is written entirely in MetaPost, and does
longdesc not therefore require any post processing of the MetaPost
longdesc output.
+depend exteps.ARCH
docfiles size=51
texmf-dist/doc/metapost/exteps/LICENSE
texmf-dist/doc/metapost/exteps/README
@@ -33593,6 +41043,7 @@ shortdesc Extensible arrows in mathematics.
longdesc The exptfeil package provides some more extensible arrows
longdesc (usable in the same way as xleftarrow from amsmath), and a
longdesc command to simply create new ones.
+depend extpfeil.ARCH
docfiles size=52
texmf-dist/doc/latex/extpfeil/README details="Readme"
texmf-dist/doc/latex/extpfeil/extpfeil.pdf details="Benutzerdoku:" language="de"
@@ -33624,6 +41075,7 @@ longdesc package option, one can specify exactly which commands (counted
longdesc from the start of the document) should be extracted and which
longdesc not. This might be useful for extracting specific slides from a
longdesc presentation and use them in a new file.
+depend extract.ARCH
docfiles size=51
texmf-dist/doc/latex/extract/README details="Package README"
texmf-dist/doc/latex/extract/extract.pdf details="Package documentation"
@@ -33643,6 +41095,7 @@ shortdesc Extend the standard classes' size options.
longdesc Provides classes extarticle and extreport, extletter, extbook,
longdesc extproc which allow for documents with a base font of size
longdesc 8–20pt.
+depend extsizes.ARCH
docfiles size=2
texmf-dist/doc/latex/extsizes/README details="Readme"
texmf-dist/doc/latex/extsizes/readme.extsizes
@@ -33676,6 +41129,7 @@ longdesc the recipient can be sure that every page has been received and
longdesc all pages are complete, and in the correct order. The class
longdesc evolved from the fax package, and provides much better language
longdesc support.
+depend facsimile.ARCH
docfiles size=13
texmf-dist/doc/latex/facsimile/README details="Readme"
texmf-dist/doc/latex/facsimile/example.dvi
@@ -33703,6 +41157,7 @@ longdesc similar to the ‘A/B’ that is provided by the nicefrac
longdesc package (part of the units distribution), and by the xfrac
longdesc package; the most obvious difference is that the numerator and
longdesc denominator’s sizes do not change in the \faktor command.
+depend faktor.ARCH
docfiles size=26
texmf-dist/doc/latex/faktor/README details="Readme and basic instructions"
texmf-dist/doc/latex/faktor/faktor.pdf details="Benutzerdoku:" language="de"
@@ -33724,6 +41179,7 @@ longdesc Provides variants of \fbox: \shadowbox, \doublebox, \ovalbox,
longdesc \Ovalbox, with helpful tools for using box macros and flexible
longdesc verbatim macros. You can box mathematics, floats, center,
longdesc flushleft, and flushright, lists, and pages.
+depend fancybox.ARCH
docfiles size=59
texmf-dist/doc/latex/fancybox/fancybox.doc
texmf-dist/doc/latex/fancybox/fancybox.pdf
@@ -33742,6 +41198,7 @@ longdesc The package provides extensive facilities, both for
longdesc constructing headers and footers, and for controlling their use
longdesc (for example, at times when LaTeX would automatically change
longdesc the heading style in use).
+depend fancyhdr.ARCH
docfiles size=95
texmf-dist/doc/latex/fancyhdr/README details="Package Readme"
texmf-dist/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual"
@@ -33757,6 +41214,7 @@ catalogue-license lppl
name fancyhdr-it
category Documentation
revision 14
+depend fancyhdr-it.ARCH
docfiles size=113
texmf-doc/doc/italian/fancyhdr-it/Makefile
texmf-doc/doc/italian/fancyhdr-it/itfancyhdr.pdf
@@ -33768,6 +41226,7 @@ revision 2250
shortdesc Typeset numbers.
longdesc A LaTeX package for typesetting numbers, in particular floating
longdesc point numbers, such as you find in program output.
+depend fancynum.ARCH
docfiles size=39
texmf-dist/doc/latex/fancynum/CHANGES
texmf-dist/doc/latex/fancynum/README details="Package README"
@@ -33798,6 +41257,7 @@ longdesc package's reference commands (\fref and \Fref) that recognise
longdesc what sort of object is being referenced. So, for example, the
longdesc label for a \section would be expected to be of the form
longdesc ‘sec:foo’: the package would recognise the ‘sec:’ part.
+depend fancyref.ARCH
docfiles size=37
texmf-dist/doc/latex/fancyref/COPYING
texmf-dist/doc/latex/fancyref/README details="Package Readme"
@@ -33824,6 +41284,7 @@ longdesc TeX materials (animated graphics) from an external PDF file. To
longdesc see the tooltips, you have to open the files in Adobe Reader.
longdesc The links and JavaScripts are inserted using eforms package
longdesc from the AcroTeX bundle.
+depend fancytooltips.ARCH
docfiles size=158
texmf-dist/doc/latex/fancytooltips/README
texmf-dist/doc/latex/fancytooltips/examples/blackpanel.tex
@@ -33861,6 +41322,7 @@ longdesc parameters; ability to define new customized verbatim
longdesc environments; save and restore verbatim text and environments;
longdesc write and read files in verbatim mode; build "example"
longdesc environments (showing both result and verbatim source).
+depend fancyvrb.ARCH
docfiles size=53
texmf-dist/doc/latex/fancyvrb/README details="Readme"
texmf-dist/doc/latex/fancyvrb/artistic2.txt
@@ -33891,6 +41353,7 @@ longdesc class (from the ntgclass bundle), if it's available, and the
longdesc lastpage package. A package sig.sty is included, which enables
longdesc use of scanned signatures; this package is dependent on emTeX
longdesc graphics \special commands.
+depend fax.ARCH
docfiles size=30
texmf-dist/doc/latex/fax/fax.unx
texmf-dist/doc/latex/fax/faxdoc.pdf details="Documentation of fax.cls"
@@ -33919,6 +41382,7 @@ longdesc The fonts are provided as MetaFont source, in the familiar
longdesc arrangement of lots of (autogenerated) preamble files and a
longdesc modest set of glyph specifications. (A similar arrangement
longdesc appears in the ec and lh font bundles.)
+depend fc.ARCH
docfiles size=24
texmf-dist/doc/fonts/fc/fc.bug
texmf-dist/doc/fonts/fc/fc.rme
@@ -34425,6 +41889,7 @@ shortdesc MetaPost macros for 3D.
longdesc These macros allow the production of three-dimensional schemes
longdesc containing: angles, circles, cylinders, cones and spheres,
longdesc among other things.
+depend featpost.ARCH
docfiles size=493
texmf-dist/doc/metapost/featpost/README.ctan
texmf-dist/doc/metapost/featpost/README.featpost
@@ -34632,6 +42097,7 @@ longdesc of fenixtok to provide a user interface to manipulation of the
longdesc \everypar token register. The packages require the e-TeX
longdesc extensions; with them, they work either with Plain TeX or with
longdesc LaTeX.
+depend fenixpar.ARCH
docfiles size=1
texmf-dist/doc/generic/fenixpar/README details="Readme"
runfiles size=4
@@ -34652,6 +42118,7 @@ longdesc is good at drawing large diagrams for figures, this package and
longdesc its fonts allow diagrams within equations or text, at a
longdesc matching size. The fonts are distributed as MetaFont source,
longdesc and macros for their use are also provided.
+depend feyn.ARCH
docfiles size=43
texmf-dist/doc/latex/feyn/README details="Package Readme"
texmf-dist/doc/latex/feyn/feyn.pdf details="Package documentation"
@@ -34694,6 +42161,7 @@ longdesc same way.) While the package was designed for Feynman diagrams,
longdesc it could in principle be used for diagrams in graph and similar
longdesc theories, where the structure is semi-algorithmically
longdesc determined.
+depend feynmf.ARCH
docfiles size=63
texmf-dist/doc/latex/feynmf/Feynman.Diagrams
texmf-dist/doc/latex/feynmf/Tutorial
@@ -34732,6 +42200,7 @@ revision 4608
shortdesc A font for Frege's Grundgesetze der Arithmetik.
longdesc The fonts are provided as MetaFont source, and a small LaTeX
longdesc package (fge) is provided.
+depend fge.ARCH
docfiles size=12
texmf-dist/doc/fonts/fge/README details="Readme"
texmf-dist/doc/fonts/fge/fge-doc.pdf details="Package documentation"
@@ -34757,6 +42226,7 @@ catalogue-license lppl
name figbib
category Package
revision 912
+depend figbib.ARCH
docfiles size=49
texmf-dist/doc/latex/figbib/README
texmf-dist/doc/latex/figbib/figbib_doc.pdf
@@ -34775,6 +42245,7 @@ runfiles size=6
name figsize
category Package
revision 913
+depend figsize.ARCH
docfiles size=36
texmf-dist/doc/latex/figsize/README
texmf-dist/doc/latex/figsize/figsize.pdf
@@ -34796,6 +42267,7 @@ longdesc can only be used in the preamble of a document. The
longdesc filecontents package removes these limitations, letting you
longdesc overwrite existing files and letting you use
longdesc filecontents/filecontents* anywhere.
+depend filecontents.ARCH
docfiles size=46
texmf-dist/doc/latex/filecontents/README details="Package Readme"
texmf-dist/doc/latex/filecontents/filecontents.pdf details="Package documentation"
@@ -34812,12 +42284,14 @@ catalogue-license lppl
name finbib
category Package
revision 71
+depend finbib.ARCH
runfiles size=7
texmf-dist/bibtex/bst/finbib/finplain.bst
name fink
category Package
revision 5450
+depend fink.ARCH
docfiles size=20
texmf-dist/doc/latex/fink/NEWS
texmf-dist/doc/latex/fink/README
@@ -34832,6 +42306,7 @@ runfiles size=1
name firststeps
category Documentation
revision 20
+depend firststeps.ARCH
docfiles size=24
texmf-doc/doc/english/firststeps/Contents
texmf-doc/doc/english/firststeps/article.tpl
@@ -34860,6 +42335,7 @@ longdesc Provides a \DeclareFixedFootnote command to provide a single
longdesc command for a frequently-used footnote. The package ensures
longdesc that only one instance of the footnote text appears on each
longdesc page (LaTeX needs to be run several times to achieve this).
+depend fixfoot.ARCH
docfiles size=2
texmf-dist/doc/latex/fixfoot/testfix.dvi
texmf-dist/doc/latex/fixfoot/testfix.tex
@@ -34873,6 +42349,7 @@ catalogue-license lppl
name fixme
category Package
revision 1798
+depend fixme.ARCH
docfiles size=27
texmf-dist/doc/latex/fixme/NEWS
texmf-dist/doc/latex/fixme/README
@@ -34892,6 +42369,7 @@ longdesc A recent change to PDFTeX has caused magnification to apply to
longdesc page dimensions. This small package changes the values set in
longdesc the page dimension variables from pt to truept, thus evading
longdesc the effects of \mag.
+depend fixpdfmag.ARCH
runfiles size=1
texmf-dist/tex/plain/fixpdfmag/fixpdfmag.tex
catalogue-version
@@ -34906,6 +42384,7 @@ shortdesc Labels for files and folders.
longdesc Macros for typesetting pretty labels (optionally colored) for
longdesc the back of files or binders (currently only the special A4
longdesc “Leitz-Ordner” ring binder is supported).
+depend flabels.ARCH
docfiles size=1
texmf-dist/doc/latex/flabels/README
srcfiles size=13
@@ -34929,6 +42408,7 @@ longdesc derivations using the flag/flagpole notation. The package
longdesc features an intuitive command syntax, opening and closing
longdesc multiple flagpoles, different comment styles, customizable
longdesc symbols and label namespaces.
+depend flagderiv.ARCH
docfiles size=53
texmf-dist/doc/latex/flagderiv/README
texmf-dist/doc/latex/flagderiv/flagderiv.pdf
@@ -34951,6 +42431,7 @@ longdesc cards. By flash card, we mean a two sided card which has a
longdesc prompt or a question on one side and the response or the answer
longdesc on the flip (back) side. Flash cards come in many sizes
longdesc depending on the nature of the information they contain.
+depend flashcards.ARCH
docfiles size=45
texmf-dist/doc/latex/flashcards/README details="Package Readme"
texmf-dist/doc/latex/flashcards/flashcards.pdf details="Package documentation"
@@ -34978,6 +42459,7 @@ longdesc “mirrored”. This is sometimes required by publishers who
longdesc want camera-ready documents to be printed on transparent film
longdesc (to be viewed from the “wrong” side). The package requires
longdesc everypage, and only works with pdfLaTeX in PDF mode.
+depend flippdf.ARCH
docfiles size=5
texmf-dist/doc/latex/flippdf/README details="Readme"
texmf-dist/doc/latex/flippdf/flippdf.pdf details="Package documentation"
@@ -35002,6 +42484,7 @@ longdesc improve the behaviour of the old ones. The package also
longdesc provides the H float modifier option of the obsolete here
longdesc package. You can select this as automatic default with
longdesc \floatplacement{figure}{H}.
+depend float.ARCH
docfiles size=35
texmf-dist/doc/latex/float/README details="Package Readme"
texmf-dist/doc/latex/float/float.pdf details="Package documentation"
@@ -35023,6 +42506,7 @@ longdesc Float text around figures and tables which do not span the full
longdesc width of a page, improving upon floatfig, allowing
longdesc tables/figures to be set left/right or alternating on even/odd
longdesc pages.
+depend floatflt.ARCH
docfiles size=9
texmf-dist/doc/latex/floatflt/00readme.flt
texmf-dist/doc/latex/floatflt/floatexm.tex
@@ -35049,6 +42533,7 @@ longdesc floats side by side, and to put the caption beside its float.
longdesc The floatrow settings could be expanded to the floats created
longdesc by packages rotating, wrapfig, subfig (in the case of rows of
longdesc subfloats), and longtable.
+depend floatrow.ARCH
docfiles size=233
texmf-dist/doc/latex/floatrow/README details="Readme"
texmf-dist/doc/latex/floatrow/floatrow-rus.tex
@@ -35090,6 +42575,7 @@ longdesc one frame to the next in the order in which they were defined.
longdesc This is useful for creating posters or magazines or any other
longdesc form of document that does not conform to the standard one or
longdesc two column layout.
+depend flowfram.ARCH
docfiles size=299
texmf-dist/doc/latex/flowfram/CHANGES
texmf-dist/doc/latex/flowfram/README
@@ -35125,6 +42611,7 @@ shortdesc Simple floating point arithmetic.
longdesc The package provides simple floating point operations
longdesc (addition, subtraction, multiplication, division and rounding).
longdesc Used, for example, by rccol.
+depend fltpoint.ARCH
docfiles size=52
texmf-dist/doc/generic/fltpoint/README details="Readme"
texmf-dist/doc/generic/fltpoint/fltpoint.pdf details="Package documentation"
@@ -35144,6 +42631,7 @@ name fmp
category Package
revision 925
shortdesc Include Functional MetaPost in LaTeX.
+depend fmp.ARCH
docfiles size=38
texmf-dist/doc/latex/fmp/README details="Readme"
texmf-dist/doc/latex/fmp/fmp.pdf details="Package documentation"
@@ -35170,6 +42658,7 @@ longdesc English (both British and American usage), French, German,
longdesc Portuguese and Spanish documents are provided. This package was
longdesc originally provided as part of the author's datetime package,
longdesc but is now distributed separately.
+depend fmtcount.ARCH
docfiles size=76
texmf-dist/doc/latex/fmtcount/README details="Package README"
texmf-dist/doc/latex/fmtcount/doc/CHANGES
@@ -35203,6 +42692,7 @@ revision 4697
shortdesc Warn for split footnotes.
longdesc This package detects footnotes that are split over several
longdesc pages, and writes a warning to the log file.
+depend fnbreak.ARCH
docfiles size=45
texmf-dist/doc/latex/fnbreak/ChangeLog
texmf-dist/doc/latex/fnbreak/README details="Readme"
@@ -35229,6 +42719,7 @@ longdesc Each style can be modified using a set of simple commands.
longdesc Optionally one can modify the formatting routines in order to
longdesc create additional chapter headings. This package was previously
longdesc known as FancyChapter.
+depend fncychap.ARCH
docfiles size=290
texmf-dist/doc/latex/fncychap/Bjarne.eps
texmf-dist/doc/latex/fncychap/Bjarnes.eps
@@ -35261,6 +42752,7 @@ shortdesc The title font of the Mads Føk magazine.
longdesc The bundle provides an Adobe Type 1 font, and LaTeX support for
longdesc its use. The magazine web site shows the font in use in a few
longdesc places.
+depend foekfont.ARCH
execute addMap foekfont.map
docfiles size=31
texmf-dist/doc/latex/foekfont/FoekFont.sfd
@@ -35287,6 +42779,7 @@ longdesc Provides integration between FoilTeX and LaTeX2HTML, adding
longdesc sectioning commands and elements of logical formatting to
longdesc FoilTeX and providing support for FoilTeX commands in
longdesc LaTeX2HTML.
+depend foilhtml.ARCH
srcfiles size=25
texmf-dist/source/latex/foilhtml/foilhtml-96.perl
texmf-dist/source/latex/foilhtml/foilhtml.drv
@@ -35312,6 +42805,7 @@ longdesc serif font for the danish phonetic system Dania. Both fonts
longdesc exist in regular and bold weights. LaTeX support is provided.
longdesc The fonts are based on URW Palladio and Iwona Condensed, and
longdesc were created using FontForge.
+depend fonetika.ARCH
execute Map fonetika.map
docfiles size=46
texmf-dist/doc/fonts/fonetika/FonetikaDaniaIwonaeBold.ttf
@@ -35354,6 +42848,7 @@ longdesc TeX. Optional support for Latin Modern T1 and TS1 fonts is
longdesc given. There are macros for non-latin1 letters and for most TS1
longdesc symbols. Math mode always uses CM fonts. A command for
longdesc producing doubled-spaced documents is also provided.
+depend fontch.ARCH
docfiles size=3
texmf-dist/doc/plain/fontch/README details="Readme and usage details"
runfiles size=14
@@ -35383,6 +42878,7 @@ longdesc they contain any useful information, nor automatically search
longdesc for files or work with binary file formats; those tasks must
longdesc normally be done manually or with the help of some other tool,
longdesc such as the pltotf and vptovf programs.
+depend fontinst.ARCH
docfiles size=246
texmf-dist/doc/fontinst/base/README details="Readme"
texmf-dist/doc/fontinst/base/encspecs/encspecs.tex
@@ -35573,6 +43069,7 @@ longdesc The scheme for assigning names is described (in the
longdesc documentation part of the package), and map files giving the
longdesc relation between foundry name and ‘TeX-name’ are also
longdesc provided.
+depend fontname.ARCH
docfiles size=607
texmf-dist/doc/fontname/8a.html
texmf-dist/doc/fontname/8r.html
@@ -35658,6 +43155,7 @@ longdesc through the NFSS in LaTeX running on XeTeX. XeTeX (the
longdesc successor to TeX-GX) is a TeX-variant (originally for Mac OS X,
longdesc but now more widely available) that accepts unicode input and
longdesc can access system fonts directly.
+depend fontspec.ARCH
docfiles size=407
texmf-dist/doc/xelatex/fontspec/README details="Package README"
texmf-dist/doc/xelatex/fontspec/fontspec-example.ltx
@@ -35687,6 +43185,7 @@ longdesc used to produce the standard bibliography. The foot
longdesc bibliography uses its own style and bibliographic database
longdesc which may be specified independently of the standard one. Any
longdesc standard bibliography style may be used.
+depend footbib.ARCH
docfiles size=64
texmf-dist/doc/latex/footbib/footbib.pdf details="Package documentation"
srcfiles size=23
@@ -35719,6 +43218,7 @@ longdesc both also portmanteau packages. (Don't be seduced by fnpara,
longdesc whose implementation is improved by the present package.) The
longdesc perpage option is also offered by footnpag and by the rather
longdesc more general-purpose perpage
+depend footmisc.ARCH
docfiles size=81
texmf-dist/doc/latex/footmisc/footmisc.pdf details="Package documentation"
srcfiles size=19
@@ -35737,6 +43237,7 @@ revision 3224
shortdesc Per-page numbering of footnotes.
longdesc Allows footnotes on individual pages to be numbered from 1,
longdesc rather than being numbered sequentially through the document.
+depend footnpag.ARCH
docfiles size=40
texmf-dist/doc/latex/footnpag/CATALOG
texmf-dist/doc/latex/footnpag/History
@@ -35772,6 +43273,7 @@ revision 2170
shortdesc Iteration in LaTeX.
longdesc The package provides a command \forloop for doing iteration in
longdesc LaTeX macro programming.
+depend forloop.ARCH
docfiles size=22
texmf-dist/doc/latex/forloop/README details="Package README"
texmf-dist/doc/latex/forloop/forloop.pdf details="Package documentation"
@@ -35791,6 +43293,7 @@ revision 1487
shortdesc Letters to multiple recipients.
longdesc A package for multiple letters from the same basic source; the
longdesc package offers parametrisation of the letters actually sent.
+depend formlett.ARCH
docfiles size=40
texmf-dist/doc/latex/formlett/prog_manual.dvi
texmf-dist/doc/latex/formlett/prog_manual.tex
@@ -35811,6 +43314,7 @@ longdesc Support for typesetting physical symbols, ensuring the same
longdesc shape in text and maths mode. The user may specify their own
longdesc units, and may change the format for the package’s predefined
longdesc physical units.
+depend formula.ARCH
docfiles size=2
texmf-dist/doc/latex/formula/formpel.dvi
texmf-dist/doc/latex/formula/formpel.tex
@@ -35845,6 +43349,7 @@ longdesc When typesetting forms there often arises the need for defining
longdesc fields which consist of one or more lines where the customer
longdesc can write something down manually. This package offers some
longdesc commands for defining such fields in a distinctive way.
+depend formular.ARCH
docfiles size=39
texmf-dist/doc/latex/formular/README details="Readme"
texmf-dist/doc/latex/formular/formular.pdf details="Package documentation"
@@ -35873,6 +43378,7 @@ longdesc typefaces are required. The fourier fonts will also work with
longdesc Adobe Utopia Expert fonts, which are only available for
longdesc purchase. Utopia is a registered trademark of Adobe Systems
longdesc Incorporated
+depend fourier.ARCH
execute addMap fourier.map
execute addMap fourier-utopia-expert.map
docfiles size=49
@@ -36103,6 +43609,7 @@ catalogue-license lppl
name fouriernc
category Package
revision 4196
+depend fouriernc.ARCH
docfiles size=38
texmf-dist/doc/fonts/fouriernc/README
texmf-dist/doc/fonts/fouriernc/build-fouriernc.tex
@@ -36157,6 +43664,7 @@ revision 939
shortdesc Fixed point arithmetic.
longdesc Provides an extensive collection of arithmetic operations for
longdesc fixed point real numbers of high precision.
+depend fp.ARCH
docfiles size=6
texmf-dist/doc/latex/fp/README
texmf-dist/doc/latex/fp/fp.tex
@@ -36197,6 +43705,7 @@ longdesc editor FontForge. The kerning data in these fonts comes from
longdesc Walter Schmidt's improved Palatino metrics. LaTeX use is
longdesc enabled by the mathpazo package, which is part of the psnfss
longdesc distribution.
+depend fpl.ARCH
docfiles size=6
texmf-dist/doc/fonts/fpl/COPYING
texmf-dist/doc/fonts/fpl/README details="Readme"
@@ -36245,6 +43754,7 @@ longdesc purposes and a BibTeX bibliography style. Descriptions are
longdesc given under the individual packages: abbrevs, achicago package,
longdesc achicago bibstyle, attrib, blkcntrl, compsci, dialogue, lips,
longdesc moredefs, newclude, slemph, titles.
+depend frankenstein.ARCH
docfiles size=658
texmf-dist/doc/latex/frankenstein/ChangeLog
texmf-dist/doc/latex/frankenstein/Frankenfile
@@ -36349,6 +43859,7 @@ shortdesc French cursive hand fonts.
longdesc A hand-writing font in the style of the French academic
longdesc running-hand. The font is written in Metafont. An NFSS font
longdesc description and a supporting LaTeX package are provided.
+depend frcursive.ARCH
docfiles size=27
texmf-dist/doc/fonts/frcursive/COPYING
texmf-dist/doc/fonts/frcursive/FILES
@@ -36471,6 +43982,7 @@ longdesc are available for use with TeX and LaTeX. Examples are provided
longdesc for each font, links to where to obtain the font, and the
longdesc commands for loading the associated LaTeX package. The survey
longdesc is available in both English and Vietnamese.
+depend free-math-font-survey.ARCH
docfiles size=1061
texmf-doc/doc/english/free-math-font-survey/README
texmf-doc/doc/english/free-math-font-survey/images/antpolt.png
@@ -36549,6 +44061,7 @@ longdesc itself no longer permits such usage, but the babelfr.sty
longdesc package in this distribution makes it possible). The full
longdesc package with “extras” may be downloaded from
longdesc http://frenchle.free.fr/frenchle.tar.gz
+depend frenchle.ARCH
docfiles size=157
texmf-dist/doc/latex/frenchle/FAQ.pdf details="Foire aux questions" language="fr"
texmf-dist/doc/latex/frenchle/README.le
@@ -36568,6 +44081,7 @@ name fribrief
category Package
revision 941
shortdesc Two LaTeX classes for writing letters in German.
+depend fribrief.ARCH
docfiles size=6
texmf-dist/doc/latex/fribrief/fribrief.ger details="Description of fribrief class" language="de"
texmf-dist/doc/latex/fribrief/k_fribri.ger details="Description of k-fribri class" language="de"
@@ -36587,6 +44101,7 @@ longdesc A small class for typesetting letters in France. No assumption
longdesc is made about the language in use. The class represents a small
longdesc modification of the beletter class, which is itself a
longdesc modification of the standard LaTeX letter class.
+depend frletter.ARCH
docfiles size=1
texmf-dist/doc/latex/frletter/README details="Readme"
runfiles size=1
@@ -36602,6 +44117,7 @@ revision 942
shortdesc Left-blocking for letter class.
longdesc Used with the letter documentclass to set the letter in a
longdesc fullblock style (everything at the left margin).
+depend fullblck.ARCH
docfiles size=1
texmf-dist/doc/latex/fullblck/README
srcfiles size=3
@@ -36626,6 +44142,7 @@ longdesc by the fact that the picture is to be 90% of \textwidth.
longdesc Similar environments halfpict (half the width of fullpict), and
longdesc scalepict (a given percentage of the width of fullpict), are
longdesc also defined.
+depend fullpict.ARCH
docfiles size=2
texmf-dist/doc/latex/fullpict/fullpict.doc
runfiles size=4
@@ -36645,6 +44162,7 @@ longdesc functional analysis and PDE theory. It also provides a set of
longdesc macros for dealing with norms, scalar products and convergence
longdesc with some object oriented flavor (it gives the possibility to
longdesc override the standard behavior of norms, ...).
+depend functan.ARCH
docfiles size=44
texmf-dist/doc/latex/functan/README details="Readme"
texmf-dist/doc/latex/functan/functan.pdf details="Package documentation"
@@ -36670,6 +44188,7 @@ longdesc fonts, various ‘Star Trek’ fonts, Sütterlin and schwell
longdesc handwriting fonts, the twcal calligraphic fonts, and the va
longdesc handwriting fonts. Note that the Washington University fonts
longdesc are now officially supported by LaTeX, as the OT2 encoding.
+depend fundus.ARCH
docfiles size=13
texmf-dist/doc/latex/fundus/calligra.dvi
texmf-dist/doc/latex/fundus/la.dvi
@@ -36727,6 +44246,7 @@ longdesc Futhark is an ancient runic script, possibly developed from the
longdesc Greek or Etruscan alphabets. There is an alternate Futhark
longdesc system (not represented in this font) which may be related to
longdesc ogham. The font is presented as MetaFont source.
+depend futhark.ARCH
docfiles size=3
texmf-dist/doc/fonts/futhark/READ.ME details="Readme"
texmf-dist/doc/fonts/futhark/futhold.dvi
@@ -36756,6 +44276,7 @@ longdesc Designed for formatting formless letters in German; can also be
longdesc used for English (by those who can read the documentation).
longdesc There are LaTeX 2.09 documentstyle and LaTeX 2e class files for
longdesc both an ‘old’ and a ‘new’ version of g-brief.
+depend g-brief.ARCH
docfiles size=11
texmf-dist/doc/latex/g-brief/beispiel.dvi details="Example, old version" language="de"
texmf-dist/doc/latex/g-brief/beispiel.tex
@@ -36779,6 +44300,7 @@ catalogue-license lppl
name galley
category Package
revision 616
+depend galley.ARCH
docfiles size=2
texmf-dist/doc/latex3/galley/xhj-test.tex
srcfiles size=46
@@ -36795,6 +44317,7 @@ revision 1847
shortdesc Typeset Galois connections.
longdesc The package deals with connections in two-dimensional style,
longdesc optionally in colour.
+depend galois.ARCH
docfiles size=28
texmf-dist/doc/latex/galois/README
texmf-dist/doc/latex/galois/galois.pdf details="Package description"
@@ -36812,6 +44335,7 @@ catalogue-license lppl
name garamond
category Package
revision 90
+depend garamond.ARCH
runfiles size=48
texmf-dist/fonts/tfm/cg/garamond/cgmb.tfm
texmf-dist/fonts/tfm/cg/garamond/cgmb8t.tfm
@@ -36850,6 +44374,7 @@ name garuda
category Package
revision 98
depend c90enc
+depend garuda.ARCH
execute addMap garuda.map
runfiles size=90
texmf-dist/dvips/garuda/config.garuda
@@ -36870,6 +44395,7 @@ runfiles size=90
name gastex
category Package
revision 3316
+depend gastex.ARCH
docfiles size=6
texmf-dist/doc/latex/gastex/README
texmf-dist/doc/latex/gastex/ex-beamer-gastex.tex
@@ -36887,6 +44413,7 @@ longdesc the Georgia Tech Office of Graduate Studies. It satisfies their
longdesc undocumented moving-target requirements in additional to the
longdesc actual documented requirements of the June 2002 Georgia Tech
longdesc Thesis Style Manual, as amended up to 2006.
+depend gatech-thesis.ARCH
docfiles size=215
texmf-dist/doc/latex/gatech-thesis/CHANGES
texmf-dist/doc/latex/gatech-thesis/COMPLIANCE
@@ -36981,6 +44508,7 @@ revision 1487
shortdesc A package for Gaussian operations.
longdesc The gauss package provides configurable tools for producing row
longdesc and column operations on matrices a.k.a. Gaussian operations.
+depend gauss.ARCH
docfiles size=26
texmf-dist/doc/latex/gauss/gauss-doc.dvi
texmf-dist/doc/latex/gauss/gauss-ex.dvi
@@ -37004,6 +44532,7 @@ longdesc cover, inside left and right pages, and back cover. It uses the
longdesc textpos package for placement on the sheet and the graphicx
longdesc package for the necessary rotation. The four panels are set in
longdesc minipages for formatting by the user.
+depend gcard.ARCH
docfiles size=38
texmf-dist/doc/latex/gcard/README details="Readme"
texmf-dist/doc/latex/gcard/gcard.pdf details="Package documentation"
@@ -37028,6 +44557,7 @@ longdesc combines a desire to eliminate unnecessary page-turning with
longdesc the look-up efficiency afforded by numeric citations. The
longdesc package makes use of the (still experimental) BibLaTeX package,
longdesc and is itself also considered experimental; comment is invited.
+depend gcite.ARCH
docfiles size=52
texmf-dist/doc/latex/gcite/README details="Readme"
texmf-dist/doc/latex/gcite/gcite.bib
@@ -37051,6 +44581,7 @@ longdesc wasy and gen fonts, essentially adding the male and female
longdesc symbols to Knuth’s ‘gen’ font, and so avoiding loading
longdesc two fonts when you need only genealogical symbols. The font is
longdesc distributed as MetaFont source.
+depend genealogy.ARCH
docfiles size=4
texmf-dist/doc/fonts/genealogy/README details="Readme"
texmf-dist/doc/fonts/genealogy/licence.txt
@@ -37068,6 +44599,7 @@ catalogue-license lppl
name genmisc
category Package
revision 613
+depend genmisc.ARCH
runfiles size=81
texmf-dist/tex/generic/genmisc/anti.tex
texmf-dist/tex/generic/genmisc/apldef.tex
@@ -37125,6 +44657,7 @@ longdesc options and styles can be used to determine their appearance in
longdesc an easy and consistent way. Includes options for paragraph
longdesc indentation and vertical alignment with respect to the visual
longdesc top and bottom margins.
+depend genmpage.ARCH
docfiles size=23
texmf-dist/doc/latex/genmpage/README
texmf-dist/doc/latex/genmpage/genmpage.pdf details="Package documentation"
@@ -37144,6 +44677,7 @@ revision 1487
shortdesc A Gentle Introduction to TeX.
longdesc The “Gentle Introduction” is the longest-established
longdesc comprehensive free tutorial on the use of plain TeX.
+depend gentle.ARCH
docfiles size=112
texmf-doc/doc/english/gentle/gentle.dvi
texmf-doc/doc/english/gentle/gentle.tex
@@ -37155,6 +44689,7 @@ catalogue-license unknown
name gentle-gr
category Documentation
revision 16
+depend gentle-gr.ARCH
docfiles size=157
texmf-doc/doc/greek/gentle-gr/gentl-gr.ps.gz
texmf-doc/doc/greek/gentle-gr/gentl-gr.tex
@@ -37172,6 +44707,7 @@ longdesc just \usepackage[margin=2cm,nohead]{geometry}. An important
longdesc feature is the package's ability to communicate the paper size
longdesc it's set up to the output (whether via DVI \specials or via
longdesc direct interaction with PDF(La)TeX).
+depend geometry.ARCH
docfiles size=64
texmf-dist/doc/latex/geometry/ChangeLog
texmf-dist/doc/latex/geometry/README details="Package Readme"
@@ -37221,6 +44757,7 @@ longdesc appropriate; no need to worry about fragile commands in almost
longdesc all situations; greater versatility in defining theorem-like
longdesc environments; proofing aids such as version numbers and a
longdesc running index.
+depend geomsty.ARCH
docfiles size=78
texmf-dist/doc/latex/geomsty/manual.pdf
texmf-dist/doc/latex/geomsty/manual.tex
@@ -37261,6 +44798,7 @@ revision 1487
shortdesc Support for German typography.
longdesc Supports the new German orthography (neue deutsche
longdesc Rechtschreibung).
+depend german.ARCH
docfiles size=40
texmf-dist/doc/generic/german/00readme.1st details="Readme" language="de"
texmf-dist/doc/generic/german/gerdoc.dvi
@@ -37288,6 +44826,7 @@ longdesc German packages, BibTeX styles and documentary examples, for
longdesc writing documents with bibliographies. The author has since
longdesc developed the babelbib bundle, which (he asserts) supersedes
longdesc germbib.
+depend germbib.ARCH
docfiles size=42
texmf-dist/doc/bibtex/germbib/README.bibgerm
texmf-dist/doc/bibtex/germbib/apalike.doc
@@ -37324,6 +44863,7 @@ longdesc they are converted to the LICR representation \"a (etc.). This
longdesc breaks the sort algorithm of makeindex, for instance. Ginpenc
longdesc converts umlauts and the sharp-s to the short forms defined by
longdesc babel, e.g., "a instead, if the text is typeset in German.
+depend ginpenc.ARCH
docfiles size=26
texmf-dist/doc/latex/ginpenc/README details="Readme"
texmf-dist/doc/latex/ginpenc/ginpenc.pdf details="Package documentation"
@@ -37362,6 +44902,7 @@ category Package
revision 1487
shortdesc Create glossaries using BibTeX.
longdesc A glossary package using BibTeX with \cite replaced by \gloss.
+depend gloss.ARCH
docfiles size=16
texmf-dist/doc/latex/gloss/gloss.dvi
texmf-dist/doc/latex/gloss/gloss.tex
@@ -37391,6 +44932,7 @@ longdesc preambles and postambles can be specified. There is provision
longdesc for loading a database of terms, only terms used in the text
longdesc will be added to the relevant glossary. The package supersedes
longdesc the author‘s glossary package.
+depend glossaries.ARCH
docfiles size=207
texmf-dist/doc/latex/glossaries/README details="Readme"
texmf-dist/doc/latex/glossaries/doc/CHANGES
@@ -37429,6 +44971,7 @@ catalogue-license lppl
name glyphlist
category Package
revision 4938
+depend glyphlist.ARCH
runfiles size=21
texmf-dist/fonts/map/glyphlist/glyphlist.txt
texmf-dist/fonts/map/glyphlist/texglyphlist.txt
@@ -37447,6 +44990,7 @@ longdesc \DeclareOption etc.). The package needs hyperref and the
longdesc author’s three ‘‘basic’ packages: gmutils, gmverb and
longdesc gmiflink. As a bonus, the driver files are added that typeset
longdesc the LaTeX (TeXLive2005) Base.
+depend gmdoc.ARCH
docfiles size=614
texmf-dist/doc/latex/gmdoc/README details="README"
texmf-dist/doc/latex/gmdoc/basedrivers/doc_gmdoc.tex
@@ -37476,6 +45020,7 @@ longdesc the circumstances where the \geometry command of the geometry
longdesc package may safely be used, (other, of course, than in the
longdesc preamble of a document) and provides a mechanism for using it.
longdesc The package makes use of the author’s gmutils package.
+depend gmeometric.ARCH
docfiles size=23
texmf-dist/doc/latex/gmeometric/README details="Readme"
texmf-dist/doc/latex/gmeometric/gmeometricDoc.pdf details="Package documentation"
@@ -37496,6 +45041,7 @@ longdesc and \hyperlink: one argument instead of the same one twice.
longdesc Also \gmiflink and \gmifref which typeset plain text instead of
longdesc generating an error or printing ‘??’ if there is no
longdesc respective hypertarget or label.
+depend gmiflink.ARCH
docfiles size=17
texmf-dist/doc/latex/gmiflink/README details="README"
texmf-dist/doc/latex/gmiflink/gmiflinkDoc.pdf details="Package documentation"
@@ -37517,6 +45063,7 @@ longdesc and \@ifXeTeX; \(Re)storeMacro(s) to override redefinitions;
longdesc \afterfi and friends; commands from relsize, etc.; “almost an
longdesc environment” or redefinition of \begin (\begin* doesn't check
longdesc if the argument environment is defined).
+depend gmutils.ARCH
docfiles size=206
texmf-dist/doc/latex/gmutils/README details="README"
texmf-dist/doc/latex/gmutils/gmutilsDoc.pdf details="Package documentation"
@@ -37539,6 +45086,7 @@ longdesc long!) and allows you to declare any single character as a
longdesc shorthand as in the \verb command of the shortvrb package of
longdesc the LaTeX distribution. The package depends on the gmutils
longdesc package.
+depend gmverb.ARCH
docfiles size=61
texmf-dist/doc/latex/gmverb/README details="README"
texmf-dist/doc/latex/gmverb/gmverbDoc.pdf details="Package documentation"
@@ -37560,6 +45108,7 @@ longdesc files are automatically processed and converted to PostScript
longdesc or PDF files, which will then be included. If shell escape is
longdesc disabled, the user will have to manually run the files through
longdesc gnuplot and re-run the LaTeX job.
+depend gnuplottex.ARCH
docfiles size=31
texmf-dist/doc/latex/gnuplottex/README
texmf-dist/doc/latex/gnuplottex/example-pdf.tex
@@ -37582,6 +45131,7 @@ revision 957
shortdesc Fonts and macros for typesetting go games.
longdesc The macros provide for nothing more complicated than the
longdesc standard 19x19 board; the fonts are written in MetaFont.
+depend go.ARCH
srcfiles size=3
texmf-dist/source/latex/go/gomaps.ltx
runfiles size=77
@@ -37634,6 +45184,7 @@ revision 106
shortdesc BibTeX styles to format according to GOST.
longdesc BibTeX styles to format bibliography in English, Russian and
longdesc Ukrainian according to GOST 7.1-84 and GOST 7.80-00.
+depend gost.ARCH
docfiles size=112
texmf-dist/doc/bibtex/gost/README details="Readme"
texmf-dist/doc/bibtex/gost/gost71.pdf details="Preparing biblio in GOST 7.1-1984:"
@@ -37664,6 +45215,7 @@ longdesc fonts, a pair of handwriting fonts, Süetterlin and Schwell,
longdesc and a font containing decorative initials. In addition, there
longdesc are two re-encoding packages for Haralambous's fonts, providing
longdesc T1, using virtual fonts, and OT1 and T1, using Metafont.
+depend gothic.ARCH
execute addMap yfrak.map
docfiles size=1
texmf-dist/doc/fonts/gothic/README
@@ -37772,6 +45324,7 @@ longdesc graphics generally produced with other tools. This package aims
longdesc to give a consistent interface to including the file types that
longdesc are understood by your printer driver. For extended
longdesc documentation see epslatex.
+depend graphics.ARCH
docfiles size=278
texmf-dist/doc/latex/graphics/00readme.txt
texmf-dist/doc/latex/graphics/changes.txt
@@ -37835,6 +45388,7 @@ longdesc with dvips, which should at least have version 5.95b. The
longdesc difference for a resulting distilled PDF file is minimal (as
longdesc Ghostscript and Adobe Distiller only include a single copy of
longdesc each graphics file, anyway).
+depend graphicx-psmin.ARCH
docfiles size=26
texmf-dist/doc/latex/graphicx-psmin/README details="Package README"
texmf-dist/doc/latex/graphicx-psmin/graphicx-psmin.pdf details="Package documentation"
@@ -37850,6 +45404,7 @@ catalogue-license lppl
name greek
category Package
revision 960
+depend greek.ARCH
runfiles size=2
texmf-dist/tex/latex/greek/iso-8859-7.def
@@ -37860,6 +45415,7 @@ shortdesc Fonts for typesetting Greek/English documents.
longdesc The fonts are based on Silvio Levy’s classical Greek fonts;
longdesc macros and Greek hyphenation patterns for the fonts’ encoding
longdesc are also provided.
+depend greektex.ARCH
docfiles size=182
texmf-dist/doc/latex/greektex/README details="Readme"
texmf-dist/doc/latex/greektex/gehyphw.gr
@@ -37881,6 +45437,7 @@ longdesc A MetaFont-implementation of the logo commonly known as ‘Der
longdesc Grüne Punkt’ (‘The Green Point’). In Austria, it can be
longdesc found on nearly every bottle. It should not be confused with
longdesc the ‘Recycle’-logo, implemented by Ian Green.
+depend greenpoint.ARCH
docfiles size=2
texmf-dist/doc/fonts/greenpoint/ChangeLog
texmf-dist/doc/fonts/greenpoint/README
@@ -37899,6 +45456,7 @@ shortdesc Include fragments of a dvi file.
longdesc Provides a mechanism to include fragments of dvi files with the
longdesc graphicx package, so that you can use \includegraphics to
longdesc include dvi files. The package requires the dvipaste program.
+depend grfpaste.ARCH
docfiles size=11
texmf-dist/doc/latex/grfpaste/dvipaste.txt
texmf-dist/doc/latex/grfpaste/grfp1.dat
@@ -37925,6 +45483,7 @@ longdesc ancient Athens, producing the ‘Athenian’ numeral for any
longdesc positive number. The package’s \athnum command can (in
longdesc principle) be used to provide alternative typeset display of
longdesc the value of counters.
+depend grnumalt.ARCH
docfiles size=43
texmf-dist/doc/latex/grnumalt/grnumalt.pdf details="Package documentation"
srcfiles size=4
@@ -37940,6 +45499,7 @@ catalogue-license unknown
name groff
category Package
revision 5362
+depend groff.ARCH
execute addMap groff-updmap.map
runfiles size=20
texmf-dist/fonts/afm/groff/freeeuro.afm
@@ -37956,6 +45516,7 @@ runfiles size=20
name grotesq
category Package
revision 964
+depend grotesq.ARCH
execute addMap ugq.map
docfiles size=3
texmf-dist/doc/fonts/grotesq/README.base35
@@ -38000,6 +45561,7 @@ longdesc you (otherwise, legally) own. (The translation is to be steered
longdesc by a file within the this package.) The package grtimes, in the
longdesc bundle, allows the user to typeset monotonic Greek text using
longdesc these MetaFont-specified fonts.
+depend grtimes.ARCH
docfiles size=1
texmf-dist/doc/latex/grtimes/README details="Readme"
srcfiles size=7
@@ -38027,6 +45589,7 @@ longdesc The package provides verbatim typsetting, in the context of the
longdesc Greek option in babel. The package uses the public domain
longdesc Greek-CourierPlain font, and metrics and a font map entry for
longdesc its use are provided.
+depend grverb.ARCH
execute addMap grverb.map
docfiles size=3
texmf-dist/doc/latex/grverb/README
@@ -38059,6 +45622,7 @@ longdesc defines a new environment stammbaum, wherein all elements of
longdesc the scheme are defined. Afterwards all necessary dimensions are
longdesc calculated and the scheme is drawn. Currently two steps of
longdesc symmetry reduction are supported.
+depend gu.ARCH
docfiles size=202
texmf-dist/doc/latex/gu/README details="Package README"
texmf-dist/doc/latex/gu/gudemo.tex
@@ -38074,6 +45638,7 @@ catalogue-license lppl
name guide-to-latex
category Documentation
revision 1487
+depend guide-to-latex.ARCH
docfiles size=200
texmf-doc/doc/english/guide-to-latex/README.txt
texmf-doc/doc/english/guide-to-latex/demo.eps
@@ -38183,6 +45748,7 @@ docfiles size=200
name guides-pl
category Documentation
revision 16
+depend guides-pl.ARCH
docfiles size=662
texmf-doc/doc/polish/guides-pl/00readme
texmf-doc/doc/polish/guides-pl/gentl-pl.pdf
@@ -38201,6 +45767,7 @@ longdesc places arbitrary TeX code over the lyrics. To typeset the
longdesc chords graphically (and not only by name), the author
longdesc recommends use of an additional package such as gchords by K.
longdesc Peeters.
+depend guitar.ARCH
docfiles size=9
texmf-dist/doc/latex/guitar/guitar.dvi
texmf-dist/doc/latex/guitar/guitar.tex
@@ -38218,6 +45785,7 @@ catalogue-license unknown
name guitbeamer
category Package
revision 5506
+depend guitbeamer.ARCH
docfiles size=1258
texmf-dist/doc/latex/guitbeamer/README
texmf-dist/doc/latex/guitbeamer/README.it
@@ -38238,6 +45806,7 @@ shortdesc Polish oriented macros.
longdesc Various small utility packages for typesetting in plain TeX,
longdesc with a Polish perspective. Neither the package, nor any of its
longdesc contents, appears on CTAN.
+depend gustlib.ARCH
docfiles size=5
texmf-dist/doc/plain/gustlib/README
texmf-dist/doc/plain/gustlib/readme.biblotex
@@ -38284,6 +45853,7 @@ shortdesc Pointing hand font.
longdesc Provides right- and left-pointing hands in both black-on-white
longdesc and white-on-black realisation. The font is distributed as
longdesc MetaFont source.
+depend hands.ARCH
runfiles size=6
texmf-dist/fonts/source/public/hands/hands.mf
texmf-dist/fonts/source/public/hands/handsdef.mf
@@ -38309,6 +45879,7 @@ longdesc individual punctuation character. ‘Real’ attempts at
longdesc hanging punction should nowadays use the microtype package,
longdesc which takes advantage of the support offered in recent versions
longdesc of pdfTeX.
+depend hanging.ARCH
docfiles size=1
texmf-dist/doc/latex/hanging/README
srcfiles size=7
@@ -38328,6 +45899,7 @@ shortdesc Typeset harmony symbols, etc., for musicology.
longdesc The package harmony.sty uses the packages ifthen and amssymb,
longdesc together with the LaTeX font lcirclew10 and the font musix13
longdesc from musixtex.
+depend harmony.ARCH
docfiles size=40
texmf-dist/doc/latex/harmony/README details="Readme"
texmf-dist/doc/latex/harmony/harmony.pdf details="Package documentation"
@@ -38347,6 +45919,7 @@ longdesc Provides over- and under-harpoon symbol commands; the harpoons
longdesc may point in either direction, with the hook pointing up or
longdesc down. The covered object is provided as an argument to the
longdesc commands, so that they have the look of accent commands.
+depend harpoon.ARCH
docfiles size=2
texmf-dist/doc/latex/harpoon/harpoon.dvi
texmf-dist/doc/latex/harpoon/harpoon.tex
@@ -38371,6 +45944,7 @@ longdesc Design Computing Unit of the University of Sydney) and
longdesc kluwer.bst (aiming at the format preferred in Kluwer
longdesc publications). This package is no longer recommended for use:
longdesc the harvard package for LaTeX 2e should be used instead.
+depend harvard.ARCH
docfiles size=9
texmf-dist/doc/latex/harvard/harvard.dvi
texmf-dist/doc/latex/harvard/harvard.tex
@@ -38400,6 +45974,7 @@ revision 1487
shortdesc Macros for scientific articles.
longdesc Known as ‘Harvard macros’, since written at that
longdesc University.
+depend harvmac.ARCH
docfiles size=7
texmf-dist/doc/plain/harvmac/harvsamp.dvi
texmf-dist/doc/plain/harvmac/harvsamp.tex
@@ -38417,6 +45992,7 @@ shortdesc MetaPost macros for hatching interior of closed paths.
longdesc The file hatching.mp contains a set of MetaPost macros for
longdesc hatching interior of closed paths. Examples of usage are
longdesc included.
+depend hatching.ARCH
docfiles size=3
texmf-dist/doc/metapost/hatching/htchuse.mp
texmf-dist/doc/metapost/hatching/htchuse_.tex
@@ -38431,6 +46007,7 @@ catalogue-license pd
name hc
category Package
revision 971
+depend hc.ARCH
docfiles size=1
texmf-dist/doc/latex/hc/README
srcfiles size=22
@@ -38450,6 +46027,7 @@ runfiles size=34
name help
category Documentation
revision 1513
+depend help.ARCH
docfiles size=139
texmf-doc/doc/english/help/CTAN.sites
texmf-doc/doc/english/help/NTS-FAQ
@@ -38466,6 +46044,7 @@ docfiles size=139
name helvetic
category Package
revision 2488
+depend helvetic.ARCH
runfiles size=720
texmf-dist/dvips/helvetic/config.uhv
texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
@@ -38809,6 +46388,7 @@ runfiles size=720
name hepparticles
category Package
revision 973
+depend hepparticles.ARCH
docfiles size=65
texmf-dist/doc/latex/hepparticles/README
texmf-dist/doc/latex/hepparticles/hepparticles.pdf
@@ -38833,6 +46413,7 @@ longdesc Extensive options for draft production, screen viewing and
longdesc binding-ready output; – Helpful extensions of existing
longdesc environments, including equation and tabular; and – Support
longdesc for quotations at the start of the thesis and each chapter.
+depend hepthesis.ARCH
docfiles size=248
texmf-dist/doc/latex/hepthesis/ChangeLog
texmf-dist/doc/latex/hepthesis/README details="Package README"
@@ -38868,6 +46449,7 @@ catalogue-license lppl
name hepunits
category Package
revision 5061
+depend hepunits.ARCH
docfiles size=27
texmf-dist/doc/latex/hepunits/ChangeLog
texmf-dist/doc/latex/hepunits/README
@@ -38884,6 +46466,7 @@ longdesc Hex is a mathematical game invented by the Danish mathematician
longdesc Piet Hein and independently by the mathematician John Nash.
longdesc This package defines an environment that enables the user to
longdesc draw such a game in a trivial way.
+depend hexgame.ARCH
docfiles size=11
texmf-dist/doc/latex/hexgame/README details="Readme"
texmf-dist/doc/latex/hexgame/hexgame.pdf details="Package documentation"
@@ -38901,6 +46484,7 @@ revision 111
shortdesc The hfbright fonts.
longdesc These are Adobe Type 1 versions of the OT1-encoded and maths
longdesc parts of the Computer Modern Bright fonts.
+depend hfbright.ARCH
execute addMixedMap hfbright.map
docfiles size=1
texmf-dist/doc/fonts/hfbright/README
@@ -38979,6 +46563,7 @@ longdesc It does a similar job as the eco package by Sebastian Kirsch
longdesc but includes a couple of improvements, i.e., better kerning
longdesc with guillemets, and support for character protruding using the
longdesc pdfcprot package.
+depend hfoldsty.ARCH
docfiles size=136
texmf-dist/doc/fonts/hfoldsty/ChangeLog
texmf-dist/doc/fonts/hfoldsty/README
@@ -39678,6 +47263,7 @@ shortdesc Print vectors, matrices, and tensors.
longdesc This package provides commands for vectors, matrices, and
longdesc tensors with different styles — arrows (as the LaTeX
longdesc default), underlined, and bold).
+depend hhtensor.ARCH
docfiles size=45
texmf-dist/doc/latex/hhtensor/README details="Package Readme"
texmf-dist/doc/latex/hhtensor/hhtensor.pdf details="Package documentation"
@@ -39706,6 +47292,7 @@ longdesc Ptolomeny (together with cartouches) and some numbers, but the
longdesc package is not for serious Egyptologists. The bundle is part of
longdesc a set of archaic fonts, and requires use of the oands fonts
longdesc from that set.
+depend hieroglf.ARCH
docfiles size=53
texmf-dist/doc/fonts/hieroglf/README
texmf-dist/doc/fonts/hieroglf/tryfont.pdf
@@ -39732,6 +47319,7 @@ longdesc of high resolution images, if each pair of files have the same
longdesc basename (e.g., bird_low.eps and bird.eps). The package is a
longdesc simple wrapper around the \includegraphics command of the
longdesc graphicx package.
+depend hilowres.ARCH
srcfiles size=4
texmf-dist/source/latex/hilowres/hilowres.dtx
texmf-dist/source/latex/hilowres/hilowres.ins
@@ -39749,6 +47337,7 @@ revision 2415
shortdesc Draw histograms with the LaTeX picture environment.
longdesc This is a macro collection to draw histogram bars inside a
longdesc LaTeX picture-environment.
+depend histogr.ARCH
docfiles size=27
texmf-dist/doc/latex/histogr/histogr.pdf
srcfiles size=4
@@ -39767,6 +47356,7 @@ revision 980
shortdesc Class for documentation.
longdesc An article-based class designed for use for documentation in
longdesc high-technology companies.
+depend hitec.ARCH
docfiles size=7
texmf-dist/doc/latex/hitec/README details="Package Readme"
texmf-dist/doc/latex/hitec/hitec_doc.pdf details="Package documentation"
@@ -39785,6 +47375,7 @@ shortdesc A dissertation class.
longdesc The class was developed to typeset a dissertation at ETH
longdesc Zürich. The requirements were to use A5 paper and 10pt type. A
longdesc sample of the output is shown in the PDF documentation link.
+depend hpsdiss.ARCH
docfiles size=54
texmf-dist/doc/latex/hpsdiss/hpsdiss.pdf details="Example of package use"
srcfiles size=12
@@ -39805,6 +47396,7 @@ longdesc This package simplifies creation of new documents for the
longdesc (average) Croatian user. As an example, a class file hrdipl.cls
longdesc (designed for the graduation thesis at the University of
longdesc Zagreb) and sample thesis documents are included.
+depend hrlatex.ARCH
docfiles size=40
texmf-dist/doc/latex/hrlatex/README
texmf-dist/doc/latex/hrlatex/hrlatex.pdf details="Package documentation:" language="hr"
@@ -39838,6 +47430,7 @@ longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}.
longdesc Options are included to place captions to the right or left,
longdesc and rotated. Setting nonFloat=true results in placing the float
longdesc here.
+depend hvfloat.ARCH
docfiles size=89
texmf-dist/doc/latex/hvfloat/VERSION-1.1
texmf-dist/doc/latex/hvfloat/bateaux.jpg
@@ -39860,6 +47453,7 @@ longdesc Typeset math in a style that suits the Adobe Helvetica text
longdesc fonts. Commercial (Adobe type 1) versions of the HV-Math fonts
longdesc are available from Micropress; free bitmap versions of the
longdesc fonts from the Micropress fonts directories.
+depend hvmath.ARCH
docfiles size=1
texmf-dist/doc/latex/hvmath/hvmaths.txt
srcfiles size=6
@@ -39879,6 +47473,7 @@ shortdesc Hypertext cross referencing.
longdesc Redefines LaTeX cross-referencing commands to insert \special
longdesc commands for HyperTeX dvi viewers, such as recent versions of
longdesc xdvi. The package is now largely superseded by hyperref.
+depend hyper.ARCH
srcfiles size=49
texmf-dist/source/latex/hyper/Makefile-MSDos
texmf-dist/source/latex/hyper/Makefile-Unix
@@ -39942,6 +47537,7 @@ longdesc TeX4ht; and for VTeX's pdf and HTML backends. The package is
longdesc distributed with the backref and nameref packages, which make
longdesc use of the facilities of hyperref. The package depends on the
longdesc author's kvoptions and refcount packages.
+depend hyperref.ARCH
docfiles size=1265
texmf-dist/doc/latex/hyperref/ChangeLog
texmf-dist/doc/latex/hyperref/ChangeLog.pdf
@@ -40040,6 +47636,7 @@ catalogue-license lppl
name hyperref-docsrc
category Package
revision 5379
+depend hyperref-docsrc.ARCH
docfiles size=62
texmf-dist/doc/latex/hyperref-docsrc/README
texmf-dist/doc/latex/hyperref-docsrc/paperslides99.zip
@@ -40063,6 +47660,7 @@ longdesc author, title, subject, keywords, copyright, and license URL.
longdesc hyperxmp currently embeds XMP only within PDF documents but is
longdesc compatible with pdflatex, latex+dvipdfm, and
longdesc latex+dvips+ps2pdf.
+depend hyperxmp.ARCH
docfiles size=73
texmf-dist/doc/latex/hyperxmp/README details="Readme"
texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation"
@@ -40079,6 +47677,7 @@ catalogue-license lppl
name hyphen-arabic
category TLCore
revision 3574
+depend hyphen-arabic.ARCH
execute BuildLanguageDat ar
execute BuildLanguageDat fa
runfiles size=2
@@ -40088,6 +47687,7 @@ runfiles size=2
name hyphen-base
category TLCore
revision 3933
+depend hyphen-base.ARCH
runfiles size=24
texmf/tex/generic/config/language.dat
texmf/tex/generic/config/language.us
@@ -40101,6 +47701,7 @@ runfiles size=24
name hyphen-basque
category TLCore
revision 2090
+depend hyphen-basque.ARCH
execute BuildLanguageDat ba
runfiles size=5
texmf/tex/generic/config/language.ba.dat
@@ -40110,6 +47711,7 @@ runfiles size=5
name hyphen-bulgarian
category TLCore
revision 2090
+depend hyphen-bulgarian.ARCH
execute BuildLanguageDat bg
runfiles size=1
texmf/tex/generic/config/language.bg.dat
@@ -40117,6 +47719,7 @@ runfiles size=1
name hyphen-coptic
category TLCore
revision 3573
+depend hyphen-coptic.ARCH
execute BuildLanguageDat cop
runfiles size=3
texmf/tex/generic/config/language.cop.dat
@@ -40125,6 +47728,7 @@ runfiles size=3
name hyphen-croatian
category TLCore
revision 3573
+depend hyphen-croatian.ARCH
execute BuildLanguageDat hr
runfiles size=4
texmf/tex/generic/config/language.hr.dat
@@ -40133,6 +47737,7 @@ runfiles size=4
name hyphen-czechslovak
category TLCore
revision 3573
+depend hyphen-czechslovak.ARCH
execute BuildLanguageDat cz
runfiles size=5
texmf/tex/generic/config/language.cz.dat
@@ -40144,6 +47749,7 @@ runfiles size=5
name hyphen-danish
category TLCore
revision 3573
+depend hyphen-danish.ARCH
execute BuildLanguageDat dk
runfiles size=5
texmf/tex/generic/config/language.dk.dat
@@ -40154,6 +47760,7 @@ runfiles size=5
name hyphen-dutch
category TLCore
revision 3573
+depend hyphen-dutch.ARCH
execute BuildLanguageDat ne
runfiles size=23
texmf/tex/generic/config/language.ne.dat
@@ -40162,6 +47769,7 @@ runfiles size=23
name hyphen-esperanto
category TLCore
revision 3573
+depend hyphen-esperanto.ARCH
execute BuildLanguageDat eo
runfiles size=6
texmf/tex/generic/config/language.eo.dat
@@ -40170,6 +47778,7 @@ runfiles size=6
name hyphen-estonian
category TLCore
revision 3573
+depend hyphen-estonian.ARCH
execute BuildLanguageDat et
runfiles size=4
texmf/tex/generic/config/language.et.dat
@@ -40178,6 +47787,7 @@ runfiles size=4
name hyphen-finnish
category TLCore
revision 3573
+depend hyphen-finnish.ARCH
execute BuildLanguageDat fi
runfiles size=3
texmf/tex/generic/config/language.fi.dat
@@ -40186,6 +47796,7 @@ runfiles size=3
name hyphen-french
category TLCore
revision 3573
+depend hyphen-french.ARCH
execute BuildLanguageDat fr
runfiles size=10
texmf/tex/generic/config/language.fr.dat
@@ -40194,6 +47805,7 @@ runfiles size=10
name hyphen-german
category TLCore
revision 3573
+depend hyphen-german.ARCH
execute BuildLanguageDat de
runfiles size=58
texmf/tex/generic/config/language.de.dat
@@ -40205,6 +47817,7 @@ runfiles size=58
name hyphen-greek
category TLCore
revision 3573
+depend hyphen-greek.ARCH
execute BuildLanguageDat gr
runfiles size=479
texmf/doc/generic/elhyphen/README
@@ -40223,6 +47836,7 @@ runfiles size=479
name hyphen-hungarian
category TLCore
revision 3573
+depend hyphen-hungarian.ARCH
execute BuildLanguageDat hu
docfiles size=48
texmf/doc/generic/huhyphen/huhyphn.pdf
@@ -40236,6 +47850,7 @@ runfiles size=25
name hyphen-ibycus
category TLCore
revision 3573
+depend hyphen-ibycus.ARCH
execute BuildLanguageDat iby
runfiles size=7
texmf/tex/generic/config/language.iby.dat
@@ -40244,6 +47859,7 @@ runfiles size=7
name hyphen-icelandic
category TLCore
revision 3573
+depend hyphen-icelandic.ARCH
execute BuildLanguageDat is
runfiles size=9
texmf/tex/generic/config/language.is.dat
@@ -40252,6 +47868,7 @@ runfiles size=9
name hyphen-indonesian
category TLCore
revision 3573
+depend hyphen-indonesian.ARCH
execute BuildLanguageDat in
runfiles size=2
texmf/tex/generic/config/language.in.dat
@@ -40260,6 +47877,7 @@ runfiles size=2
name hyphen-interlingua
category TLCore
revision 2119
+depend hyphen-interlingua.ARCH
execute BuildLanguageDat ia
runfiles size=3
texmf/tex/generic/config/language.ia.dat
@@ -40268,6 +47886,7 @@ runfiles size=3
name hyphen-italian
category TLCore
revision 3606
+depend hyphen-italian.ARCH
execute BuildLanguageDat it
runfiles size=3
texmf/tex/generic/config/language.it.dat
@@ -40276,6 +47895,7 @@ runfiles size=3
name hyphen-latin
category TLCore
revision 4878
+depend hyphen-latin.ARCH
execute BuildLanguageDat la
runfiles size=4
texmf/tex/generic/config/language.la.dat
@@ -40284,6 +47904,7 @@ runfiles size=4
name hyphen-mongolian
category TLCore
revision 5096
+depend hyphen-mongolian.ARCH
execute BuildLanguageDat mn
execute BuildLanguageDat mn2a
runfiles size=6
@@ -40294,6 +47915,7 @@ runfiles size=6
name hyphen-norwegian
category TLCore
revision 5375
+depend hyphen-norwegian.ARCH
execute BuildLanguageDat no
execute BuildLanguageDat nn
execute BuildLanguageDat nb
@@ -40306,6 +47928,7 @@ runfiles size=53
name hyphen-pinyin
category TLCore
revision 3573
+depend hyphen-pinyin.ARCH
execute BuildLanguageDat py
runfiles size=2
texmf/tex/generic/config/language.py.dat
@@ -40314,6 +47937,7 @@ runfiles size=2
name hyphen-polish
category TLCore
revision 3573
+depend hyphen-polish.ARCH
execute BuildLanguageDat pl
runfiles size=10
texmf/tex/generic/config/language.pl.dat
@@ -40322,6 +47946,7 @@ runfiles size=10
name hyphen-portuguese
category TLCore
revision 3573
+depend hyphen-portuguese.ARCH
execute BuildLanguageDat pt
runfiles size=2
texmf/tex/generic/config/language.pt.dat
@@ -40330,6 +47955,7 @@ runfiles size=2
name hyphen-romanian
category TLCore
revision 3573
+depend hyphen-romanian.ARCH
execute BuildLanguageDat ro
runfiles size=4
texmf/tex/generic/config/language.ro.dat
@@ -40339,6 +47965,7 @@ name hyphen-russian
category TLCore
revision 3573
depend ruhyphen
+depend hyphen-russian.ARCH
execute BuildLanguageDat ru
runfiles size=1
texmf/tex/generic/config/language.ru.dat
@@ -40346,6 +47973,7 @@ runfiles size=1
name hyphen-serbian
category TLCore
revision 3573
+depend hyphen-serbian.ARCH
execute BuildLanguageDat sr
runfiles size=7
texmf/tex/generic/config/language.sr.dat
@@ -40354,6 +47982,7 @@ runfiles size=7
name hyphen-slovene
category TLCore
revision 3635
+depend hyphen-slovene.ARCH
execute BuildLanguageDat sl
runfiles size=4
texmf/tex/generic/config/language.sl.dat
@@ -40362,6 +47991,7 @@ runfiles size=4
name hyphen-spanish
category TLCore
revision 4136
+depend hyphen-spanish.ARCH
execute BuildLanguageDat es
runfiles size=18
texmf/tex/generic/config/language.es.dat
@@ -40372,6 +48002,7 @@ runfiles size=18
name hyphen-swedish
category TLCore
revision 3573
+depend hyphen-swedish.ARCH
execute BuildLanguageDat sw
runfiles size=10
texmf/tex/generic/config/language.sw.dat
@@ -40380,6 +48011,7 @@ runfiles size=10
name hyphen-turkish
category TLCore
revision 3573
+depend hyphen-turkish.ARCH
execute BuildLanguageDat tk
runfiles size=3
texmf/tex/generic/config/language.tk.dat
@@ -40388,6 +48020,7 @@ runfiles size=3
name hyphen-ukenglish
category TLCore
revision 3573
+depend hyphen-ukenglish.ARCH
execute BuildLanguageDat uk
runfiles size=15
texmf/tex/generic/config/language.uk.dat
@@ -40396,6 +48029,7 @@ runfiles size=15
name hyphen-ukrainian
category TLCore
revision 3573
+depend hyphen-ukrainian.ARCH
execute BuildLanguageDat ur
runfiles size=1
texmf/tex/generic/config/language.ur.dat
@@ -40403,6 +48037,7 @@ runfiles size=1
name hyphen-usorbian
category TLCore
revision 3573
+depend hyphen-usorbian.ARCH
execute BuildLanguageDat sor
runfiles size=5
texmf/tex/generic/config/language.sor.dat
@@ -40411,6 +48046,7 @@ runfiles size=5
name hyphen-welsh
category TLCore
revision 3573
+depend hyphen-welsh.ARCH
execute BuildLanguageDat cy
runfiles size=12
texmf/tex/generic/config/language.cy.dat
@@ -40425,6 +48061,7 @@ longdesc of non-alphabetics or monospaced fonts. Enables hyphenation
longdesc within ‘words’ that contain non-alphabetic characters
longdesc (e.g., that include underscores), and hyphenation of text
longdesc typeset in monospaced (e.g., cmtt) fonts.
+depend hyphenat.ARCH
docfiles size=1
texmf-dist/doc/latex/hyphenat/README details="Readme"
srcfiles size=10
@@ -40440,6 +48077,7 @@ catalogue-license lppl
name hyplain
category Package
revision 2356
+depend hyplain.ARCH
docfiles size=16
texmf-dist/doc/plain/hyplain/README
texmf-dist/doc/plain/hyplain/hydoc.pdf
@@ -40461,6 +48099,7 @@ longdesc cbgreek. It sets up "ibycus" as a pseudo-language you can
longdesc specify in the normal Babel manner. For proper hyphenation of
longdesc Greek quoted in mid-paragraph, you should use it with elatex.
longdesc See the README for details.
+depend ibycus-babel.ARCH
docfiles size=26
texmf-dist/doc/latex/ibycus-babel/README details="Readme"
texmf-dist/doc/latex/ibycus-babel/ibycus-babel-test.tex
@@ -40488,6 +48127,7 @@ longdesc 1800. The fonts are available both as MetaFont source and in
longdesc Adobe Type 1 format. This distribution of ibycus is accompanied
longdesc by a set of macro packages to use it with Plain TeX or LaTeX,
longdesc but for use with Babel, see the ibycus-babel package.
+depend ibygrk.ARCH
execute addMixedMap iby.map
docfiles size=40
texmf-dist/doc/latex/ibygrk/COPYING
@@ -40567,6 +48207,7 @@ revision 1926
shortdesc Class for typesetting articles for the ICSV conference.
longdesc This is an ad-hoc class for typesetting articles for the ICSV
longdesc conference, based on the earler active-conf by the same author.
+depend icsv.ARCH
docfiles size=57
texmf-dist/doc/latex/icsv/README
texmf-dist/doc/latex/icsv/icsv-example.tex
@@ -40589,6 +48230,7 @@ shortdesc IEEE Power Engineering Society Transactions.
longdesc Supports typesetting of transactions, as well as discussions
longdesc and closures, for the IEEE Power Engineering Society
longdesc Transactions journals.
+depend ieeepes.ARCH
docfiles size=45
texmf-dist/doc/latex/ieeepes/README details="Readme"
texmf-dist/doc/latex/ieeepes/ieeepes_check.dvi
@@ -40611,6 +48253,7 @@ name ifacmtg
category Package
revision 1487
shortdesc Elsevier Science preprint style for IFAC meetings.
+depend ifacmtg.ARCH
docfiles size=89
texmf-dist/doc/latex/ifacmtg/README.1st
texmf-dist/doc/latex/ifacmtg/ifacsam-letter.dvi
@@ -40638,6 +48281,7 @@ longdesc Darmstadt, Germany. It is based on ideas of pdfslide, but
longdesc completely rewritten for compatibility with texpower and
longdesc seminar. The manual describes all functions and provides a
longdesc sample.
+depend ifmslide.ARCH
docfiles size=102
texmf-dist/doc/latex/ifmslide/README details="Readme"
texmf-dist/doc/latex/ifmslide/ifmman.dep
@@ -40685,6 +48329,7 @@ longdesc symbols, mountaineering symbols, electronic circuit symbols and
longdesc a set of miscellaneous symbols. A LaTeX package is provided,
longdesc that allows the user to load only those symbols needed in a
longdesc document.
+depend ifsym.ARCH
docfiles size=37
texmf-dist/doc/fonts/ifsym/ifsym.ps.gz
runfiles size=46
@@ -40739,6 +48384,7 @@ longdesc A simple package which provides an \ifxetex conditional, so
longdesc that other code can determine that it is running under XeTeX.
longdesc The package requires the e-TeX extensions to the TeX primitive
longdesc set.
+depend ifxetex.ARCH
docfiles size=1
texmf-dist/doc/generic/ifxetex/README
runfiles size=1
@@ -40761,6 +48407,7 @@ longdesc authors already familiar with amsart to easily submit
longdesc manuscripts for The Israel Journal of Mathematics or to put the
longdesc preprints in http://www.arxiv.org with minimal changes in the
longdesc LaTeX source.
+depend ijmart.ARCH
docfiles size=188
texmf-dist/doc/latex/ijmart/README details="Readme"
texmf-dist/doc/latex/ijmart/ijmart.pdf details="Package documentation"
@@ -40788,6 +48435,7 @@ longdesc ijqc.bst is a BibTeX style file to support publication in
longdesc Wiley's International Journal of Quantum Chemistry. It is not
longdesc in any way officially endorsed by the publisher or editors, and
longdesc is provided without any warranty one could ever think of.
+depend ijqc.ARCH
docfiles size=39
texmf-dist/doc/bibtex/ijqc/README details="Package Readme"
texmf-dist/doc/bibtex/ijqc/makefile
@@ -40808,6 +48456,7 @@ shortdesc International Modal Analysis Conference format.
longdesc A set of files for producing correctly formatted documents for
longdesc the International Modal Analysis Conference. The bundle
longdesc provides a LaTeX package and a BibTeX style file.
+depend imac.ARCH
docfiles size=7
texmf-dist/doc/latex/imac/imac.dvi
texmf-dist/doc/latex/imac/imac.tex
@@ -40829,6 +48478,7 @@ longdesc The LaTeX class `image-gallery' can be used to create an
longdesc overview of pictures from a digital camera or from other
longdesc sources. It is possible to adjust the size of the pictures and
longdesc all the margins. The example file shows the usage.
+depend image-gallery.ARCH
docfiles size=399
texmf-dist/doc/latex/image-gallery/README details="Readme"
texmf-dist/doc/latex/image-gallery/gallery-example.pdf details="Example output"
@@ -40871,6 +48521,7 @@ longdesc This directory mirrors the canonical source of the project
longdesc which is maintaining the book “TeX for the Impatient”,
longdesc which is now out of print. A version translated to French is
longdesc also available.
+depend impatient.ARCH
docfiles size=624
texmf-doc/doc/english/impatient/Makefile
texmf-doc/doc/english/impatient/README details="Basic project information:"
@@ -40917,6 +48568,7 @@ catalogue-license fdl
name impatient-fr
category Documentation
revision 16
+depend impatient-fr.ARCH
docfiles size=645
texmf-doc/doc/french/impatient-fr/README
texmf-doc/doc/french/impatient-fr/config.tex
@@ -40959,6 +48611,7 @@ longdesc robust \index command. It supplies short hand notations for the
longdesc \index command (^{word}) and a * variation of \index
longdesc (abbreviated _{word}) that prints the word being indexed, as
longdesc well as creating an index entry for it.
+depend index.ARCH
docfiles size=68
texmf-dist/doc/latex/index/README details="Package Readme"
texmf-dist/doc/latex/index/TODO
@@ -40995,6 +48648,7 @@ revision 5111
shortdesc Adobe Type 1 decorative initial fonts.
longdesc For each font, at least an .pfb and .tfm file is provided, with
longdesc a .fd file for use with LaTeX.
+depend initials.ARCH
execute addMap Acorn.map
execute addMap AnnSton.map
execute addMap ArtNouv.map
@@ -41195,6 +48849,7 @@ longdesc A BibTeX style and a LaTeX package that allow for a full
longdesc bibliography at the end of the document as well as citation
longdesc details in footnotes. The footnote details include "op. cit."
longdesc and "ibid." contractions.
+depend inlinebib.ARCH
docfiles size=10
texmf-dist/doc/latex/inlinebib/MANIFEST
texmf-dist/doc/latex/inlinebib/inlinebib.htm details="Package documentation"
@@ -41214,6 +48869,7 @@ name insbox
category Package
revision 1487
shortdesc A TeX macro for inserting pictures/boxes into paragraphs.
+depend insbox.ARCH
docfiles size=19
texmf-dist/doc/generic/insbox/demo.dvi
texmf-dist/doc/generic/insbox/demo.tex
@@ -41235,6 +48891,7 @@ longdesc write LaTeX documents which, ultimately, create interactive
longdesc question-and-answer Portable Document Format (PDF) tutorials
longdesc meant to be used by Internet students and that, in particular,
longdesc freely use mathematical notation.
+depend interactiveworkbook.ARCH
docfiles size=242
texmf-dist/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf
texmf-dist/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.tex
@@ -41365,6 +49022,7 @@ shortdesc Calculate inverse file paths.
longdesc The package calculates inverse relative paths. Such things may
longdesc be useful, for example, when writing an auxiliary file to a
longdesc different directory.
+depend inversepath.ARCH
docfiles size=23
texmf-dist/doc/latex/inversepath/README details="Readme"
texmf-dist/doc/latex/inversepath/dtx-style.sty
@@ -41386,6 +49044,7 @@ shortdesc Generate invoices.
longdesc The invoice package is used for generating invoices. Supports
longdesc Afrikaans and Italian. Includes invisible expense items and
longdesc deductions.
+depend invoice.ARCH
docfiles size=34
texmf-dist/doc/latex/invoice/00README.tex
texmf-dist/doc/latex/invoice/COPYING
@@ -41408,6 +49067,7 @@ shortdesc Numeric citation style for IOP journals.
longdesc BibTeX style providing numeric citation in Harvard-like format.
longdesc Intended for use with Institute of Physics (IOP) journals,
longdesc including Journal of Physics.
+depend iopart-num.ARCH
docfiles size=19
texmf-dist/doc/bibtex/iopart-num/README details="Readme"
texmf-dist/doc/bibtex/iopart-num/iopart-num.bib
@@ -41426,6 +49086,7 @@ revision 1487
shortdesc LaTeX macros for using WSUIPA fonts..
longdesc The package comprises the LaTeX component of wsuipa package. It
longdesc is not available separately on CTAN.
+depend ipa.ARCH
docfiles size=16
texmf-dist/doc/latex/ipa/README
texmf-dist/doc/latex/ipa/ipaman.dvi
@@ -41446,6 +49107,7 @@ longdesc Generic class and package files for typesetting ISO
longdesc International Standard documents. Several standard documents
longdesc have been printed by ISO from camera-ready copy prepared using
longdesc LaTeX and these files.
+depend iso.ARCH
docfiles size=147
texmf-dist/doc/latex/iso/README details="Readme"
texmf-dist/doc/latex/iso/isoman.pdf details="Package manual"
@@ -41475,6 +49137,7 @@ shortdesc Typesetting the STEP standards.
longdesc Class and package files building on iso for typesetting the ISO
longdesc 10303 (STEP) standards. Standard documents prepared using these
longdesc packages have been published by ISO.
+depend iso10303.ARCH
docfiles size=107
texmf-dist/doc/latex/iso10303/stepman.pdf details="Package manual"
srcfiles size=41
@@ -41550,6 +49213,7 @@ longdesc date range and leaves out unnecessary year or month entries.
longdesc This package supports German (old and new rules), Austrian, US
longdesc English, British English, French, Danish, Swedish, and
longdesc Norwegian.
+depend isodate.ARCH
docfiles size=128
texmf-dist/doc/latex/isodate/ChangeLog
texmf-dist/doc/latex/isodate/README details="Package Readme"
@@ -41592,6 +49256,7 @@ longdesc set up with options, thus making the class easily adaptable to
longdesc user's wishes and extensible for other document types. The
longdesc class is based on Victor Eijkhout's NTG brief class, which
longdesc implements the NEN1026 standard.
+depend isodoc.ARCH
docfiles size=432
texmf-dist/doc/latex/isodoc/README
texmf-dist/doc/latex/isodoc/accept.tex
@@ -41626,6 +49291,7 @@ longdesc The isorot package is for rotation of document elements. It is
longdesc a combination of the lscape package and an extension of the
longdesc rotating package. The package is designed for use with the iso
longdesc class but may be used with any normal class.
+depend isorot.ARCH
docfiles size=51
texmf-dist/doc/latex/isorot/README details="Package Readme"
texmf-dist/doc/latex/isorot/rotman.pdf details="Package documentation"
@@ -41648,6 +49314,7 @@ longdesc The package provides a command \isotope for setting the atomic
longdesc weight and atomic number indications of isotopes. (The naive
longdesc way of doing the job with (La)TeX mathematics commands produces
longdesc an unsatisfactory result.)
+depend isotope.ARCH
srcfiles size=3
texmf-dist/source/latex/isotope/isotope.dtx
texmf-dist/source/latex/isotope/isotope.ins
@@ -41667,6 +49334,7 @@ longdesc uno” instead of “Capitolo 1", that is, spelling the number
longdesc in words instead of the usual digit form. This package provides
longdesc support for spelling out numbers in words, both in cardinal and
longdesc in ordinal form.
+depend itnumpar.ARCH
docfiles size=38
texmf-dist/doc/latex/itnumpar/README details="Readme"
texmf-dist/doc/latex/itnumpar/itnumpar.pdf details="Package documentation"
@@ -41683,6 +49351,7 @@ catalogue-license lppl
name itrans
category Package
revision 1003
+depend itrans.ARCH
docfiles size=107
texmf-dist/doc/fonts/itrans/README
texmf-dist/doc/fonts/itrans/beng.itx
@@ -41805,6 +49474,7 @@ longdesc been prepared: T1 (ec), T2 (abc), and OT2—Cyrillic, T5
longdesc (Vietnamese), OT4, QX, texansi and nonstandard (IL2 for the
longdesc Czech fonts), as well as supporting macros and files defining
longdesc fonts for LaTeX.
+depend iwona.ARCH
execute addMap iwona.map
docfiles size=15
texmf-dist/doc/fonts/iwona/00readme.eng details="Outline in English:"
@@ -42406,6 +50076,7 @@ revision 614
shortdesc Macros supporting Jade DSSSL output.
longdesc Macro package on top of LaTeX to typeset TeX output of the Jade
longdesc DSSSL implementation.
+depend jadetex.ARCH
docfiles size=72
texmf-dist/doc/jadetex/base/Makefile
texmf-dist/doc/jadetex/base/demo.sgm
@@ -42449,6 +50120,7 @@ longdesc The package behaves in a similar way as if you provided the
longdesc (non-existent) Japanese option to babel so that you can handle
longdesc Japanese language text in LaTeX documents. The package requires
longdesc a Japanese-enabled TeX system, such as pTeX or jTeX.
+depend japanese.ARCH
docfiles size=58
texmf-dist/doc/latex/CJK/doc/japanese/README details="Readme"
texmf-dist/doc/latex/CJK/doc/japanese/ascii.txt
@@ -42492,6 +50164,7 @@ longdesc greater than a given value, a hidden string is shown. The user
longdesc should use the style with some screen presentation package,
longdesc such as web or pdfscreen. The package is distributed with some
longdesc example games, including both 1- and 2-player games.
+depend jeopardy.ARCH
docfiles size=555
texmf-dist/doc/latex/jeopardy/README details="Package README"
texmf-dist/doc/latex/jeopardy/example/aleq.jpg
@@ -42533,6 +50206,7 @@ category Package
revision 1005
shortdesc JHEP style.
longdesc A LaTeX class used to typeset manuscripts in JHEP style.
+depend jhep.ARCH
runfiles size=15
texmf-dist/tex/latex/jhep/jhep.cls
catalogue-version
@@ -42555,6 +50229,7 @@ longdesc swap Roman and Sans fonts; – transliterate semitic languages;
longdesc – patches to make (La)TeX formulae embeddable in SGML; –
longdesc use maths “minus” in text as appropriate; – simple Young
longdesc tableaux.
+depend jknapltx.ARCH
docfiles size=2
texmf-dist/doc/latex/jknapltx/mathbbol.rme
texmf-dist/doc/latex/jknapltx/mathrsfs.rme
@@ -42583,6 +50258,7 @@ catalogue-license gpl
name jmn
category Package
revision 2449
+depend jmn.ARCH
runfiles size=21
texmf-dist/fonts/afm/jmn/hans/hans-sh.afm
texmf-dist/fonts/afm/jmn/hans/hans.afm
@@ -42602,6 +50278,7 @@ longdesc This is a slightly modified version of the namedplus style,
longdesc which fully conforms with the Journal of Neuroscience citation
longdesc style. It should be characterised as an author-date citation
longdesc style; a BibTeX style and a LaTeX package are provided.
+depend jneurosci.ARCH
docfiles size=1
texmf-dist/doc/latex/jneurosci/README
runfiles size=8
@@ -42616,6 +50293,7 @@ name jpsj
category Package
revision 4024
shortdesc Document Class for Journal of the Physical Society of Japan.
+depend jpsj.ARCH
docfiles size=61
texmf-dist/doc/latex/jpsj/dummy.eps
texmf-dist/doc/latex/jpsj/injpsj2.pdf details="Instructions for authors"
@@ -42631,6 +50309,7 @@ catalogue-license lppl
name jsmisc
category Package
revision 1487
+depend jsmisc.ARCH
docfiles size=15
texmf-dist/doc/plain/jsmisc/deutsch.doc
texmf-dist/doc/plain/jsmisc/deutsch.dvi
@@ -42668,6 +50347,7 @@ longdesc Implements the standard layout for German term papers in law
longdesc (one-and-half linespacing, 7 cm margins, etc.). Includes
longdesc alphanum that permits alphanumeric section numbering (e.g., A.
longdesc Introduction; III. International Law).
+depend jura.ARCH
docfiles size=2
texmf-dist/doc/latex/jura/juratest.dvi
srcfiles size=18
@@ -42691,6 +50371,7 @@ longdesc This package should be helpful for people working on (German)
longdesc law. It helps you to handle abbreviations and creates a list of
longdesc those (pre-defined) abbreviations that have actually been used
longdesc in the document
+depend juraabbrev.ARCH
docfiles size=123
texmf-dist/doc/latex/juraabbrev/README details="Readme"
texmf-dist/doc/latex/juraabbrev/abbrevtest.abb
@@ -42727,6 +50408,7 @@ longdesc citations. In addition, the format of last names and first
longdesc names of authors may be changed easily. Cross references to
longdesc other footnotes are possible. Language dependent handling of
longdesc bibliography entries is possible by the special language field.
+depend jurabib.ARCH
docfiles size=242
texmf-dist/doc/latex/jurabib/changes.txt
texmf-dist/doc/latex/jurabib/docs/english/jbendoc.pdf details="Package documentation (English)" language="en"
@@ -42780,6 +50462,7 @@ shortdesc Typesetting German juridical documents.
longdesc A collection of classes for typesetting court sentences, legal
longdesc opinions, and dissertations for German lawyers. The package is
longdesc still under development.
+depend juramisc.ARCH
docfiles size=507
texmf-dist/doc/latex/juramisc/README details="Package README" language="de"
texmf-dist/doc/latex/juramisc/doc/jbkdemo.pdf
@@ -42809,6 +50492,7 @@ longdesc This package should be helpful for people working on (German)
longdesc law. It (ab)uses BibTeX for citations of judgements and
longdesc official documents. For this purpose, a special BibTeX-style is
longdesc provided.
+depend jurarsp.ARCH
docfiles size=198
texmf-dist/doc/latex/jurarsp/README details="Readme"
texmf-dist/doc/latex/jurarsp/_18237.log
@@ -42831,6 +50515,7 @@ name kalender
category Package
revision 1012
shortdesc LaTeX package for creating a calendar, in German.
+depend kalender.ARCH
runfiles size=3
texmf-dist/tex/latex/kalender/kalender.sty
catalogue-version
@@ -42847,6 +50532,7 @@ longdesc in a simple and user-friendly way. Karnaugh-Maps and Veitch-
longdesc Charts are used to display and simplify logic functions
longdesc "manually". These macros can typeset Karnaugh-Maps and Veitch-
longdesc Charts with up to ten variables (=1024 entries).
+depend karnaugh.ARCH
docfiles size=8
texmf-dist/doc/latex/karnaugh/kvdoc.tex
runfiles size=5
@@ -42859,6 +50545,7 @@ catalogue-license lppl
name kastrup
category Package
revision 1487
+depend kastrup.ARCH
docfiles size=7
texmf-dist/doc/generic/kastrup/binhex.dvi
srcfiles size=7
@@ -42879,6 +50566,7 @@ longdesc which, the author believes, leads to more robust macro
longdesc programming. Both ancient and modern Greek are supported.
longdesc Macros to work with Plain TeX (‘greektex’) and with LaTeX
longdesc 2.09 (‘grlatex’) are provided.
+depend kdgreek.ARCH
docfiles size=21
texmf-dist/doc/fonts/kdgreek/INSTALL
texmf-dist/doc/fonts/kdgreek/README details="Package Readme"
@@ -42954,6 +50642,7 @@ longdesc (only NG/ng glyphs missing) and LGR encodings, as well as in
longdesc mathematics; small caps and old-style number glyphs are also
longdesc available. The philosophy, and the design process, of the
longdesc Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002.
+depend kerkis.ARCH
execute addMap kerkis.map
docfiles size=3
texmf-dist/doc/latex/kerkis/License.txt
@@ -43235,6 +50924,7 @@ longdesc defined for groups of similar glyphs at the same time. An mtx
longdesc file is generated automatically. The mtx file may then be
longdesc loaded by fontinst to introduce the user-made kernings into the
longdesc virtual font for later use in LaTeX.
+depend kerntest.ARCH
docfiles size=232
texmf-dist/doc/latex/kerntest/ChangeLog
texmf-dist/doc/latex/kerntest/README details="Readme"
@@ -43278,6 +50968,7 @@ revision 1016
shortdesc Graphical representation of keys on keyboard.
longdesc A LaTeX package which provides macros for the graphical
longdesc representation of the keys on a computer keyboard.
+depend keystroke.ARCH
docfiles size=12
texmf-dist/doc/latex/keystroke/README details="Readme"
texmf-dist/doc/latex/keystroke/key-test.pdf details="Package demo"
@@ -43298,6 +50989,7 @@ catalogue-license gpl
name kixfont
category Package
revision 101
+depend kixfont.ARCH
docfiles size=8
texmf-dist/doc/fonts/kixfont/kixtable.pdf
texmf-dist/doc/fonts/kixfont/kixtable.tex
@@ -43308,6 +51000,7 @@ runfiles size=2
name kluwer
category Package
revision 1487
+depend kluwer.ARCH
docfiles size=54
texmf-dist/doc/latex/kluwer/00readme
texmf-dist/doc/latex/kluwer/mouse.eps
@@ -43352,6 +51045,7 @@ runfiles size=114
name knuth
category Documentation
revision 21
+depend knuth.ARCH
docfiles size=435
texmf-doc/doc/english/knuth/errata/README
texmf-doc/doc/english/knuth/errata/cm85.bug
@@ -43399,6 +51093,7 @@ docfiles size=435
name knuthotherfonts
category Package
revision 101
+depend knuthotherfonts.ARCH
runfiles size=22
texmf-dist/fonts/source/public/knuthotherfonts/committee/font1.mf
texmf-dist/fonts/source/public/knuthotherfonts/committee/font1base.mf
@@ -43428,6 +51123,7 @@ longdesc classes but also with standard classes. Since every package has
longdesc its own version number, the number below is only the version of
longdesc scrbook, scrreprt, scrartcl, scrlttr2 and typearea. These are
longdesc the main parts of the bundle.
+depend koma-script.ARCH
docfiles size=1139
texmf-dist/doc/latex/koma-script/INSTALL.txt
texmf-dist/doc/latex/koma-script/INSTALLD.txt
@@ -43561,6 +51257,7 @@ catalogue-license lppl
name kopka
category Documentation
revision 1487
+depend kopka.ARCH
docfiles size=180
texmf-doc/doc/german/kopka/uebungen/kapitel2/a4.sty
texmf-doc/doc/german/kopka/uebungen/kapitel2/readme_2
@@ -43697,6 +51394,7 @@ longdesc The mathematics fonts include all the AMS fonts, in both normal
longdesc and bold weights. The fonts originally derived from URW
longdesc Palladio (with URW's agreement) though the fonts are very
longdesc clearly different in appearance from their parent.
+depend kpfonts.ARCH
execute addMap kpfonts.map
docfiles size=141
texmf-dist/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf
@@ -44128,6 +51826,7 @@ longdesc TeX the following encoding files have been prepared: T1 (ec),
longdesc T2 (abc), and OT2—Cyrillic, T5 (Vietnamese), OT4, QX, texansi
longdesc and—nonstandard (IL2 for the Czech fonts), as well as
longdesc supporting macros and files defining fonts for LaTeX.
+depend kurier.ARCH
execute addMap kurier.map
docfiles size=16
texmf-dist/doc/fonts/kurier/00readme.eng details="Outline in English" language="en"
@@ -44730,6 +52429,7 @@ shortdesc LaTeX pictures "how-to" (German).
longdesc The document (in German) is a collection of questions about
longdesc LaTeX and pictures. The aim of the document is to provide a
longdesc solution, in the form of some sample code, for every problem.
+depend l2picfaq.ARCH
docfiles size=132
texmf-doc/doc/german/l2picfaq/README details="Package README" language="de"
texmf-doc/doc/german/l2picfaq/gfdl.tex
@@ -44747,6 +52447,7 @@ shortdesc Obsolete packages and commands.
longdesc Sins of LaTeX users. A list of obsolete packages and commands
longdesc (in German; has been translated into English, French and
longdesc Italian).
+depend l2tabu.ARCH
docfiles size=46
texmf-doc/doc/german/l2tabu/l2tabu.pdf details="The document itself" language="de"
texmf-doc/doc/german/l2tabu/l2tabu.tex
@@ -44761,6 +52462,7 @@ revision 4807
shortdesc English translation of "Obsolete packages and commands".
longdesc English translation of the l2tabu practical guide to LaTeX2e by
longdesc Mark Trettin. A list of obsolete packages and commands.
+depend l2tabu-english.ARCH
docfiles size=95
texmf-doc/doc/english/l2tabu-english/l2tabuen.pdf
texmf-doc/doc/english/l2tabu-english/l2tabuen.tex
@@ -44774,6 +52476,7 @@ category Documentation
revision 16
shortdesc French translation of l2tabu.
longdesc French translation of l2tabu.
+depend l2tabu-french.ARCH
docfiles size=115
texmf-doc/doc/french/l2tabu-french/README details="The document itself" language="fr"
texmf-doc/doc/french/l2tabu-french/l2tabufr-heavy.pdf
@@ -44787,6 +52490,7 @@ catalogue-license gpl
name l2tabu-it
category Documentation
revision 14
+depend l2tabu-it.ARCH
docfiles size=55
texmf-doc/doc/italian/l2tabu-it/l2tabuit.pdf
texmf-doc/doc/italian/l2tabu-it/l2tabuit.tex
@@ -44800,6 +52504,7 @@ longdesc contain chronologically ordered records about experiments. From
longdesc the sectioning commands, an experiment index is generated. The
longdesc class is based on the KOMA-Script class scrbook.cls. There can
longdesc be several index entries for one experiment.
+depend labbook.ARCH
docfiles size=23
texmf-dist/doc/latex/labbook/README
texmf-dist/doc/latex/labbook/examplde.dvi
@@ -44833,6 +52538,7 @@ longdesc action on whether all were defined, whether none were defined,
longdesc whether not all were defined, or whether the lest is empty
longdesc (again, the action resulting from \lotlabelcase may be written
longdesc to a macro).
+depend labelcas.ARCH
docfiles size=73
texmf-dist/doc/latex/labelcas/README
texmf-dist/doc/latex/labelcas/labelcas.pdf
@@ -44858,6 +52564,7 @@ longdesc useful is a feature for making multiple copies of a single
longdesc label, e.g., return address stickers to go with the labels.
longdesc Rows, columns, borders can all be specified to match the label
longdesc sheet being used.
+depend labels.ARCH
docfiles size=87
texmf-dist/doc/latex/labels/README
texmf-dist/doc/latex/labels/labels.pdf
@@ -44910,6 +52617,7 @@ catalogue-license lppl
name lambda
category Package
revision 615
+depend lambda.ARCH
runfiles size=87
texmf-dist/tex/lambda/base/UT1cmr.fd
texmf-dist/tex/lambda/base/UT1omlgc.fd
@@ -44950,6 +52658,7 @@ longdesc the introduction of a new label which can be referenced like
longdesc \pageref{LastPage} to give a reference to the last page of a
longdesc document. It is particularly useful in the page footer that
longdesc says: Page N of M.
+depend lastpage.ARCH
docfiles size=1
texmf-dist/doc/latex/lastpage/README.lastpage details="Package Readme"
srcfiles size=5
@@ -44982,6 +52691,7 @@ longdesc user commands, font selection and control, class and package
longdesc writing, font encodings, configuration options and modification
longdesc of LaTeX. For downloading details, see the linked catalogue
longdesc entries above.
+depend latex.ARCH
docfiles size=3166
texmf-dist/doc/latex/base/00readme.txt
texmf-dist/doc/latex/base/alltt.pdf
@@ -45316,6 +53026,7 @@ shortdesc A collection of fonts used in LaTeX distributions.
longdesc These fonts are mostly variations of CM fonts, but the line and
longdesc circle fonts used in LaTeX picture mode area also included. The
longdesc distribution is based on the MetaFont sources.
+depend latex-fonts.ARCH
execute addMixedMap latex-bsr.map
runfiles size=135
texmf-dist/fonts/afm/bluesky/latex-fonts/lasy10.afm
@@ -45408,6 +53119,7 @@ catalogue-license lppl
name latex-graphics-companion
category Documentation
revision 21
+depend latex-graphics-companion.ARCH
docfiles size=446
texmf-doc/doc/english/latex-graphics-companion/1-4-1.ltx
texmf-doc/doc/english/latex-graphics-companion/1-4-10.pic
@@ -45849,6 +53561,7 @@ docfiles size=446
name latex-tds
category Package
revision 3492
+depend latex-tds.ARCH
srcfiles size=53
texmf-dist/source/latex/latex-tds/build.pl
texmf-dist/source/latex/latex-tds/lib/adjust_checksum.pl
@@ -45884,6 +53597,7 @@ srcfiles size=53
name latex-tipps-und-tricks
category Documentation
revision 16
+depend latex-tipps-und-tricks.ARCH
docfiles size=123
texmf-doc/doc/german/latex-tipps-und-tricks/adr.dat
texmf-doc/doc/german/latex-tipps-und-tricks/agate.sty
@@ -46008,6 +53722,7 @@ docfiles size=123
name latex-web-companion
category Documentation
revision 1487
+depend latex-web-companion.ARCH
docfiles size=576
texmf-doc/doc/english/latex-web-companion/apa/README.apa
texmf-doc/doc/english/latex-web-companion/apa/latexexa-raw.xml
@@ -46394,6 +54109,7 @@ docfiles size=576
name latexconfig
category Package
revision 2175
+depend latexconfig.ARCH
runfiles size=4
texmf-dist/tex/latex/latexconfig/latex.ini
texmf-dist/tex/latex/latexconfig/mllatex.ini
@@ -46403,6 +54119,7 @@ runfiles size=4
name latexmp
category Package
revision 4720
+depend latexmp.ARCH
docfiles size=44
texmf-dist/doc/metapost/latexmp/README
texmf-dist/doc/metapost/latexmp/latexmp.pdf
@@ -46418,6 +54135,7 @@ longdesc positioning on a page; disposition of floats; layout of
longdesc paragraphs, lists, footnotes, table of contents, and sectional
longdesc headings; font boxes. Facilities are provided for a document
longdesc designer to experiment with the layout parameters.
+depend layouts.ARCH
docfiles size=89
texmf-dist/doc/latex/layouts/README details="Readme"
texmf-dist/doc/latex/layouts/layman.pdf details="Package documentation"
@@ -46440,6 +54158,7 @@ longdesc This package provides a pile of lambda-calculus and list-
longdesc handling macros of an incredibly obtuse nature. The TUGboat
longdesc paper serves as a manual for the macros. This TeX code was
longdesc formally verified.
+depend lazylist.ARCH
docfiles size=22
texmf-dist/doc/latex/lazylist/lazylist.dvi
texmf-dist/doc/latex/lazylist/lazylist.tex
@@ -46456,6 +54175,7 @@ revision 2411
shortdesc Alphanumerical LCD-style displays.
longdesc A LaTeX package that will display text as on an LCD display.
longdesc Assumes 8-bit input in its internal verbatim-style environment.
+depend lcd.ARCH
docfiles size=21
texmf-dist/doc/latex/lcd/00readme details="Package README"
texmf-dist/doc/latex/lcd/example.pdf details="Examples"
@@ -46478,6 +54198,7 @@ longdesc The lcg package generates random numbers (integers) via a
longdesc linear congruential generator (Schrage’s method). The random
longdesc numbers are written to a counter. The keyval package is used to
longdesc set values for the range, a seed, and the name of the counter.
+depend lcg.ARCH
srcfiles size=7
texmf-dist/source/latex/lcg/lcg.dtx
texmf-dist/source/latex/lcg/lcg.ins
@@ -46497,6 +54218,7 @@ longdesc <length> that specifies the nominal distance between
longdesc consecutive baselines of typeset text. The command replaces the
longdesc rather more difficult LaTeX command \linespread{<ratio>}, where
longdesc the leading is specified by reference to the font size.
+depend leading.ARCH
docfiles size=25
texmf-dist/doc/latex/leading/README details="Readme"
texmf-dist/doc/latex/leading/README.txt
@@ -46522,6 +54244,7 @@ longdesc rearranged by LaTeX so that they print correctly on a single
longdesc sheet — no external script is necessary. (Works with
longdesc PostScript and PDF.) This is a complete reimplementation with
longdesc permission of the original author Jürgen Schlegelmilch.
+depend leaflet.ARCH
docfiles size=67
texmf-dist/doc/latex/leaflet/README details="Readme"
texmf-dist/doc/latex/leaflet/leaflet-manual.pdf details="Package manual (as a leaflet)"
@@ -46545,6 +54268,7 @@ longdesc A macro package for typesetting scholarly critical editions.
longdesc The ledmac package is a LaTeX port of the plain TeX EDMAC
longdesc macros. It supports indexing by page and line number and simple
longdesc tabular- and array-style environments.
+depend ledmac.ARCH
docfiles size=765
texmf-dist/doc/latex/ledmac/README details="Readme"
texmf-dist/doc/latex/ledmac/djd17nov.tex
@@ -46603,6 +54327,7 @@ revision 3273
shortdesc Left and right subscripts and superscripts in math mode.
longdesc Left and right subscripts and superscripts are automatically
longdesc raised for better fitting to the symbol they belong to.
+depend leftidx.ARCH
docfiles size=18
texmf-dist/doc/latex/leftidx/README details="Readme"
texmf-dist/doc/latex/leftidx/leftidx.pdf details="Package documentation"
@@ -46623,6 +54348,7 @@ revision 1487
shortdesc Letters and faxes in French.
longdesc Developed from the ancestor of the standard letter class, at
longdesc the Observatoire de Genève.
+depend lettre.ARCH
docfiles size=117
texmf-dist/doc/latex/lettre/LICENSE
texmf-dist/doc/latex/lettre/README details="Readme"
@@ -46663,6 +54389,7 @@ catalogue-license lppl
name lettrgth
category Package
revision 90
+depend lettrgth.ARCH
runfiles size=30
texmf-dist/fonts/tfm/cg/lettrgth/clgb.tfm
texmf-dist/fonts/tfm/cg/lettrgth/clgb8t.tfm
@@ -46704,6 +54431,7 @@ longdesc typically those described in the French typographic books. In
longdesc particular, it has facilities for the paragraph text's left
longdesc edge to follow the outline of capitals that have a regular
longdesc shape (such as "A" and "V").
+depend lettrine.ARCH
docfiles size=117
texmf-dist/doc/latex/lettrine/README details="Readme"
texmf-dist/doc/latex/lettrine/W.eps
@@ -46730,6 +54458,7 @@ catalogue-license lppl
name levy
category Package
revision 1035
+depend levy.ARCH
docfiles size=19
texmf-dist/doc/fonts/levy/00readme.txt
texmf-dist/doc/fonts/levy/greekhist.tex
@@ -46792,6 +54521,7 @@ shortdesc Draw Lewis structures.
longdesc The package provides rudimentary support for drawing Lewis
longdesc Structures. Support is limited to elements that support the
longdesc octet rule.
+depend lewis.ARCH
docfiles size=13
texmf-dist/doc/latex/lewis/README details="Readme"
texmf-dist/doc/latex/lewis/lewis.pdf details="Package documentation"
@@ -46806,6 +54536,7 @@ name lexikon
category Package
revision 1487
shortdesc Macros for a two language dictionary.
+depend lexikon.ARCH
docfiles size=2
texmf-dist/doc/latex/lexikon/lexikon.dvi
texmf-dist/doc/latex/lexikon/lexikon.tex
@@ -46831,6 +54562,7 @@ longdesc with Computer Modern. There is a ligature scheme which
longdesc automatically inserts the breathings required for ancient
longdesc texts, making the input text more readable than in some
longdesc schemes.
+depend lfb.ARCH
docfiles size=19
texmf-dist/doc/fonts/lfb/README details="Package README"
texmf-dist/doc/fonts/lfb/example.pdf details="Example of text in lfb" language="el"
@@ -46913,6 +54645,7 @@ revision 1037
shortdesc Macros for using Silvio Levy's Greek fonts.
longdesc A conversion of Silvio Levy’s Plain TeX macros for use with
longdesc LaTeX.
+depend lgreek.ARCH
docfiles size=3
texmf-dist/doc/latex/lgreek/README
texmf-dist/doc/latex/lgreek/lgreekuse.tex
@@ -46938,6 +54671,7 @@ longdesc languages. LH offers the latex/lhfonts bundle of packages for
longdesc standard LaTeX Cyrillic and traditional encodings. The fonts
longdesc are available in Adobe Type 1 format, in the CM-Super family of
longdesc fonts.
+depend lh.ARCH
docfiles size=102
texmf-dist/doc/fonts/lh/beresta/beresta.tex
texmf-dist/doc/fonts/lh/beresta/berestax.tex
@@ -47574,6 +55308,7 @@ longdesc between the input encoding and the font encoding (which is
longdesc described as OT1). The way this is done does not match the way
longdesc inputenc would do the job, for output via fontenc to one of the
longdesc T2 series of font encodings.
+depend lhcyr.ARCH
srcfiles size=4
texmf-dist/source/latex/lhcyr/README
texmf-dist/source/latex/lhcyr/dvidrv.mfj
@@ -47640,6 +55375,7 @@ longdesc both width and height can be specified, starting new odd or
longdesc even pages, draft markers, notes, conditional includes,
longdesc including EPS files, and versions of enumerate and itemize
longdesc which allow the horizontal and vertical spacing to be changed.
+depend lhelp.ARCH
docfiles size=63
texmf-dist/doc/latex/lhelp/lhelp.pdf
srcfiles size=23
@@ -47657,45 +55393,577 @@ catalogue-license gpl
name lib-freetype2
category TLCore
revision 5403
+depend lib-freetype2.ARCH
+
+name lib-freetype2.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for alpha-linux
+
+name lib-freetype2.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for hppa-hpux
+
+name lib-freetype2.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for i386-darwin
+
+name lib-freetype2.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for i386-freebsd
+
+name lib-freetype2.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for i386-linux
+
+name lib-freetype2.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for i386-openbsd
+
+name lib-freetype2.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for i386-solaris
+
+name lib-freetype2.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for mips-irix
+
+name lib-freetype2.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for powerpc-aix
+
+name lib-freetype2.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for powerpc-darwin
+
+name lib-freetype2.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for powerpc-linux
+
+name lib-freetype2.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for sparc-linux
+
+name lib-freetype2.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for sparc-solaris
+
+name lib-freetype2.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for win32
binfiles arch=win32 size=50
bin/win32/tl90freetype2.dll
+name lib-freetype2.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-freetype2 for x86_64-linux
+
name lib-geturl
category TLCore
revision 5403
+depend lib-geturl.ARCH
+
+name lib-geturl.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for alpha-linux
+
+name lib-geturl.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for hppa-hpux
+
+name lib-geturl.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for i386-darwin
+
+name lib-geturl.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for i386-freebsd
+
+name lib-geturl.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for i386-linux
+
+name lib-geturl.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for i386-openbsd
+
+name lib-geturl.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for i386-solaris
+
+name lib-geturl.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for mips-irix
+
+name lib-geturl.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for powerpc-aix
+
+name lib-geturl.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for powerpc-darwin
+
+name lib-geturl.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for powerpc-linux
+
+name lib-geturl.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for sparc-linux
+
+name lib-geturl.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for sparc-solaris
+
+name lib-geturl.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for win32
binfiles arch=win32 size=4
bin/win32/tl90geturl.dll
+name lib-geturl.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-geturl for x86_64-linux
+
name lib-gnu
category TLCore
revision 5403
+depend lib-gnu.ARCH
+
+name lib-gnu.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for alpha-linux
+
+name lib-gnu.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for hppa-hpux
+
+name lib-gnu.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for i386-darwin
+
+name lib-gnu.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for i386-freebsd
+
+name lib-gnu.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for i386-linux
+
+name lib-gnu.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for i386-openbsd
+
+name lib-gnu.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for i386-solaris
+
+name lib-gnu.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for mips-irix
+
+name lib-gnu.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for powerpc-aix
+
+name lib-gnu.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for powerpc-darwin
+
+name lib-gnu.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for powerpc-linux
+
+name lib-gnu.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for sparc-linux
+
+name lib-gnu.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for sparc-solaris
+
+name lib-gnu.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for win32
binfiles arch=win32 size=13
bin/win32/tl90gnu.dll
+name lib-gnu.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-gnu for x86_64-linux
+
name lib-md5
category TLCore
revision 5403
+depend lib-md5.ARCH
+
+name lib-md5.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for alpha-linux
+
+name lib-md5.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for hppa-hpux
+
+name lib-md5.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for i386-darwin
+
+name lib-md5.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for i386-freebsd
+
+name lib-md5.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for i386-linux
+
+name lib-md5.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for i386-openbsd
+
+name lib-md5.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for i386-solaris
+
+name lib-md5.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for mips-irix
+
+name lib-md5.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for powerpc-aix
+
+name lib-md5.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for powerpc-darwin
+
+name lib-md5.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for powerpc-linux
+
+name lib-md5.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for sparc-linux
+
+name lib-md5.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for sparc-solaris
+
+name lib-md5.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for win32
binfiles arch=win32 size=2
bin/win32/tl90md5.dll
+name lib-md5.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-md5 for x86_64-linux
+
name lib-regex
category TLCore
revision 5403
+depend lib-regex.ARCH
+
+name lib-regex.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for alpha-linux
+
+name lib-regex.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for hppa-hpux
+
+name lib-regex.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for i386-darwin
+
+name lib-regex.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for i386-freebsd
+
+name lib-regex.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for i386-linux
+
+name lib-regex.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for i386-openbsd
+
+name lib-regex.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for i386-solaris
+
+name lib-regex.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for mips-irix
+
+name lib-regex.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for powerpc-aix
+
+name lib-regex.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for powerpc-darwin
+
+name lib-regex.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for powerpc-linux
+
+name lib-regex.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for sparc-linux
+
+name lib-regex.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for sparc-solaris
+
+name lib-regex.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for win32
binfiles arch=win32 size=12
bin/win32/tl90regex.dll
+name lib-regex.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-regex for x86_64-linux
+
name lib-texmfmp
category TLCore
revision 5403
+depend lib-texmfmp.ARCH
+
+name lib-texmfmp.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for alpha-linux
+
+name lib-texmfmp.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for hppa-hpux
+
+name lib-texmfmp.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for i386-darwin
+
+name lib-texmfmp.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for i386-freebsd
+
+name lib-texmfmp.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for i386-linux
+
+name lib-texmfmp.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for i386-openbsd
+
+name lib-texmfmp.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for i386-solaris
+
+name lib-texmfmp.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for mips-irix
+
+name lib-texmfmp.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for powerpc-aix
+
+name lib-texmfmp.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for powerpc-darwin
+
+name lib-texmfmp.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for powerpc-linux
+
+name lib-texmfmp.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for sparc-linux
+
+name lib-texmfmp.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for sparc-solaris
+
+name lib-texmfmp.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for win32
binfiles arch=win32 size=4
bin/win32/tl90texmfmp.dll
+name lib-texmfmp.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-texmfmp for x86_64-linux
+
name lib-zlib
category TLCore
revision 5403
+depend lib-zlib.ARCH
+
+name lib-zlib.alpha-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for alpha-linux
+
+name lib-zlib.hppa-hpux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for hppa-hpux
+
+name lib-zlib.i386-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for i386-darwin
+
+name lib-zlib.i386-freebsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for i386-freebsd
+
+name lib-zlib.i386-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for i386-linux
+
+name lib-zlib.i386-openbsd
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for i386-openbsd
+
+name lib-zlib.i386-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for i386-solaris
+
+name lib-zlib.mips-irix
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for mips-irix
+
+name lib-zlib.powerpc-aix
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for powerpc-aix
+
+name lib-zlib.powerpc-darwin
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for powerpc-darwin
+
+name lib-zlib.powerpc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for powerpc-linux
+
+name lib-zlib.sparc-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for sparc-linux
+
+name lib-zlib.sparc-solaris
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for sparc-solaris
+
+name lib-zlib.win32
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for win32
binfiles arch=win32 size=18
bin/win32/tl90zlib.dll
+name lib-zlib.x86_64-linux
+category TLCore
+revision 5403
+shortdesc binary files of lib-zlib for x86_64-linux
+
name libertine
category Package
revision 5062
@@ -47704,6 +55972,7 @@ longdesc The Linux-Libertine project offers a font family with a wide
longdesc range of shapes, and support of several alphabets (including
longdesc Latin, Cyrillic, Greek and Hebrew). This is the first package
longdesc (alpha version) to use the font LinLibertine with LaTeX.
+depend libertine.ARCH
execute addMap libertine.map
docfiles size=1640
texmf-dist/doc/fonts/libertine/Bugs
@@ -48079,6 +56348,7 @@ longdesc used. A LaTeX style and a LaTeX class are provided. The style
longdesc contains definitions to typeset maps and blocks according to
longdesc the Information Mapping method. The class provides all
longdesc definitions to typeset a whole document.
+depend limap.ARCH
srcfiles size=13
texmf-dist/source/latex/limap/Makefile
texmf-dist/source/latex/limap/limap.dtx
@@ -48101,6 +56371,7 @@ longdesc Linear A script. This way one can easily replicate Linear A
longdesc “texts” using modern typographic technology. Note that the
longdesc Linear A script has not been deciphered yet and probably never
longdesc will be deciphered.
+depend linearA.ARCH
execute addMap linearA.map
docfiles size=47
texmf-dist/doc/latex/linearA/README
@@ -48129,6 +56400,7 @@ shortdesc Line numbers on paragraphs.
longdesc Adds line numbers to selected paragraphs with reference
longdesc possible through the LaTeX \ref and \pageref cross reference
longdesc mechanism.
+depend lineno.ARCH
docfiles size=189
texmf-dist/doc/latex/lineno/CHANGES.txt
texmf-dist/doc/latex/lineno/COPYING.txt
@@ -48160,6 +56432,7 @@ longdesc brackets, and the ‘*’ in grammaticality judgments. – The
longdesc ps-trees package provides linguistic trees, building on the
longdesc macros of tree-dvips, but overcoming some of the older
longdesc package’s shortcomings.
+depend linguex.ARCH
docfiles size=25
texmf-dist/doc/latex/linguex/linguex-doc.dvi
texmf-dist/doc/latex/linguex/linguex-doc.tex
@@ -48182,6 +56455,7 @@ shortdesc Easy access to the Lorem Ipsum dummy text.
longdesc This package gives you easy access to the Lorem Ipsum dummy
longdesc text. All the paragraphs are taken with permission from
longdesc http://lipsum.com/.
+depend lipsum.ARCH
docfiles size=83
texmf-dist/doc/latex/lipsum/README.1st
texmf-dist/doc/latex/lipsum/lipsum.pdf
@@ -48203,6 +56477,7 @@ longdesc Generates listings of bibliographic data bases in BibTeX format
longdesc — for example for archival purposes. Included is a
longdesc listbib.bst which is better suited for this purpose than the
longdesc standard styles.
+depend listbib.ARCH
docfiles size=18
texmf-dist/doc/latex/listbib/listbib.doc
texmf-dist/doc/latex/listbib/listbib.dvi
@@ -48236,6 +56511,7 @@ longdesc \lstinputlisting{filename.py} command. Short (in-line) listings
longdesc are also available, using either \lstinline|...| or | ... |
longdesc (after defining the | token with the \lstMakeShortInline
longdesc command).
+depend listings.ARCH
docfiles size=176
texmf-dist/doc/latex/listings/README details="Package Readme"
texmf-dist/doc/latex/listings/listings.pdf details="Package documentation"
@@ -48266,6 +56542,7 @@ longdesc The listliketab package helps the user make list-like tabulars,
longdesc i.e., a tabular that is indistinguishable from an itemize or
longdesc enumerate environment. The advantage of using a tabular is that
longdesc the user can add additional columns to each entry in the list.
+depend listliketab.ARCH
docfiles size=36
texmf-dist/doc/latex/listliketab/README details="Package Readme"
texmf-dist/doc/latex/listliketab/listliketab.pdf details="Package documentation"
@@ -48293,6 +56570,7 @@ longdesc chance that symbols will be changed at some stage. The package
longdesc is more or less a combination of what the packages nomencl and
longdesc formula do. The concept of creating the list of symbols,
longdesc though, is different from the way nomencl.sty does it.
+depend listofsymbols.ARCH
docfiles size=8
texmf-dist/doc/latex/listofsymbols/README details="Readme"
texmf-dist/doc/latex/listofsymbols/listofsymbols.dvi details="Package documentation"
@@ -48311,6 +56589,7 @@ longdesc This is a Dutch translation of an early document on the
longdesc sequence that led to lshort, which itself has been translated
longdesc to Dutch. The package itself is not available on CTAN, but
longdesc appears in distributions.
+depend lkort.ARCH
docfiles size=283
texmf-doc/doc/dutch/lkort/lkort.pdf
texmf-doc/doc/dutch/lkort/lktitle.pdf
@@ -48323,6 +56602,7 @@ catalogue-license unknown
name lkproof
category Package
revision 2303
+depend lkproof.ARCH
docfiles size=1
texmf-dist/doc/latex/lkproof/proofeg.tex
runfiles size=2
@@ -48343,6 +56623,7 @@ longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding (qx-
longdesc *.tfm); TeX’n’ANSI aka LY1 encoding (texnansi-*.tfm); T5
longdesc (Vietnamese) encoding (t5-*.tfm); and Text Companion for EC
longdesc fonts aka TS1 (ts1-*.tfm).
+depend lm.ARCH
execute addMap lm.map
docfiles size=619
texmf-dist/doc/fonts/lm/GUST-FONT-LICENSE.txt
@@ -49472,6 +57753,7 @@ catalogue-license gfsl
name lmextra
category Package
revision 3758
+depend lmextra.ARCH
runfiles size=32
texmf-dist/fonts/truetype/hoekwater/lmextra/lmtypewriter10-regular.ttf
@@ -49482,6 +57764,7 @@ shortdesc Macros for localizing TeX register allocations.
longdesc This package approaches the problem of the shortage of
longdesc registers, by providing a mechanism for local allocation. The
longdesc package works with Plain TeX, LaTeX and LaTeX 2.09.
+depend localloc.ARCH
docfiles size=11
texmf-dist/doc/latex/localloc/localloc.dvi
texmf-dist/doc/latex/localloc/localtst.tex
@@ -49502,6 +57785,7 @@ revision 1487
shortdesc A font for electronic logic design.
longdesc A MetaFont font and a minuscule set of LaTeX macros for its
longdesc use, for use logic design diagrams.
+depend logic.ARCH
docfiles size=10
texmf-dist/doc/latex/logic/gn-logic14.dvi
texmf-dist/doc/latex/logic/gn-logic14.tex
@@ -49523,6 +57807,7 @@ longdesc The logpap package provides four macros for drawing
longdesc logarithmic-logarithmic, logarithmic-linear, linear-logarithmic
longdesc and (because it was easy to implement) linear-linear graph
longdesc paper with LaTeX.
+depend logpap.ARCH
docfiles size=23
texmf-dist/doc/latex/logpap/README details="Package Readme"
texmf-dist/doc/latex/logpap/example.pdf details="Package documentation"
@@ -49545,6 +57830,7 @@ longdesc The ‘Logic and Philosophy of Science’ journal is an online
longdesc publication of the University of Trieste (Italy). The class
longdesc builds on the standard article class to offer a format that
longdesc LaTeX authors may use when submitting to the journal.
+depend lps.ARCH
docfiles size=110
texmf-dist/doc/latex/lps/README details="Readme"
texmf-dist/doc/latex/lps/lps.pdf details="Package documentation"
@@ -49569,6 +57855,7 @@ longdesc case the Live Sequence Charts of Damm and Harel. The package
longdesc supports the full LSC language of the original LSC paper, the
longdesc Klose-extensions for formal verification and some of the Harel-
longdesc extensions for the Play-In/Play-Out approach (cf. the manual).
+depend lsc.ARCH
docfiles size=73
texmf-dist/doc/latex/lsc/README details="Readme"
texmf-dist/doc/latex/lsc/lsc.pdf details="Package documentation"
@@ -49587,6 +57874,7 @@ revision 15
shortdesc Bulgarian translation of "The not so Short Introduction to LaTeX2e"
longdesc The source files, PostScript and PDF files of bulgarian
longdesc translation of the “Not so Short Introduction to LaTeX 2e”.
+depend lshort-bulgarian.ARCH
docfiles size=639
texmf-doc/doc/bulgarian/lshort-bulgarian/README
texmf-doc/doc/bulgarian/lshort-bulgarian/lshort-bg.pdf
@@ -49602,6 +57890,7 @@ revision 15
shortdesc Introduction to LaTeX in Dutch.
longdesc This is the Dutch (Nederlands) translation of the Short
longdesc Introduction to LaTeX2e.
+depend lshort-dutch.ARCH
docfiles size=272
texmf-doc/doc/dutch/lshort-dutch/LEESMIJ details="Readme" language="nl"
texmf-doc/doc/dutch/lshort-dutch/README
@@ -49617,6 +57906,7 @@ name lshort-english
category Documentation
revision 4611
shortdesc A (Not So) Short Introduction to LaTeX2e.
+depend lshort-english.ARCH
docfiles size=583
texmf-doc/doc/english/lshort-english/CHANGES
texmf-doc/doc/english/lshort-english/README details="Readme"
@@ -49633,6 +57923,7 @@ revision 1487
shortdesc Finnish introduction to LaTeX.
longdesc This is the Finnish translation of Short Introduction to
longdesc LaTeX2e, with added emphasis on Finnish typesetting rules.
+depend lshort-finnish.ARCH
docfiles size=601
texmf-doc/doc/finnish/lshort-finnish/README details="Readme"
texmf-doc/doc/finnish/lshort-finnish/lyhyt2e.pdf details="The document itself"
@@ -49662,6 +57953,7 @@ category Documentation
revision 16
shortdesc Short introduction to LaTeX, French translation.
longdesc French version of A Short Introduction to LaTeX2e.
+depend lshort-french.ARCH
docfiles size=651
texmf-doc/doc/french/lshort-french/README
texmf-doc/doc/french/lshort-french/flshort-3.20.pdf
@@ -49675,6 +57967,7 @@ name lshort-german
category Documentation
revision 16
shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung.
+depend lshort-german.ARCH
docfiles size=232
texmf-doc/doc/german/lshort-german/CHANGES
texmf-doc/doc/german/lshort-german/LaTeX2e-Kurzbeschreibung
@@ -49703,6 +57996,7 @@ revision 14
shortdesc Introduction to LaTeX in Italian.
longdesc This is the Italian translation of the Short Introduction to
longdesc LaTeX2e.
+depend lshort-italian.ARCH
docfiles size=282
texmf-doc/doc/italian/lshort-italian/CHANGES
texmf-doc/doc/italian/lshort-italian/MANIFEST
@@ -49721,6 +58015,7 @@ name lshort-japanese
category Documentation
revision 14
shortdesc Japanese version of A Short Introduction to LaTeX2e
+depend lshort-japanese.ARCH
docfiles size=332
texmf-doc/doc/japanese/lshort-japanese/00README
texmf-doc/doc/japanese/lshort-japanese/CHANGES.jp
@@ -49738,6 +58033,7 @@ revision 2276
shortdesc Korean introduction to LaTeX.
longdesc A translation of Oetiker's original (not so) short
longdesc introduction.
+depend lshort-korean.ARCH
docfiles size=383
texmf-doc/doc/korean/lshort-korean/README.ko
texmf-doc/doc/korean/lshort-korean/lshort-kr-src.tar.gz
@@ -49752,6 +58048,7 @@ category Documentation
revision 14
shortdesc Short introduction to LaTeX, Mongolian translation.
longdesc Mongolian version of A Short Introduction to LaTeX2e.
+depend lshort-mongolian.ARCH
docfiles size=9
texmf-doc/doc/mongolian/lshort-mongolian/README
texmf-doc/doc/mongolian/lshort-mongolian/bogino.pdf
@@ -49767,6 +58064,7 @@ revision 3771
shortdesc Introduction to LaTeX in Polish.
longdesc This is the Polish translation of A Short Introduction to
longdesc LaTeX2e.
+depend lshort-polish.ARCH
docfiles size=372
texmf-doc/doc/polish/lshort-polish/README
texmf-doc/doc/polish/lshort-polish/lshort2e.pdf
@@ -49782,6 +58080,7 @@ revision 1657
shortdesc Introduction to LaTeX in Portuguese.
longdesc This is the Portuguese translation of A Short Introduction to
longdesc LaTeX2e.
+depend lshort-portuguese.ARCH
docfiles size=516
texmf-doc/doc/portuguese/lshort-portuguese/ptlshort-4.20.pt.src.tar.gz
texmf-doc/doc/portuguese/lshort-portuguese/ptlshort.pdf
@@ -49795,6 +58094,7 @@ category Documentation
revision 1487
shortdesc Russian introduction to LaTeX.
longdesc Russian version of A Short Introduction to LaTeX2e.
+depend lshort-russian.ARCH
docfiles size=852
texmf-doc/doc/russian/lshort-russian/CHANGES
texmf-doc/doc/russian/lshort-russian/MANIFEST
@@ -49835,6 +58135,7 @@ revision 16
shortdesc Slovak introduction to LaTeX.
longdesc A Slovak translation of Oetiker‘s (not so) short
longdesc introduction.
+depend lshort-slovak.ARCH
docfiles size=221
texmf-doc/doc/slovak/lshort-slovak/slshorte.pdf
texmf-doc/doc/slovak/lshort-slovak/src.zip
@@ -49849,6 +58150,7 @@ revision 16
shortdesc A description of LaTeX 2e.
longdesc A Spanish introduction, (apparently) written in parallel with A
longdesc Short Introduction to LaTeX2e.
+depend lshort-spanish.ARCH
docfiles size=188
texmf-doc/doc/spanish/lshort-spanish/CAMBIOS
texmf-doc/doc/spanish/lshort-spanish/LEAME
@@ -49876,6 +58178,7 @@ revision 11
shortdesc Introduction to LaTeX in Thai.
longdesc This is the Thai translation of the Short Introduction to
longdesc LaTeX2e.
+depend lshort-thai.ARCH
docfiles size=135
texmf-doc/doc/thai/lshort-thai/lsh132.pdf details="The document itself"
texmf-doc/doc/thai/lshort-thai/lsh132.zip
@@ -49891,6 +58194,7 @@ revision 2180
shortdesc Turkish introduction to LaTeX.
longdesc A Turkish translation of Oetiker‘s (not so) short
longdesc introduction.
+depend lshort-turkish.ARCH
docfiles size=447
texmf-doc/doc/turkish/lshort-turkish/README
texmf-doc/doc/turkish/lshort-turkish/lshort-tr.pdf details="The document itself" language="tr"
@@ -49905,6 +58209,7 @@ category Documentation
revision 3981
shortdesc Ukrainian version of the LaTeX introduction.
longdesc Ukrainian version of A Short Introduction to LaTeX2e.
+depend lshort-ukr.ARCH
docfiles size=639
texmf-doc/doc/ukrainian/lshort-ukr/lshort-ukr-4.12.src.tar.gz
texmf-doc/doc/ukrainian/lshort-ukr/lshort-ukr.pdf
@@ -49918,6 +58223,7 @@ category Documentation
revision 12
shortdesc vietnamese version of the LaTeX introduction.
longdesc Vietnamese version of A Short Introduction to LaTeX2e.
+depend lshort-vietnamese.ARCH
docfiles size=599
texmf-doc/doc/vietnamese/lshort-vietnamese/README
texmf-doc/doc/vietnamese/lshort-vietnamese/lshort-vi.pdf
@@ -49954,6 +58260,7 @@ shortdesc Table package extensions.
longdesc Modifies the tabularx environment to combine the features of
longdesc the tabularx package (auto-sized columns in a fixed width
longdesc table) with those of the longtable package (multi-page tables).
+depend ltablex.ARCH
runfiles size=2
texmf-dist/tex/latex/ltablex/ltablex.sty
catalogue-version
@@ -49967,6 +58274,7 @@ revision 1054
shortdesc Bug fix for longtable.
longdesc A patch for LaTeX bugs tools/3180 and tools/3480. The patch
longdesc applies to version 4.11 of longtable.
+depend ltabptch.ARCH
docfiles size=2
texmf-dist/doc/latex/ltabptch/README
texmf-dist/doc/latex/ltabptch/ltabtest.tex
@@ -49980,6 +58288,7 @@ catalogue-license lppl
name ltxindex
category Package
revision 3493
+depend ltxindex.ARCH
docfiles size=28
texmf-dist/doc/latex/ltxindex/README
texmf-dist/doc/latex/ltxindex/copying.txt
@@ -49994,6 +58303,7 @@ name ltxmisc
category Package
revision 5082
shortdesc Miscellaneous LaTeX styles.
+depend ltxmisc.ARCH
runfiles size=168
texmf-dist/tex/latex/ltxmisc/2in1.sty
texmf-dist/tex/latex/ltxmisc/3parttable.sty
@@ -50095,6 +58405,7 @@ longdesc the company; it is known in the LaTeX scheme of things as LY1
longdesc encoding. This bundle includes metrics and LaTeX macros to use
longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1
longdesc fonts in LaTeX using LY1.
+depend ly1.ARCH
docfiles size=6
texmf-dist/doc/fonts/ly1/ly1.txt
texmf-dist/doc/fonts/ly1/texnansi.txt
@@ -50131,6 +58442,7 @@ longdesc mathematics with LaTeX in compliance with French usage. It
longdesc comes with two document classes, ‘fiche’ and ‘cours’,
longdesc useful to create short high school documents such as tests or
longdesc lessons. The documentation is in French.
+depend mafr.ARCH
docfiles size=26
texmf-dist/doc/latex/mafr/ALIRE details="Package ALIRE" language="fr"
texmf-dist/doc/latex/mafr/COPYING
@@ -50153,6 +58465,7 @@ revision 5456
shortdesc Hungarian language definition for Babel.
longdesc This is an interim release of a new version of the Magyar
longdesc language definition for babel.
+depend magyar.ARCH
docfiles size=55
texmf-dist/doc/latex/magyar/magyar.ldf
catalogue-version 1.5
@@ -50169,6 +58482,7 @@ longdesc all with the same body text. The package‘s \addressfile
longdesc command is used to specify who the letter‘s to be sent to;
longdesc the body of the \mailingtext command specifies the text of the
longdesc letters, possibly using macros defined in the \addressfile.
+depend mailing.ARCH
docfiles size=18
texmf-dist/doc/latex/mailing/mailing.pdf
texmf-dist/doc/latex/mailing/manifest.txt
@@ -50189,6 +58503,7 @@ shortdesc Defines a \makebox* command.
longdesc Define a \makebox* command that does the same as a \makebox
longdesc command, except that the width is given by a sample text
longdesc instead of an explicit length measure.
+depend makebox.ARCH
docfiles size=74
texmf-dist/doc/latex/makebox/ChangeLog
texmf-dist/doc/latex/makebox/README details="Package Readme"
@@ -50222,6 +58537,7 @@ longdesc of the multirow package; — macros to number rows in tables,
longdesc or to skip cells; — diagonally divided cells; and —
longdesc horizontal lines in tabular environments with defined
longdesc thickness.
+depend makecell.ARCH
docfiles size=113
texmf-dist/doc/latex/makecell/README details="README file"
texmf-dist/doc/latex/makecell/makecell-rus.tex
@@ -50243,6 +58559,7 @@ catalogue-license lppl
name makecirc
category Package
revision 4997
+depend makecirc.ARCH
docfiles size=141
texmf-dist/doc/metapost/makecirc/MakeCirc-en.pdf
texmf-dist/doc/metapost/makecirc/MakeCirc.pdf
@@ -50261,6 +58578,7 @@ longdesc The package provides a \makecommand command, which is like
longdesc \(re)newcommand except it always (re)defines a command. There
longdesc is also \makeenvironment and \provideenvironment for
longdesc environments.
+depend makecmds.ARCH
docfiles size=1
texmf-dist/doc/latex/makecmds/README
srcfiles size=5
@@ -50282,6 +58600,7 @@ longdesc write the code and documentation in separate files, and then
longdesc combine them into a single .dtx file for distribution. It
longdesc automatically generates the character table, and also writes
longdesc the associated installation (.ins) script.
+depend makedtx.ARCH
docfiles size=67
texmf-dist/doc/latex/makedtx/CHANGES
texmf-dist/doc/latex/makedtx/README details="Readme"
@@ -50306,6 +58625,7 @@ shortdesc Include a glossary into a document.
longdesc The package provides the means to include a glossary into a
longdesc document. The glossary is prepared by an external program, such
longdesc as xindy or makeindex, in the same way that an index is made.
+depend makeglos.ARCH
docfiles size=18
texmf-dist/doc/latex/makeglos/README details="Readme"
texmf-dist/doc/latex/makeglos/makeglos.pdf details="Package documentation"
@@ -50328,6 +58648,7 @@ longdesc TeX or troff), sorts the entries, and produces an output file
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 makeindex.ARCH
docfiles size=27
texmf-dist/doc/makeindex/base/ind.dvi
texmf-dist/doc/makeindex/base/makeindex.dvi
@@ -50353,6 +58674,7 @@ longdesc print -eps, etc.) aren't satisfactory; makeplot aims to resolve
longdesc this problem. Makeplot is a LaTeX package that uses the
longdesc pstricks pst-plot functions to plot data that it takes from
longdesc Matlab output files.
+depend makeplot.ARCH
docfiles size=40
texmf-dist/doc/latex/makeplot/README details="Readme"
texmf-dist/doc/latex/makeplot/data1.mat
@@ -50372,6 +58694,7 @@ catalogue-license lppl
name malayalam
category Package
revision 1487
+depend malayalam.ARCH
docfiles size=111
texmf-dist/doc/fonts/malayalam/FILES
texmf-dist/doc/fonts/malayalam/INSTALL
@@ -50595,6 +58918,7 @@ shortdesc LaTeX support for the TeX book symbols.
longdesc A LaTeX package for easy access to the symbols of the Knuth's
longdesc ‘manual’ font, such as the Dangerous Bend and Manual-errata
longdesc Arrow.
+depend manfnt.ARCH
execute addMixedMap manfnt.map
srcfiles size=7
texmf-dist/source/latex/manfnt/manfnt.dtx
@@ -50628,6 +58952,7 @@ longdesc number of additional characters was created. This catalogue
longdesc entry describes the ‘original’ ManjuTeX; its functionality
longdesc has now been subsumed into monTeX, though the obsolete ManjuTeX
longdesc remains on the archive.
+depend manjutex.ARCH
docfiles size=13
texmf-dist/doc/latex/manjutex/README
texmf-dist/doc/latex/manjutex/manjutex.dvi
@@ -50652,6 +58977,7 @@ catalogue-license gpl
name manuscript
category Package
revision 1069
+depend manuscript.ARCH
docfiles size=1
texmf-dist/doc/latex/manuscript/README
srcfiles size=7
@@ -50670,6 +58996,7 @@ longdesc Mapcodes is an early package covering the same ground as the
longdesc standard LaTeX inputenc. It provides for input in ISO Latin-1
longdesc and -2, IBM codepages 850 and 852, and HP, Macintosh and Atari
longdesc encodings.
+depend mapcodes.ARCH
srcfiles size=44
texmf-dist/source/latex/mapcodes/00readme.txt
texmf-dist/source/latex/mapcodes/atari.dtx
@@ -50706,6 +59033,7 @@ name maple
category Package
revision 1071
shortdesc Styles and examples for the MAPLE newsletter.
+depend maple.ARCH
docfiles size=7
texmf-dist/doc/latex/maple/MTNarticle.tex
texmf-dist/doc/latex/maple/README
@@ -50724,6 +59052,7 @@ longdesc This package provides the command \marginnote that may be used
longdesc instead of \marginpar at almost every place where \marginpar
longdesc cannot be used, e.g., inside floats, footnotes, or in frames
longdesc made with the framed package.
+depend marginnote.ARCH
docfiles size=37
texmf-dist/doc/latex/marginnote/marginnote.pdf details="Package documentation"
srcfiles size=8
@@ -50740,6 +59069,7 @@ catalogue-license lppl
name marigold
category Package
revision 90
+depend marigold.ARCH
runfiles size=8
texmf-dist/fonts/tfm/cg/marigold/cmgr.tfm
texmf-dist/fonts/tfm/cg/marigold/cmgr8t.tfm
@@ -50763,6 +59093,7 @@ longdesc the zodiac; scissor symbols; CE sign and others. The font is
longdesc distributed here as an Adobe Type 1 font, which was converted
longdesc from Vogel's original TrueType. Separate packaging for OzTeX
longdesc users is available.
+depend marvosym.ARCH
execute addMap marvosym.map
docfiles size=86
texmf-dist/doc/latex/marvosym/LICENSE
@@ -50798,6 +59129,7 @@ catalogue-license gpl
name math-into-latex
category Documentation
revision 22
+depend math-into-latex.ARCH
docfiles size=19
texmf-doc/doc/english/math-into-latex/errors.txt
texmf-doc/doc/english/math-into-latex/gratzer
@@ -50823,6 +59155,7 @@ revision 1073
shortdesc Text symbols in maths mode.
longdesc A package which provides access to some interesting characters
longdesc of the Text Companion fonts (TS1 encoding) in maths mode.
+depend mathcomp.ARCH
srcfiles size=3
texmf-dist/source/latex/mathcomp/mathcomp.dtx
texmf-dist/source/latex/mathcomp/mathcomp.ins
@@ -50845,6 +59178,7 @@ longdesc mdugm family, which corresponds to URW Garamond text fonts; –
longdesc the mdfga family, which corresponds to the (commercial)
longdesc Fontsite Garamond text fonts; – the mdbch family, which
longdesc corresponds to Bitstream Charter text fonts.
+depend mathdesign.ARCH
execute addMap mdbch.map
execute addMap mdput.map
execute addMap mdugm.map
@@ -51492,6 +59826,7 @@ longdesc produced by \iddots slant in the opposite direction to \ddots.
longdesc All the commands are designed to change size appropriately in
longdesc scripts, as well as in response to LaTeX size changing
longdesc commands. The commands may also be used in plain TeX.
+depend mathdots.ARCH
docfiles size=29
texmf-dist/doc/generic/mathdots/README details="Readme"
texmf-dist/doc/generic/mathdots/mathdots.pdf details="Package documentation"
@@ -51519,6 +59854,7 @@ longdesc well as commands for automatic creation of “answer spaces”.
longdesc In addition, the package will automatically create page headers
longdesc and footers, and will let you include instructions and space
longdesc for students to put their name.
+depend mathexam.ARCH
docfiles size=47
texmf-dist/doc/latex/mathexam/README details="Readme"
texmf-dist/doc/latex/mathexam/mathexam.pdf
@@ -51537,6 +59873,7 @@ catalogue-license lppl
name mathmode
category Documentation
revision 5274
+depend mathmode.ARCH
docfiles size=1816
texmf-doc/doc/english/mathmode/Changes
texmf-doc/doc/english/mathmode/Mathmode.bib
@@ -51602,6 +59939,7 @@ longdesc uppercase letters commonly used to represent various number
longdesc sets (C, I, N, Q, R, and Z) in blackboard bold. LaTeX macro
longdesc support is provided (using package mathpazo.sty) is provided in
longdesc psnfss (a required part of any LaTeX distribution).
+depend mathpazo.ARCH
docfiles size=109
texmf-dist/doc/latex/mathpazo/README.txt
texmf-dist/doc/latex/mathpazo/gpl.txt
@@ -51722,6 +60060,7 @@ longdesc \maybeit performs a similar role to \mathrm{} but the math
longdesc expression will be italicised if the surrounding text is.
longdesc \maybeitsubscript is provided to shift subscripts to the left
longdesc if the expression is italicised.
+depend maybemath.ARCH
docfiles size=20
texmf-dist/doc/latex/maybemath/README details="Package README"
texmf-dist/doc/latex/maybemath/maybemath.pdf details="Package documentation"
@@ -51741,6 +60080,7 @@ longdesc The mcaption package provides an mcaption environment which
longdesc puts figure or table captions in the margin. The package works
longdesc with the standard classes and with the KOMA-Script document
longdesc classes scrartcl, scrreprt and scrbook.
+depend mcaption.ARCH
docfiles size=33
texmf-dist/doc/latex/mcaption/README details="Readme"
texmf-dist/doc/latex/mcaption/example.tex
@@ -51763,6 +60103,7 @@ longdesc A package for creating MC-covers on your own. It allows the
longdesc creation of simple covers as well as covers with an additional
longdesc page for more information about the cassette (table of contents
longdesc e.g.). The rotating package is required.
+depend mceinleger.ARCH
docfiles size=15
texmf-dist/doc/latex/mceinleger/mceinleger.pdf
texmf-dist/doc/latex/mceinleger/mceinleger.tex
@@ -51781,6 +60122,7 @@ longdesc The mcite package allows the user to collapse multiple
longdesc citations into one, as is customary in physics journals. The
longdesc package requires a customised BibTeX style for its work; the
longdesc documentation explains how to do that customisation.
+depend mcite.ARCH
docfiles size=6
texmf-dist/doc/latex/mcite/mcite.dvi
srcfiles size=13
@@ -51807,6 +60149,7 @@ longdesc cmtt fonts, a "doafter" command, improved footnote support,
longdesc mathenv for various alignment in maths, list handling, a
longdesc rewrite of LaTeX's tabular and array environments, verbatim
longdesc handling, and syntax diagrams.
+depend mdwtools.ARCH
docfiles size=29
texmf-dist/doc/latex/mdwtools/COPYING
texmf-dist/doc/latex/mdwtools/README
@@ -51858,6 +60201,7 @@ longdesc itself, but which is updated from time to time, between
longdesc releases of the class itself. Users who wish to use the
longdesc hyperref package, in a document written with the memoir class,
longdesc should also use the memhfixc package.
+depend memoir.ARCH
docfiles size=781
texmf-dist/doc/latex/memoir/README
texmf-dist/doc/latex/memoir/basic.gst
@@ -51893,6 +60237,7 @@ longdesc This LaTeX class loads scrbook and provides changes necessary
longdesc for publishing at Mentis publishers in Paderborn, Germany. It
longdesc is not an official Mentis class, merely one developed by an
longdesc author in close co-operation with Mentis.
+depend mentis.ARCH
docfiles size=40
texmf-dist/doc/latex/mentis/README details="Readme"
texmf-dist/doc/latex/mentis/mentis.pdf details="Package documentation"
@@ -51912,6 +60257,7 @@ revision 1083
shortdesc Typesetting menus.
longdesc The package defines commands \keystroke and \menu, which assist
longdesc typesetting of a path through a program's menu.
+depend menu.ARCH
srcfiles size=4
texmf-dist/source/latex/menu/menu.dtx
texmf-dist/source/latex/menu/menu.ins
@@ -51925,6 +60271,7 @@ catalogue-license unknown
name metafont
category Package
revision 604
+depend metafont.ARCH
runfiles size=46
texmf-dist/metafont/base/expr.mf
texmf-dist/metafont/base/io.mf
@@ -51948,6 +60295,7 @@ runfiles size=46
name metafont-for-beginners
category Documentation
revision 22
+depend metafont-for-beginners.ARCH
docfiles size=12
texmf-doc/doc/english/metafont-for-beginners/metafont-for-beginners.tex
@@ -51955,6 +60303,7 @@ name metafp
category Documentation
revision 22
shortdesc Some Experiences in Running METAFONT and MetaPost.
+depend metafp.ARCH
docfiles size=49
texmf-doc/doc/english/metafp/metafp.pdf details="The document itself:" language="en"
catalogue-version
@@ -51972,6 +60321,7 @@ longdesc connections, but also trees, matrices, and many other things.
longdesc It more or less contains boxes.mp and rboxes.mp. There is a
longdesc large (albeit not complete) documentation distributed with the
longdesc package. It is easily extensible with new objects.
+depend metaobj.ARCH
docfiles size=247
texmf-dist/doc/metapost/metaobj/README details="Readme"
texmf-dist/doc/metapost/metaobj/license.txt
@@ -51993,6 +60343,7 @@ catalogue-license lppl
name metaplot
category Package
revision 2411
+depend metaplot.ARCH
docfiles size=141
texmf-dist/doc/latex/metaplot/README
texmf-dist/doc/latex/metaplot/examples/cap1.cc
@@ -52019,6 +60370,7 @@ revision 4904
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 metapost.ARCH
docfiles size=343
texmf-dist/doc/metapost/base/Makefile
texmf-dist/doc/metapost/base/grdemo-doc.pdf
@@ -52099,6 +60451,7 @@ catalogue-license unknown
name metapost-examples
category Documentation
revision 22
+depend metapost-examples.ARCH
docfiles size=37
texmf-doc/doc/english/metapost-examples/Makefile
texmf-doc/doc/english/metapost-examples/README
@@ -52111,6 +60464,7 @@ docfiles size=37
name metatex
category Package
revision 621
+depend metatex.ARCH
docfiles size=55
texmf-dist/doc/plain/metatex/README
texmf-dist/doc/plain/metatex/gpl.txt
@@ -52132,6 +60486,7 @@ longdesc MetaUML is a MetaPost library for typesetting UML diagrams,
longdesc which provides a usable, human-friendly textual notation for
longdesc UML, offering now support for class, package, activity, state,
longdesc and use case diagrams.
+depend metauml.ARCH
docfiles size=174
texmf-dist/doc/metapost/metauml/README details="Readme"
texmf-dist/doc/metapost/metauml/license.txt
@@ -52232,6 +60587,7 @@ shortdesc Typeset method and variable declarations.
longdesc This LaTeX package supports the typesetting of programming
longdesc language method and variable declarations. It includes an
longdesc option to typeset in French.
+depend method.ARCH
docfiles size=2
texmf-dist/doc/latex/method/methtest.dvi
texmf-dist/doc/latex/method/methtest.tex
@@ -52263,6 +60619,7 @@ longdesc texts. The package does not require any special font: all
longdesc symbols are taken from the Computer Modern fonts (which are
longdesc included in all TeX distributions) and the package's commands
longdesc are based on TeX primitives.
+depend metre.ARCH
docfiles size=98
texmf-dist/doc/latex/metre/demo.pdf details="Example of usage"
texmf-dist/doc/latex/metre/demo.tex
@@ -52294,6 +60651,7 @@ longdesc hyphenation rules for the Polish language and sources of
longdesc formats.
depend pl
depend hyphen-polish
+depend mex.ARCH
docfiles size=31
texmf-dist/doc/mex/base/00readme
texmf-dist/doc/mex/base/mex.html
@@ -52326,6 +60684,7 @@ longdesc ‘multiple master’ fonts, but using MetaFont; you specify a
longdesc font by a set of MetaFont parameters, and TeX makes up an mf
longdesc file to generate the required font; this package is not
longdesc integrated with NFSS (or MakeTeXTFM) but it is fun
+depend mff.ARCH
docfiles size=35
texmf-dist/doc/latex/mff/mffdoc.dvi
texmf-dist/doc/latex/mff/mffdoc.tex
@@ -52354,6 +60713,7 @@ shortdesc LaTeX support for MetaFont logo fonts.
longdesc LaTeX package and font definition file to access the Knuthian
longdesc mflogo fonts described in `The MetaFontbook' and to typeset the
longdesc MetaFont logos in LaTeX documents.
+depend mflogo.ARCH
execute addMixedMap mflogo.map
docfiles size=4
texmf-dist/doc/latex/mflogo/mflogo.dvi
@@ -52417,6 +60777,7 @@ longdesc typeset with old german fonts designed by Yannis Haralambous.
longdesc – pandora, a package to typeset with Pandora fonts designed
longdesc by Neena Billawala. Note that support for the Pandora fonts is
longdesc also available via the pandora-latex package.
+depend mfnfss.ARCH
srcfiles size=14
texmf-dist/source/latex/mfnfss/changes.txt
texmf-dist/source/latex/mfnfss/manifest.txt
@@ -52449,6 +60810,7 @@ longdesc be read back in to the document to place the picture at the
longdesc point where the original (La)TeX commands appeared. Note that
longdesc the ability to use MetaPost here means that the package works
longdesc equally well in LaTeX and PDFLaTeX.
+depend mfpic.ARCH
docfiles size=395
texmf-dist/doc/generic/mfpic/README details="Readme"
texmf-dist/doc/generic/mfpic/changes.txt
@@ -52484,6 +60846,7 @@ catalogue-license lppl
name mft
category Package
revision 91
+depend mft.ARCH
runfiles size=7
texmf-dist/mft/base/README
texmf-dist/mft/base/cmbase.mft
@@ -52501,6 +60864,7 @@ longdesc file. The mftinc package facilitates incorporating such files
longdesc into a LaTeX2e document. In addition, mftinc provides routines
longdesc for improved comment formatting and for typesetting font
longdesc tables.
+depend mftinc.ARCH
docfiles size=72
texmf-dist/doc/latex/mftinc/README details="Readme"
texmf-dist/doc/latex/mftinc/mftinc.pdf details="Package documentation"
@@ -52517,6 +60881,7 @@ catalogue-license lppl
name mftoeps
category Package
revision 604
+depend mftoeps.ARCH
srcfiles size=23
texmf-dist/source/metafont/mftoeps/0mftoeps.doc
texmf-dist/source/metafont/mftoeps/m2esamp/0m2esamp.doc
@@ -52561,6 +60926,7 @@ longdesc provides many useful tools for mathematical typesetting. It
longdesc fixes various deficiencies of amsmath and standard LaTeX. The
longdesc mhsetup package defines various programming tools needed by
longdesc both empheq and mathtools.
+depend mh.ARCH
docfiles size=142
texmf-dist/doc/latex/mh/README
texmf-dist/doc/latex/mh/empheq.pdf
@@ -52599,6 +60965,7 @@ longdesc contains the text of all official Risk and Safety (R and S)
longdesc Phrases that are used to label chemicals. At the time being,
longdesc these phrases are available in Danish, English, French, German
longdesc (current spelling), and Spanish.
+depend mhchem.ARCH
docfiles size=125
texmf-dist/doc/latex/mhchem/legal.txt
texmf-dist/doc/latex/mhchem/mhchem.pdf details="Package documentation"
@@ -52620,6 +60987,7 @@ longdesc blocks of equations (like (1.2a), (1.2b), etc) and references
longdesc to each equation individually (1.2a) or to the whole block
longdesc (1.2). The labels can be shown in draft mode. Comments in the
longdesc package itself describe usage.
+depend mhequ.ARCH
docfiles size=3
texmf-dist/doc/latex/mhequ/example.dvi
texmf-dist/doc/latex/mhequ/example.tex
@@ -52637,6 +61005,7 @@ shortdesc Historical mathematics.
longdesc This package provides a collection of macros for historical
longdesc descriptions of mathematicians; the macros provide full names
longdesc and birth and death dates of significant mathematicians.
+depend mhs.ARCH
runfiles size=34
texmf-dist/tex/latex/mhs/mhs.sty
catalogue-version 1.05i
@@ -52664,6 +61033,7 @@ longdesc protrusion only works with the pdfTeX compiler, at least
longdesc version 0.14f; version 1.20a is needed for automatic font
longdesc expansion. With pdfTeX version 1.30, a command is provided for
longdesc suppressing ligatures.
+depend microtype.ARCH
docfiles size=248
texmf-dist/doc/latex/microtype/README details="Package README"
texmf-dist/doc/latex/microtype/microtype.pdf details="Package documentation"
@@ -52706,6 +61076,7 @@ longdesc looping construct; – dolines: 'meta'-macros to separate
longdesc arguments by newlines; – labels: address labels and bulk mail
longdesc letters; – styledef: selectively input part of a file; and
longdesc – border: borders around boxes.
+depend midnight.ARCH
docfiles size=55
texmf-dist/doc/generic/midnight/border.doc
texmf-dist/doc/generic/midnight/border.dvi
@@ -52746,6 +61117,7 @@ shortdesc Typeset miller indices.
longdesc Typeset miller indices, e.g., <1-20>, that are used in material
longdesc science with an easy syntax. Minus signs are printed as bar
longdesc above the corresponding number.
+depend miller.ARCH
docfiles size=73
texmf-dist/doc/latex/miller/ChangeLog
texmf-dist/doc/latex/miller/README
@@ -52775,6 +61147,7 @@ longdesc outside (i.e., after) the box.) The package defines an
longdesc environment minipagewithmarginpars (to be used like
longdesc minipage)—and the internal commands may be used by other
longdesc packages to define similar environments or commands.
+depend minipage-marginpar.ARCH
docfiles size=46
texmf-dist/doc/latex/minipage-marginpar/README details="README file"
texmf-dist/doc/latex/minipage-marginpar/mpgmpar.pdf details="Package documentation" language="de"
@@ -52791,6 +61164,7 @@ catalogue-license lppl
name miniplot
category Package
revision 1487
+depend miniplot.ARCH
docfiles size=65
texmf-dist/doc/latex/miniplot/disclaimer.txt
texmf-dist/doc/latex/miniplot/figures/1.eps
@@ -52817,6 +61191,7 @@ longdesc sectlots. The package has provision for language-specific
longdesc configuration of its own “fixed names”, using .mld files
longdesc (analagous to babel .ldf files that do that job for LaTeX's own
longdesc fixed names).
+depend minitoc.ARCH
docfiles size=2782
texmf-dist/doc/latex/minitoc/CATALOG
texmf-dist/doc/latex/minitoc/INSTALL
@@ -53153,6 +61528,7 @@ longdesc attachments; – Support of schedule dates (in planning:
longdesc support for the calendar package); – Different versions
longdesc (‘secret parts’); and – Macros for votes and decisions
longdesc (list of decisions).
+depend minutes.ARCH
docfiles size=100
texmf-dist/doc/latex/minutes/MinStyGd.tex
texmf-dist/doc/latex/minutes/Overview.tex
@@ -53188,6 +61564,7 @@ catalogue-license dfsg
name misc
category Package
revision 621
+depend misc.ARCH
runfiles size=99
texmf-dist/fonts/source/public/misc/black.mf
texmf-dist/fonts/source/public/misc/blackaps.mf
@@ -53245,6 +61622,7 @@ runfiles size=99
name misc209
category Package
revision 1099
+depend misc209.ARCH
runfiles size=18
texmf-dist/tex/latex/misc209/bar.sty
texmf-dist/tex/latex/misc209/bibmods.sty
@@ -53258,6 +61636,7 @@ runfiles size=18
name mkind-english
category Package
revision 89
+depend mkind-english.ARCH
runfiles size=3
texmf-dist/makeindex/mkind-english/digit.ist
texmf-dist/makeindex/mkind-english/letter.ist
@@ -53266,6 +61645,7 @@ runfiles size=3
name mkind-german
category Package
revision 89
+depend mkind-german.ARCH
runfiles size=4
texmf-dist/makeindex/mkind-german/digit.ist
texmf-dist/makeindex/mkind-german/special.ist
@@ -53275,6 +61655,7 @@ runfiles size=4
name mkpattern
category Package
revision 4197
+depend mkpattern.ARCH
docfiles size=23
texmf-dist/doc/plain/mkpattern/README
texmf-dist/doc/plain/mkpattern/mkpatdoc.tex
@@ -53291,6 +61672,7 @@ longdesc This package formats articles using the MLA style. The aim is
longdesc that students and other academics in the humanities should
longdesc properly typeset their materials with minimal effort on their
longdesc part.
+depend mla-paper.ARCH
docfiles size=1
texmf-dist/doc/latex/mla-paper/README
runfiles size=1
@@ -53308,6 +61690,7 @@ longdesc The package defines commands that create macros for typesetting
longdesc vectors, matrices and functions, in a logical way. For example,
longdesc logical indexing can then be used to refer to elements or
longdesc arguments without hard-coding the symbols in the document.
+depend mlist.ARCH
docfiles size=51
texmf-dist/doc/latex/mlist/README details="Readme"
texmf-dist/doc/latex/mlist/mlist.pdf details="Package documentation"
@@ -53330,6 +61713,7 @@ longdesc MLTeX is a modification of TeX version >=3.0 that allows the
longdesc hyphenation of words with accented letters using ordinary
longdesc Computer Modern (CM) fonts. The system is distributed as a TeX
longdesc change file.
+depend mltex.ARCH
docfiles size=9
texmf-dist/doc/latex/mltex/README
texmf-dist/doc/latex/mltex/mltex.txt
@@ -53354,6 +61738,7 @@ shortdesc Hyphenation patterns for Mongolian.
longdesc Serves Mongolian written using Cyrillic letters, using T2A-
longdesc encoded output. (Note that the montex bundle provides
longdesc hyphenation patterns for its own encoding setup.)
+depend mnhyphn.ARCH
catalogue-version 1.1
catalogue-date 2007-03-22 14:19:04 +0100
catalogue-ctan /language/hyphenation/mnhyphn.tex
@@ -53363,6 +61748,7 @@ name mnras
category Package
revision 1487
shortdesc Monthly Notices of the Royal Astronomical Society.
+depend mnras.ARCH
docfiles size=62
texmf-dist/doc/plain/mnras/fonttest.tex
texmf-dist/doc/plain/mnras/mnguide.dvi
@@ -53397,6 +61783,7 @@ longdesc Times; it is known to look good with Sabon. There is no package
longdesc designed to configure its use with any font other than Minion
longdesc Pro, but (for example) simply loading mnsymbol after mathpazo
longdesc will probably do what is needed.
+depend mnsymbol.ARCH
execute addMap MnSymbol.map
docfiles size=76
texmf-dist/doc/latex/mnsymbol/MnSymbol.pdf details="Package documentation"
@@ -53676,6 +62063,7 @@ longdesc Moderncv provides a documentclass for typesetting modern
longdesc curriculums vitae, both in a classic and in a casual style. It
longdesc is fairly customizable, allowing you to define your own style
longdesc by changing the colors, the fonts, etc.
+depend moderncv.ARCH
docfiles size=132
texmf-dist/doc/latex/moderncv/CHANGELOG
texmf-dist/doc/latex/moderncv/KNOWN_BUGS
@@ -53712,6 +62100,7 @@ longdesc the same way as the TeX primitive \romannumeral and the second
longdesc as LaTeX command \roman. The default option is ‘vpourv’
longdesc with which 5 is ‘translated’ by ‘v’ and option
longdesc ‘upourv’ whith which the same 5 is given as ‘u’.
+depend modroman.ARCH
docfiles size=47
texmf-dist/doc/latex/modroman/LISEZMOI.txt
texmf-dist/doc/latex/modroman/README details="Readme"
@@ -53735,6 +62124,7 @@ shortdesc A language definition file for Mongolian in Babel.
longdesc This package provides support for Mongolian in a Cyrillic
longdesc alphabet. (The work derives from the earlier Russian work for
longdesc babel.)
+depend mongolian-babel.ARCH
docfiles size=26
texmf-dist/doc/latex/mongolian-babel/README
texmf-dist/doc/latex/mongolian-babel/mongolian.pdf details="Package documentation"
@@ -53783,6 +62173,7 @@ longdesc with Mongolian or Manju as the main document language. It is
longdesc recommended to choose pdfelatex as the resulting PDF files are
longdesc truly portable. Vertical text generated by MonTeX is not
longdesc supported in DVI.
+depend montex.ARCH
execute addMixedMap mongolian.map
docfiles size=534
texmf-dist/doc/latex/montex/00README
@@ -54118,6 +62509,7 @@ longdesc not be obvious. This style is effectively an online substitute
longdesc for error lists found in the LaTeX books, although it cannot
longdesc completely replace them. Only true LaTeX errors are included:
longdesc TeX errors are beyond the reach of ordinary macros.
+depend morehelp.ARCH
docfiles size=2
texmf-dist/doc/latex/morehelp/morehelp.README
runfiles size=5
@@ -54140,6 +62532,7 @@ longdesc current LaTeX2e shortcomings in using big font sizes. The
longdesc package also provides options for improving the typesetting of
longdesc paragraphs (or headlines) with embedded math expressions at
longdesc font sizes above 17.28pt.
+depend moresize.ARCH
docfiles size=4
texmf-dist/doc/latex/moresize/msizetst.dvi
texmf-dist/doc/latex/moresize/msizetst.tex
@@ -54161,6 +62554,7 @@ shortdesc Extended verbatim.
longdesc A verbatim mode that can handle TABs properly, can number
longdesc lines, can number lines in an included file, can produce boxed
longdesc verbatims, etc.
+depend moreverb.ARCH
docfiles size=27
texmf-dist/doc/latex/moreverb/README details="Package Readme"
texmf-dist/doc/latex/moreverb/moreverb.pdf details="Package documentation"
@@ -54180,6 +62574,7 @@ revision 1487
shortdesc Support for printing Morse code signs.
longdesc The bundle contains both LaTeX macros and MetaFont source of a
longdesc font for the package to use.
+depend morse.ARCH
docfiles size=6
texmf-dist/doc/latex/morse/morse.doc
texmf-dist/doc/latex/morse/morsedoc.dvi
@@ -54206,6 +62601,7 @@ longdesc Defines \includemovie with PDF-1.5 compatibility. Option
longdesc 'autoplay' causes the media clip to be started right after the
longdesc page has loaded. This is useful for side by side movie clips to
longdesc be played back synchronously.
+depend movie15.ARCH
docfiles size=201
texmf-dist/doc/latex/movie15/3dsystem.fig
texmf-dist/doc/latex/movie15/3dsystem.pdf
@@ -54233,6 +62629,7 @@ catalogue-license lppl
name mp3d
category Package
revision 104
+depend mp3d.ARCH
docfiles size=241
texmf-dist/doc/metapost/mp3d/README
texmf-dist/doc/metapost/mp3d/examples/cube10.mp
@@ -54281,6 +62678,7 @@ revision 1109
shortdesc A workaround for a LaTeX bug in marginpars.
longdesc Implements a workaround for the LaTeX bug that marginpars will
longdesc sometimes come out at the wrong margin.
+depend mparhack.ARCH
srcfiles size=10
texmf-dist/source/latex/mparhack/mparhack.dtx
texmf-dist/source/latex/mparhack/mparhack.ins
@@ -54297,6 +62695,7 @@ revision 105
shortdesc Patterns in MetaPost.
longdesc A package for defining and using patterns in MetaPost, using
longdesc the Pattern Color Space available in PostScript Level 2.
+depend mpattern.ARCH
docfiles size=4
texmf-dist/doc/metapost/mpattern/README details="Package Readme (English)" language="en"
texmf-dist/doc/metapost/mpattern/README.PL details="Package Readme (Polish)" language="pl"
@@ -54323,6 +62722,7 @@ longdesc whenever a page is shipped out; – multitoc, typeset the table
longdesc of contents in multiple columns; – prelim2e, mark typeset
longdesc pages as preliminary; and – ragged2e, typeset ragged text and
longdesc allow hyphenation.
+depend ms.ARCH
docfiles size=229
texmf-dist/doc/latex/ms/count1to.asc
texmf-dist/doc/latex/ms/count1to.bug
@@ -54381,6 +62781,7 @@ longdesc their texts. The package is not an MSC editor; it simply takes
longdesc a textual description of an MSC and draws the corresponding
longdesc MSC. The current version of the MSC macro package supports the
longdesc full MSC2000 language.
+depend msc.ARCH
docfiles size=42
texmf-dist/doc/latex/msc/COPYRIGHT
texmf-dist/doc/latex/msc/README details="Package Readme"
@@ -54406,6 +62807,7 @@ longdesc easy to use by writers of other classes and packages.
longdesc Volunteers are urged to test the package, report, and even to
longdesc localise the message file to their own language. Documentation
longdesc is provided in English.
+depend msg.ARCH
docfiles size=305
texmf-dist/doc/latex/msg/CHANGES
texmf-dist/doc/latex/msg/README
@@ -54437,6 +62839,7 @@ shortdesc Michael Landy's APA citation style.
longdesc LaTeX and BibTeX style files for a respectably close
longdesc approximation to APA (American Psychological Association)
longdesc citation and reference style.
+depend mslapa.ARCH
docfiles size=4
texmf-dist/doc/latex/mslapa/README
texmf-dist/doc/latex/mslapa/bibfile.bib
@@ -54460,6 +62863,7 @@ longdesc distributed by YandY, Inc.). The MathTime package has uppercase
longdesc Greek letters hardwired to be upright and only upright; this
longdesc package provides a switch to choose between the two kinds of
longdesc Greek uppercase letters.
+depend mtgreek.ARCH
docfiles size=2
texmf-dist/doc/latex/mtgreek/mtgtest.dvi
texmf-dist/doc/latex/mtgreek/mtgtest.tex
@@ -54482,6 +62886,7 @@ longdesc enumerated array in which columns are vertically aligned on the
longdesc counter. The motivation was lists of answers for a text book,
longdesc where there are many rather small items; the multienumerate
longdesc environment goes some way to making such lists look neater.
+depend multenum.ARCH
docfiles size=6
texmf-dist/doc/latex/multenum/multienum.article
texmf-dist/doc/latex/multenum/multienum.sample
@@ -54495,6 +62900,7 @@ catalogue-license unknown
name multi
category Package
revision 88
+depend multi.ARCH
runfiles size=9
texmf-dist/dvips/multi/2up.pro
texmf-dist/dvips/multi/4up.pro
@@ -54508,6 +62914,7 @@ longdesc The package multibbl redefines the standard bibliographic
longdesc commands so that one can generate multiple reference sections.
longdesc Each section has it own auxiliary file (for use with BibTeX)
longdesc and title.
+depend multibbl.ARCH
docfiles size=28
texmf-dist/doc/latex/multibbl/multibbl.pdf
srcfiles size=3
@@ -54530,6 +62937,7 @@ longdesc functionality to packages like bibunits and chapterbib, which
longdesc allow the creation of one bibliography for multiple, but
longdesc different parts of the document. Multibib is compatible with
longdesc inlinebib, natbib, and koma-script.
+depend multibib.ARCH
docfiles size=2
texmf-dist/doc/latex/multibib/README details="Package Readme"
texmf-dist/doc/latex/multibib/bibtexall
@@ -54555,6 +62963,7 @@ longdesc column tabular material, which cannot be standard floats in a
longdesc multicols environment. The package also provides a convenient
longdesc way to customise your captions, whether they be in multicols or
longdesc not.
+depend multicap.ARCH
docfiles size=28
texmf-dist/doc/latex/multicap/multicap.pdf
srcfiles size=6
@@ -54575,6 +62984,7 @@ longdesc designed for use with with PSTricks. Fixed-point arithmetic is
longdesc used when working on the loop variable, so that the package is
longdesc equally applicable in graphics applications like PSTricks as it
longdesc is with the more common integer loops.
+depend multido.ARCH
docfiles size=19
texmf-dist/doc/generic/multido/multido-test.tex
texmf-dist/doc/generic/multido/multido.doc
@@ -54595,6 +63005,7 @@ longdesc The package has a lot of flexibility, including an option for
longdesc specifying an entry at the “natural” width of its text. The
longdesc package is distributed with the bigdelim and bigstrut packages,
longdesc which can be used to advantage with \multirow cells.
+depend multirow.ARCH
docfiles size=2
texmf-dist/doc/latex/multirow/README
runfiles size=4
@@ -54613,6 +63024,7 @@ shortdesc An alternative authordate bibliography style.
longdesc The Munich BibTeX style is produced with custom-bib, as a
longdesc German (and, more generally, Continental European) alternative
longdesc to such author-date styles as harvard and oxford.
+depend munich.ARCH
docfiles size=75
texmf-dist/doc/latex/munich/README details="Readme"
texmf-dist/doc/latex/munich/documenation_munich_Bibtex_style.pdf details="Package documentation"
@@ -54635,6 +63047,7 @@ longdesc MusicTeX is a set of macros, that first demonstrated the
longdesc technique of simultaneous two-dimensional typesetting as
longdesc applied to music. MusicTeX has its shortcomings (notably in the
longdesc area of slurs), and is now largely superseded by MusiXTeX.
+depend musictex.ARCH
docfiles size=272
texmf-dist/doc/generic/musictex/aa_readm.tex
texmf-dist/doc/generic/musictex/adagio.tex
@@ -54774,6 +63187,7 @@ shortdesc MusiXTeX Extension Package for Lyrics Handling.
longdesc This package improves the performance of Taupin's MusixTeX for
longdesc vocal music, dealing with the problems with the base
longdesc package’s \zcharnote macro for incorporating lyrics.
+depend musixlyr.ARCH
docfiles size=46
texmf-dist/doc/latex/musixlyr/COPYING
texmf-dist/doc/latex/musixlyr/README
@@ -54790,6 +63204,7 @@ catalogue-license unknown
name musixps
category Package
revision 613
+depend musixps.ARCH
docfiles size=1
texmf-dist/doc/generic/musixps/readme.txt
runfiles size=15
@@ -54817,6 +63232,7 @@ longdesc would claim that even pmx could serve as a ‘composer's
longdesc workbench’ — among free software offerings, the composer is
longdesc probably best served by lilypond, and there are several good
longdesc (and very expensive) commercial packages.
+depend musixtex.ARCH
execute addMixedMap musix.map
docfiles size=678
texmf-dist/doc/generic/musixtex/CHANGES
@@ -55176,6 +63592,7 @@ revision 4856
shortdesc Classes for University of Manchester Dept of Computer Science.
longdesc Includes thesis and project report document classes from the
longdesc University of Manchester's Department of Computer Science.
+depend muthesis.ARCH
docfiles size=1
texmf-dist/doc/latex/muthesis/README
runfiles size=6
@@ -55200,6 +63617,7 @@ longdesc (it's possible to state different texts for running head and
longdesc for TOC), new environments 'itemize*' and 'enumerate*' for
longdesc lists with long items, page styles have variants for normal,
longdesc opening, closing, and blank pages.
+depend mwcls.ARCH
docfiles size=45
texmf-dist/doc/latex/mwcls/CZYTAJ details="Package README" language="pl"
texmf-dist/doc/latex/mwcls/ChangeLog
@@ -55232,6 +63650,7 @@ longdesc \jobname.<ext>. The package itself writes to a file
longdesc \jobname.col; the user should not ask the package to write to
longdesc that, or to any of the other standard LaTeX extensions like
longdesc tex, aux, log, and so on.
+depend mwrite.ARCH
runfiles size=2
texmf-dist/tex/latex/mwrite/mwrite.sty
catalogue-version 2.2
@@ -55248,6 +63667,7 @@ longdesc typesetting the Mongolian Xäwtää Dörbölijn script in
longdesc LaTeX. The script is an archaic one, which meets the needs of
longdesc Mongolian, Tibetan and Sanskrit, but is now little used. The
longdesc package is of alpha status, presented for evaluation.
+depend mxd.ARCH
docfiles size=11
texmf-dist/doc/latex/mxd/README details="Readme"
texmf-dist/doc/latex/mxd/mxd4tex.dvi
@@ -55283,6 +63703,7 @@ revision 1487
shortdesc A pair of Georgian fonts.
longdesc Two Georgian fonts, written in MetaFont, which cover the
longdesc Mxedruli and the Xucuri alphabets.
+depend mxedruli.ARCH
docfiles size=20
texmf-dist/doc/latex/mxedruli/mxeddoc.ps.gz
texmf-dist/doc/latex/mxedruli/ossetic.dvi
@@ -55332,6 +63753,7 @@ longdesc and packages which are outdated and superseded. The nag package
longdesc provides routines to warn the user about the use of such
longdesc obsolete things. As an example, we provide an extension that
longdesc detects many of the “sins” described in l2tabu.
+depend nag.ARCH
docfiles size=51
texmf-dist/doc/latex/nag/README details="Readme"
texmf-dist/doc/latex/nag/nag.pdf details="Package documentation"
@@ -55358,6 +63780,7 @@ longdesc The namespc package adds rudimentary c++-like namespace
longdesc functionality to LaTeX. It may be used to declare local LaTeX
longdesc commands, which can be made accessible in a later contexts
longdesc without defining them globally.
+depend namespc.ARCH
docfiles size=35
texmf-dist/doc/latex/namespc/README details="Readme"
texmf-dist/doc/latex/namespc/namespc.pdf details="Package documentation"
@@ -55380,6 +63803,7 @@ longdesc Provides versions of the standard BibTeX styles that are
longdesc compatible with natbib - plainnat, unsrtnat, abbrnat. The
longdesc bibliography styles produced by custom-bib are designed from
longdesc the start to be compatible with natbib.
+depend natbib.ARCH
docfiles size=74
texmf-dist/doc/latex/natbib/README.1st details="First README"
texmf-dist/doc/latex/natbib/README.v81 details="README for this release"
@@ -55407,6 +63831,7 @@ catalogue-license lppl
name nath
category Package
revision 1129
+depend nath.ARCH
docfiles size=48
texmf-dist/doc/latex/nath/README
texmf-dist/doc/latex/nath/nathguide.pdf
@@ -55421,6 +63846,7 @@ shortdesc Prepare papers for the journal Nature.
longdesc Nature does not accept papers in LaTeX, but it does accept PDF.
longdesc This class and BibTeX style provide what seems to be necessary
longdesc to produce papers in a format acceptable to the publisher.
+depend nature.ARCH
docfiles size=3
texmf-dist/doc/latex/nature/README
texmf-dist/doc/latex/nature/nature-template.tex
@@ -55435,6 +63861,7 @@ catalogue-license unknown
name ncclatex
category Package
revision 2240
+depend ncclatex.ARCH
docfiles size=172
texmf-dist/doc/latex/ncclatex/README
texmf-dist/doc/latex/ncclatex/changes.txt
@@ -55489,6 +63916,7 @@ longdesc techniques for declarations of sections, captions, and toc-
longdesc entries; generalised text-stretching; generation of new
longdesc theorem-like environments; control of the text area; centred
longdesc page layouts; and an un-numbered top-level section.
+depend ncctools.ARCH
docfiles size=729
texmf-dist/doc/latex/ncctools/README
texmf-dist/doc/latex/ncctools/README.source
@@ -55582,6 +64010,7 @@ catalogue-license lppl
name ncntrsbk
category Package
revision 2488
+depend ncntrsbk.ARCH
runfiles size=327
texmf-dist/dvips/ncntrsbk/config.unc
texmf-dist/fonts/afm/adobe/ncntrsbk/pncb8a.afm
@@ -55751,6 +64180,7 @@ category Package
revision 1487
shortdesc Format algorithms like Cormen, Leiserson and Rivest.
longdesc For comparison, see Cormen's own clrscode.
+depend newalg.ARCH
docfiles size=4
texmf-dist/doc/latex/newalg/newalg.dvi
srcfiles size=6
@@ -55772,6 +64202,7 @@ longdesc Commands are defined to manage the limited pool of input and
longdesc output handles provided by TeX. The streams so provided are
longdesc mapped to various of the LaTeX input and output mechanisms.
longdesc Some facilities of the verbatim package are also mapped.
+depend newfile.ARCH
docfiles size=1
texmf-dist/doc/latex/newfile/README details="Readme"
srcfiles size=9
@@ -55796,6 +64227,7 @@ longdesc into a wrapper and then put the wrapper in a document. The
longdesc class handles letterheads automatically. You place the object
longdesc for the letterhead (picture, information, etc.) in a box and
longdesc all sizing is set automatically.
+depend newlfm.ARCH
docfiles size=322
texmf-dist/doc/latex/newlfm/README details="Readme"
texmf-dist/doc/latex/newlfm/draft.eps
@@ -55858,6 +64290,7 @@ name newsletr
category Package
revision 1487
shortdesc Macros for making newsletters with Plain TeX.
+depend newsletr.ARCH
docfiles size=13
texmf-dist/doc/plain/newsletr/READ.ME
texmf-dist/doc/plain/newsletr/losample.tex
@@ -55881,6 +64314,7 @@ shortdesc Obsolete version of ntheorem.
longdesc A modified version of the theorem-style which provides
longdesc generation of lists of theorems. This has been superseded by
longdesc ntheorem. The package is no longer available from CTAN.
+depend newthm.ARCH
runfiles size=15
texmf-dist/tex/latex/newthm/n-thb.sty
texmf-dist/tex/latex/newthm/n-thbno.sty
@@ -55908,6 +64342,7 @@ longdesc Defines general purpose macro named \newverbatim to define your
longdesc own verbatim-like environment. It also has a supplementary
longdesc style file varvbtm.sty to provide set of macros for variants of
longdesc verbatim, such as tab emulation.
+depend newvbtm.ARCH
docfiles size=7
texmf-dist/doc/latex/newvbtm/README details="Readme"
texmf-dist/doc/latex/newvbtm/newvbtm-man.dvi
@@ -55930,6 +64365,7 @@ shortdesc Support for fancy frames.
longdesc The package defines means of drawing frames around boxes, using
longdesc dingbat fonts. Some (MetaFont) font sources are included; the
longdesc fonts are available separately in Type 1 format.
+depend niceframe.ARCH
docfiles size=18
texmf-dist/doc/latex/niceframe/bbding10.600pk
texmf-dist/doc/latex/niceframe/example.tex
@@ -55966,6 +64402,7 @@ longdesc (potentially) use denselists package, which just reduces list
longdesc spacing; the package is distributed with the class, but is not
longdesc part of the class proper. (The examples may be distributed
longdesc without even the restrictions of the LaTeX licence.)
+depend nih.ARCH
docfiles size=17
texmf-dist/doc/latex/nih/README
texmf-dist/doc/latex/nih/example-biosketch.pdf details="Example -- an NIH biographical sketch"
@@ -55987,6 +64424,7 @@ shortdesc A "new" version of the karta cartographic fonts.
longdesc A development of the karta font, offering more mathematical
longdesc stability in MetaFont. A version that will produce the glyphs
longdesc as Encapsulated PostScript, using MetaPost, is also provided.
+depend nkarta.ARCH
docfiles size=42
texmf-dist/doc/fonts/nkarta/README details="Readme"
texmf-dist/doc/fonts/nkarta/figtable.pdf details="A table of the the MetaPost images"
@@ -56010,6 +64448,7 @@ revision 1799
shortdesc Improved underlines in mathematics.
longdesc The package provides a (maths mode) \underline variant which
longdesc doesn’t impose italics correction at the end.
+depend noitcrul.ARCH
docfiles size=26
texmf-dist/doc/latex/noitcrul/README details="Readme"
texmf-dist/doc/latex/noitcrul/noitcrul.pdf details="Benutzerdoku:" language="de"
@@ -56029,6 +64468,7 @@ revision 1140
shortdesc Produce lists of symbols as in nomenclature.
longdesc Produces lists of symbols using the capabilities of the
longdesc MakeIndex program.
+depend nomencl.ARCH
docfiles size=51
texmf-dist/doc/latex/nomencl/README details="Readme"
texmf-dist/doc/latex/nomencl/nomencl.pdf details="Package documentation"
@@ -56055,6 +64495,7 @@ shortdesc Nomenclature typeset in a longtable
longdesc Nomentbl typeset nomenclatures in a longtable instead of the
longdesc makeindex style of nomencl. A nomenclature entry may have three
longdesc arguments: Symbol, description and physical unit.
+depend nomentbl.ARCH
docfiles size=53
texmf-dist/doc/latex/nomentbl/README
texmf-dist/doc/latex/nomentbl/example.pdf details="Example of use"
@@ -56079,6 +64520,7 @@ longdesc Adjusts the figure and table environments to ensure that
longdesc centered objects as one line captions are centered as well.
longdesc Also the vertical spaces for table captions above the table are
longdesc changed.
+depend nonfloat.ARCH
docfiles size=30
texmf-dist/doc/latex/nonfloat/nonfloat.pdf details="Package documentation (German)" language="de"
srcfiles size=6
@@ -56096,6 +64538,7 @@ name norasi
category Package
revision 98
depend c90enc
+depend norasi.ARCH
execute addMap norasi.map
runfiles size=132
texmf-dist/dvips/norasi/config.norasi
@@ -56121,6 +64564,7 @@ longdesc The package provides environments to highlight significant
longdesc portions of text within a document, by putting the text in a
longdesc box and adding an icon in the margin. (The icons are provided
longdesc as ‘fig’ sources, processable by xfig.)
+depend notes.ARCH
docfiles size=12
texmf-dist/doc/latex/notes/notes.dvi
texmf-dist/doc/latex/notes/testnotes.dvi
@@ -56157,6 +64601,7 @@ longdesc unsorted bibliography styles are supported. The package makes
longdesc use of the e-TeX extensions (any post-2005 LaTeX distribution
longdesc will provide these by default, but users of older systems may
longdesc need to use an elatex command or equivalent).
+depend notes2bib.ARCH
docfiles size=51
texmf-dist/doc/latex/notes2bib/README details="Readme"
texmf-dist/doc/latex/notes2bib/notes2bib.pdf details="Package documentation"
@@ -56181,6 +64626,7 @@ longdesc Council of Canada. The macros are provided as a pair of
longdesc classes, one for journals printed in two columns and the other
longdesc for journals (such as the Canadian Journal of Physics, post-
longdesc 1997) which are printed in a single-column format.
+depend nrc.ARCH
docfiles size=74
texmf-dist/doc/latex/nrc/README details="Readme"
texmf-dist/doc/latex/nrc/authors.txt details="Notes for authors"
@@ -56207,6 +64653,7 @@ shortdesc Simple tabbing extension for automatic line numbering.
longdesc An extension of the tabbing environment that supports automatic
longdesc line numbering. The lines can be referenced using the standard
longdesc \label and \ref mechanism.
+depend ntabbing.ARCH
docfiles size=3
texmf-dist/doc/latex/ntabbing/ntabbing.dvi
texmf-dist/doc/latex/ntabbing/ntabbing.tex
@@ -56221,6 +64668,7 @@ name ntg
category Documentation
revision 15
shortdesc Dutch TeX Users Group information.
+depend ntg.ARCH
docfiles size=272
texmf-doc/doc/dutch/ntg/amazon/home.gif
texmf-doc/doc/dutch/ntg/amazon/html.html
@@ -56294,6 +64742,7 @@ shortdesc "European" versions of standard classes.
longdesc Versions of the standard LaTeX article and report classes,
longdesc rewritten to reflect a more European design, by the Dutch TeX
longdesc Users Group NTG.
+depend ntgclass.ARCH
docfiles size=313
texmf-dist/doc/latex/ntgclass/00readme.txt
texmf-dist/doc/latex/ntgclass/a4.pdf
@@ -56344,6 +64793,7 @@ longdesc layout; proper placement of endmarks even when the environment
longdesc ends with \end{enumerate} or \end{displaymath} (including
longdesc support for amsmath displayed-equation environments); and
longdesc support for making a list of theorems like \listoffigures.
+depend ntheorem.ARCH
docfiles size=93
texmf-dist/doc/latex/ntheorem/README details="Readme"
texmf-dist/doc/latex/ntheorem/ntheorem.pdf details="Package documentation:" language="en"
@@ -56362,6 +64812,7 @@ catalogue-license lppl
name ntheorem-vn
category Documentation
revision 1860
+depend ntheorem-vn.ARCH
docfiles size=145
texmf-doc/doc/vietnamese/ntheorem-vn/COPYING
texmf-doc/doc/vietnamese/ntheorem-vn/FILELIST
@@ -56390,6 +64841,7 @@ revision 1148
shortdesc LaTeX macros for numbering lines.
longdesc The package works by patching the output routine; while it
longdesc seems to work, it is definitely fragile.
+depend numline.ARCH
runfiles size=4
texmf-dist/tex/latex/numline/numline.sty
catalogue-version
@@ -56405,6 +64857,7 @@ longdesc The package can generate cardinal (one, two, ...) and ordinal
longdesc (first, second, ...) numbers. The code derives from the memoir
longdesc class, and is extracted for the convenience of non-users of
longdesc that class.
+depend numname.ARCH
docfiles size=1
texmf-dist/doc/latex/numname/README details="Readme"
runfiles size=5
@@ -56432,6 +64885,7 @@ longdesc alignment using the tabular(*), array, tabularx, and longtable
longdesc environments (similar to the dcolumn and rccol packages) is
longdesc supported using all features of numprint. Additional text can
longdesc be added before and after the formatted number.
+depend numprint.ARCH
docfiles size=335
texmf-dist/doc/latex/numprint/ChangeLog.nbaseprt
texmf-dist/doc/latex/numprint/ChangeLog.numprint
@@ -56461,6 +64915,7 @@ catalogue-license lppl
name oberdiek
category Package
revision 5458
+depend oberdiek.ARCH
docfiles size=3711
texmf-dist/doc/latex/oberdiek/accsupp-example1.tex
texmf-dist/doc/latex/oberdiek/accsupp-example2.tex
@@ -56919,6 +65374,7 @@ revision 1487
shortdesc Macros for typesetting Object Z.
longdesc The package will typeset both Z and Object-Z specifications; it
longdesc develops the original zed package
+depend objectz.ARCH
docfiles size=33
texmf-dist/doc/latex/objectz/ozguide.dvi
texmf-dist/doc/latex/objectz/ozguide.tex
@@ -56944,6 +65400,7 @@ revision 101
shortdesc OCR A font.
longdesc An OCR-A font in MetaFont format. The font ocr-a is said to be
longdesc a better representation of the standard than oca.
+depend oca.ARCH
runfiles size=16
texmf-dist/fonts/source/public/oca/ocra.mf
texmf-dist/fonts/source/public/oca/ocra10.mf
@@ -56960,6 +65417,7 @@ revision 103
shortdesc LaTeX Support for the Cherokee language.
longdesc Macros and Type 1 fonts for Typesetting the Cherokee language
longdesc with the Omega version of LaTeX (known as Lambda).
+depend ocherokee.ARCH
execute addMap cherokee.map
docfiles size=18
texmf-dist/doc/lambda/ocherokee/cherokee.pdf
@@ -57000,6 +65458,7 @@ revision 101
shortdesc Fonts for OCR-A.
longdesc The fonts are distributed as MetaFont programs, derived from
longdesc ANSI Standard X3.17-1977 (though use at your own risk).
+depend ocr-a.ARCH
runfiles size=26
texmf-dist/fonts/source/public/ocr-a/ocr-a.mf
texmf-dist/fonts/source/public/ocr-a/ocr-ai.mf
@@ -57021,6 +65480,7 @@ revision 2189
shortdesc LaTeX support for ocr fonts.
longdesc The package supports use of both ocr-a and ocr-b fonts in LaTeX
longdesc documents.
+depend ocr-latex.ARCH
docfiles size=48
texmf-dist/doc/latex/ocr-latex/README
texmf-dist/doc/latex/ocr-latex/ocr.pdf details="Package documentation"
@@ -57054,6 +65514,7 @@ longdesc of respected experts, especially Jan Tschichold and Hugh
longdesc Williamson. The documentation discusses methods to organise and
longdesc print out any text into signatures, which can then be gathered,
longdesc folded and sewn into a book.
+depend octavo.ARCH
docfiles size=48
texmf-dist/doc/latex/octavo/README details="Readme"
texmf-dist/doc/latex/octavo/changes
@@ -57078,6 +65539,7 @@ shortdesc Font to provide the Österreichische Schulschrift.
longdesc MetaFont sources and a LaTeX package for the Österreichische
longdesc Schulschrift (Austrian school writing) of 1995, which differs
longdesc from German school writing in a number of significant aspects.
+depend oesch.ARCH
docfiles size=12
texmf-dist/doc/latex/oesch/beispiel.dvi
texmf-dist/doc/latex/oesch/beispiel.tex
@@ -57114,6 +65576,7 @@ longdesc but the implementation differs: the LaTeX variant of OFS uses
longdesc NFSS, but the Plain variant implements its own font management
longdesc (which may even be better than NFSS) – Support for math fonts
longdesc including TX fonts.
+depend ofs.ARCH
docfiles size=265
texmf-dist/doc/generic/ofs/changes.txt
texmf-dist/doc/generic/ofs/eurotex2003-ofs.pdf
@@ -57169,6 +65632,7 @@ shortdesc Fonts for typesetting Ogham script.
longdesc The font provides the Ogham alphabet, which is found on a
longdesc number of Irish and Pictish carvings dating from the 4th
longdesc century AD. The font is distributed as a MetaFont program.
+depend ogham.ARCH
runfiles size=3
texmf-dist/fonts/source/public/ogham/ogham.mf
texmf-dist/fonts/tfm/public/ogham/ogham.tfm
@@ -57183,6 +65647,7 @@ revision 1487
shortdesc Support for Polish typography and the ogonek.
longdesc Defines a \k command that, even in the absence of T1- or
longdesc Polish-encoded fonts, permits an ogonek diacritic.
+depend ogonek.ARCH
docfiles size=8
texmf-dist/doc/latex/ogonek/ogonek.dvi
texmf-dist/doc/latex/ogonek/togonek1.ltx
@@ -57206,6 +65671,7 @@ longdesc The oinuit system is a set of Lambda (Omega LaTeX) typesetting
longdesc tools for the Inuktitut language. The oinuit package supports
longdesc five different input methods and is bundled with the necessary
longdesc fonts.
+depend oinuit.ARCH
execute addMap oinuit.map
docfiles size=3
texmf-dist/doc/fonts/oinuit/README.1ST
@@ -57249,6 +65715,7 @@ revision 1155
shortdesc Old style numbers in OT1 encoding.
longdesc Font information needed to load the cmmi and cmmib fonts for
longdesc use to produce oldstyle numbers.
+depend oldstyle.ARCH
srcfiles size=3
texmf-dist/source/latex/oldstyle/oldstyle.dtx
texmf-dist/source/latex/oldstyle/oldstyle.ins
@@ -57270,6 +65737,7 @@ longdesc languages without changing character-set. Work on Omega seems,
longdesc more or less, to have ceased: its immediate successor was to be
longdesc the aleph project (though that too has stalled). Projects
longdesc developing Omega (and Aleph) ideas include Omega-2 and LuaTeX.
+depend omega.ARCH
execute addMap omega.map
docfiles size=138
texmf-dist/doc/omega/base/doc-1.8.tex
@@ -57629,6 +66097,7 @@ catalogue-license gpl
name omega-devanagari
category Package
revision 103
+depend omega-devanagari.ARCH
docfiles size=143
texmf-dist/doc/omega/omega-devanagari/india.ps.gz
runfiles size=13
@@ -57649,6 +66118,7 @@ longdesc This package inhibits the usage of plain TeX and (on demand) of
longdesc standard LaTeX mathematics environments. This is useful for
longdesc class writers who want to encourage their users to use the
longdesc environments provided by the amsmath package.
+depend onlyamsmath.ARCH
docfiles size=24
texmf-dist/doc/latex/onlyamsmath/README details="Readme"
texmf-dist/doc/latex/onlyamsmath/onlyamsmath.pdf details="Package documentation"
@@ -57677,6 +66147,7 @@ longdesc potentially in the same series as any of the document’s other
longdesc footnotes. Opcit also, as its name implies, avoids repetition
longdesc of full citations, achieving this, to a large extent,
longdesc automatically.
+depend opcit.ARCH
docfiles size=76
texmf-dist/doc/latex/opcit/README
texmf-dist/doc/latex/opcit/opcit.pdf details="Package documentation"
@@ -57694,6 +66165,7 @@ catalogue-license lppl
name optima
category Package
revision 90
+depend optima.ARCH
runfiles size=52
texmf-dist/fonts/tfm/cg/optima/copb.tfm
texmf-dist/fonts/tfm/cg/optima/copb8t.tfm
@@ -57738,6 +66210,7 @@ longdesc (“first” in Portuguese), “segundo” (second), and so on
longdesc up to 1999th. Separate counter commands are provided for
longdesc different letter case variants, and for masculine and feminine
longdesc gender inflections.
+depend ordinalpt.ARCH
docfiles size=67
texmf-dist/doc/latex/ordinalpt/README details="Readme"
texmf-dist/doc/latex/ordinalpt/ordinalpt.pdf details="Package documentation"
@@ -57757,6 +66230,7 @@ revision 101
shortdesc Osmanian font for writing Somali.
longdesc The font is provided as MetaFont source; it implements the
longdesc alphabet for Somali invented by Osman Yusuf.
+depend osmanian.ARCH
runfiles size=2
texmf-dist/fonts/source/public/osmanian/osmanian.mf
catalogue-version
@@ -57771,6 +66245,7 @@ shortdesc Macros, metrics, etc., to use the OT2 Cyrillic encoding.
longdesc A collection of LaTeX NFSS files, together with fontinst
longdesc control files and metrics for Monotype New Times and Lucida
longdesc Cyrillic.
+depend ot2cyr.ARCH
execute addMap lscy.map
execute addMap mntz.map
docfiles size=8
@@ -57817,6 +66292,7 @@ revision 1487
shortdesc Create othello boards in LaTeX.
longdesc A package (based on Kolodziejska’s go), and fonts (as
longdesc MetaFont source) are provided.
+depend othello.ARCH
docfiles size=25
texmf-dist/doc/latex/othello/boards.tex
texmf-dist/doc/latex/othello/othello.dvi
@@ -57860,6 +66336,7 @@ catalogue-license gpl
name otibet
category Package
revision 1487
+depend otibet.ARCH
docfiles size=27
texmf-dist/doc/latex/otibet/README
texmf-dist/doc/latex/otibet/allbasic-mule.tex
@@ -57920,6 +66397,7 @@ revision 1487
shortdesc List environment for making outlines.
longdesc The package defines an outline environment, which provides
longdesc facilities similar to enumerate, but up to 6 levels deep.
+depend outline.ARCH
docfiles size=2
texmf-dist/doc/latex/outline/outline-sample.dvi
texmf-dist/doc/latex/outline/outline-sample.tex
@@ -57939,6 +66417,7 @@ longdesc the usual \section stuff; the definitions of the levels can
longdesc then easily be changed. There is a mechanism for shifting all
longdesc levels. This makes it easy to bundle existing articles into a
longdesc compilation.
+depend outliner.ARCH
docfiles size=2
texmf-dist/doc/latex/outliner/outline_test.dvi
texmf-dist/doc/latex/outliner/outline_test.tex
@@ -57959,6 +66438,7 @@ longdesc resulting picture environment has the same dimensions as the
longdesc included eps graphic. LaTeX commands can be placed on the
longdesc graphic at defined positions. A grid for orientation is
longdesc available.
+depend overpic.ARCH
docfiles size=9
texmf-dist/doc/latex/overpic/README details="Readme (English)"
texmf-dist/doc/latex/overpic/README.de details="Readme (German)" language="de"
@@ -57983,6 +66463,7 @@ longdesc eye of a Swede working in the field of the history of ideas. It
longdesc is based on harvard and a heavily hacked bst-file generated
longdesc with custom-bib. It currently only supports \cite[] and \cite
longdesc and only in abbrevation mode.
+depend oxford.ARCH
docfiles size=1
texmf-dist/doc/latex/oxford/README
srcfiles size=18
@@ -58014,6 +66495,7 @@ longdesc according to ‘the divine proportion’. The font is uppercase
longdesc letters together with punctuation and some analphabetics; no
longdesc lowercase or digits. The MetaFont source is distributed in a
longdesc .dtx file, together with LaTeX support.
+depend pacioli.ARCH
docfiles size=2
texmf-dist/doc/fonts/pacioli/README
texmf-dist/doc/fonts/pacioli/tryfont.tex
@@ -58049,6 +66531,7 @@ longdesc corner, or in the middle. It was inspired by Axel Sommerfeldt's
longdesc rplain package. The same results may be achieved by using
longdesc fancyhdr, as well as many other convenient running head/foot
longdesc effects.
+depend pageno.ARCH
srcfiles size=4
texmf-dist/source/latex/pageno/pageno.dtx
texmf-dist/source/latex/pageno/pageno.ins
@@ -58066,6 +66549,7 @@ shortdesc Notes at end of document.
longdesc The pagenote package provides tagged notes on a separate page
longdesc (also known as ‘end notes’). Unless the memoir class is
longdesc used, the package requires the ifmtarg package.
+depend pagenote.ARCH
docfiles size=41
texmf-dist/doc/latex/pagenote/README
texmf-dist/doc/latex/pagenote/pagenote.pdf
@@ -58082,6 +66566,7 @@ catalogue-license lppl
name palatino
category Package
revision 2488
+depend palatino.ARCH
runfiles size=417
texmf-dist/dvips/palatino/config.upl
texmf-dist/fonts/afm/adobe/palatino/pplb8a.afm
@@ -58342,6 +66827,7 @@ longdesc papers for journals. The classes introduce new layout options
longdesc and font commands for sections/parts, and define a new keywords
longdesc environment, subtitle and institution commands for the title
longdesc section and new commands for revisions.
+depend paper.ARCH
docfiles size=25
texmf-dist/doc/latex/paper/journal1.tex
texmf-dist/doc/latex/paper/journal2.tex
@@ -58370,6 +66856,7 @@ revision 1937
shortdesc Origami-style folding paper CD case.
longdesc This package implements a LaTeX style file to produce origami-
longdesc style folding paper CD cases.
+depend papercdcase.ARCH
docfiles size=39
texmf-dist/doc/latex/papercdcase/example.tex
texmf-dist/doc/latex/papercdcase/interactive.tex
@@ -58393,6 +66880,7 @@ longdesc The final document has a front page and as many inner pages as
longdesc desired. News items appear one after another and the user can
longdesc choose the number of columns, style and so on. The class allows
longdesc users to create newsletters too.
+depend papertex.ARCH
docfiles size=123
texmf-dist/doc/latex/papertex/CHANGES
texmf-dist/doc/latex/papertex/README details="Readme"
@@ -58421,6 +66909,7 @@ longdesc Provides enumerate and itemize environments that can be used
longdesc within paragraphs to format the items either as running text or
longdesc as separate paragraphs with a preceding number or symbol. Also
longdesc provides compacted versions of enumerate and itemize.
+depend paralist.ARCH
docfiles size=61
texmf-dist/doc/latex/paralist/README details="Readme"
texmf-dist/doc/latex/paralist/paralist.pdf details="Package documentation"
@@ -58445,6 +66934,7 @@ longdesc alignment. The two columns may be on the same page, or on
longdesc facing pages. This arrangement of text is commonly used when
longdesc typesetting translations, but it can have value when comparing
longdesc any two texts.
+depend parallel.ARCH
docfiles size=38
texmf-dist/doc/latex/parallel/example1.tex
texmf-dist/doc/latex/parallel/example2.tex
@@ -58467,6 +66957,7 @@ revision 1171
shortdesc Defines macros for greek letters
longdesc Defines macros using ? to type greek letters so that the user
longdesc may type ?a to get the effect of $\alpha$.
+depend paresse.ARCH
docfiles size=178
texmf-dist/doc/latex/paresse/README details="Readme"
texmf-dist/doc/latex/paresse/english-paresse.pdf
@@ -58494,6 +66985,7 @@ revision 1172
shortdesc Typesets (two) streams of text running parallel.
longdesc For typesetting translated text and the original source,
longdesc parallel on the same page, one above the other.
+depend parrun.ARCH
docfiles size=39
texmf-dist/doc/latex/parrun/parrun.pdf details="Package documentation"
texmf-dist/doc/latex/parrun/readme details="Readme"
@@ -58513,6 +67005,7 @@ revision 627
shortdesc Support package for XML/SGML typesetting
longdesc Packages providing XML parsing, UTF-8 parsing, Unicode
longdesc entities, and common formatting object definitions for jadetex.
+depend passivetex.ARCH
docfiles size=94
texmf-dist/doc/xmltex/passivetex/ChangeLog
texmf-dist/doc/xmltex/passivetex/Changes-2003-01
@@ -58555,6 +67048,7 @@ longdesc only permits modification by adding commands at the beginning
longdesc or end of an existing definition. The package is distributed in
longdesc a relative of LaTeX doc format: it will run unmodified, though
longdesc it benefits from docstrip treatmend.
+depend patch.ARCH
docfiles size=6
texmf-dist/doc/plain/patch/patch.doc
runfiles size=8
@@ -58574,6 +67068,7 @@ longdesc be used to add material at the beginning and/or the end of the
longdesc replacement text of an existing macro. It works for macros with
longdesc any number of normal arguments, including those that were
longdesc defined with \DeclareRobustCommand.
+depend patchcmd.ARCH
srcfiles size=3
texmf-dist/source/latex/patchcmd/patchcmd.dtx
texmf-dist/source/latex/patchcmd/patchcmd.ins
@@ -58590,6 +67085,7 @@ revision 1803
shortdesc German LaTeX package documentation.
longdesc The pauldoc package provides helpers for German language
longdesc package documentation.
+depend pauldoc.ARCH
docfiles size=40
texmf-dist/doc/latex/pauldoc/README details="Readme"
texmf-dist/doc/latex/pauldoc/pauldoc.pdf details="Benutzerdoku:" language="de"
@@ -58610,6 +67106,7 @@ shortdesc Using graphics from PAW.
longdesc Support for the easy inclusion of graphics made by PAW (Physics
longdesc Analysis Workstation). You need to have PAW installed on your
longdesc system to benefit from this package.
+depend pawpict.ARCH
srcfiles size=11
texmf-dist/source/latex/pawpict/README
texmf-dist/source/latex/pawpict/pawpict.dtx
@@ -58625,6 +67122,7 @@ name pb-diagram
category Package
revision 1487
shortdesc A commutative diagram package using LAMSTeX or Xy-pic fonts.
+depend pb-diagram.ARCH
docfiles size=25
texmf-dist/doc/latex/pb-diagram/COPYING
texmf-dist/doc/latex/pb-diagram/README details="Readme"
@@ -58650,6 +67148,7 @@ longdesc Defines a command \pbox{<max width>}{<text>} which adjusts its
longdesc width to that of the enclosed text, up to the maximum width
longdesc given. The package also defines some associated length
longdesc commands.
+depend pbox.ARCH
docfiles size=1
texmf-dist/doc/latex/pbox/README details="Readme"
srcfiles size=15
@@ -58676,6 +67175,7 @@ longdesc This class is designed to simplify the typesetting of problem
longdesc sheets with Mathematics and Computer Science content. It is
longdesc currently customised towards teaching in French (and the
longdesc examples are in French).
+depend pbsheet.ARCH
docfiles size=167
texmf-dist/doc/latex/pbsheet/LPPL
texmf-dist/doc/latex/pbsheet/README details="Readme"
@@ -58709,6 +67209,7 @@ shortdesc Font support for current PCL printers.
longdesc Pclnfss provides package and fd files for selecting and using
longdesc the standard 45 scalable fonts built into most PCL laser
longdesc printers, together with metrics and virtual font files.
+depend pclnfss.ARCH
docfiles size=6
texmf-dist/doc/fonts/pclnfss/COPYING
texmf-dist/doc/fonts/pclnfss/README
@@ -58780,6 +67281,7 @@ shortdesc Tutorial on creating PDF forms using pdfLaTeX.
longdesc This package contains a tutorial and examples showing how to
longdesc create PDF forms using pdfLaTeX with the hyperref and insdljs
longdesc packages.
+depend pdf-forms-tutorial-de.ARCH
catalogue-version 0.9.4
catalogue-date 2007-10-25 17:55:44 +0200
catalogue-ctan /info/pdf-forms-tutorial
@@ -58793,6 +67295,7 @@ shortdesc Tutorial on creating PDF forms using pdfLaTeX.
longdesc This package contains a tutorial and examples showing how to
longdesc create PDF forms using pdfLaTeX with the hyperref and insdljs
longdesc packages.
+depend pdf-forms-tutorial-en.ARCH
catalogue-version 0.9.4
catalogue-date 2007-10-25 17:55:44 +0200
catalogue-ctan /info/pdf-forms-tutorial
@@ -58805,6 +67308,7 @@ shortdesc A set of macros for various transformations of TeX boxes.
longdesc pdf-trans is a set of macros for various transformations of TeX
longdesc boxes (based on plain and pdfeTeX primitives). It was initially
longdesc inspired by trans.tex, remade to work with pdfTeX.
+depend pdf-trans.ARCH
docfiles size=36
texmf-dist/doc/generic/pdf-trans/example.pdf
texmf-dist/doc/generic/pdf-trans/example.tex
@@ -58822,6 +67326,7 @@ shortdesc Activating and setting of character protruding using pdflatex.
longdesc This package provides an easy interface to adjust the character
longdesc protrusion for different fonts and choosing the right
longdesc adjustment automatically depending on the font.
+depend pdfcprot.ARCH
docfiles size=9
texmf-dist/doc/latex/pdfcprot/00CONTEN
texmf-dist/doc/latex/pdfcprot/00README
@@ -58858,6 +67363,7 @@ longdesc provided. The package supports pdfTeX (pdflatex) and VTeX. With
longdesc VTeX it is even possible to use this package to insert
longdesc PostScript files, in addition to PDF files.
depend eso-pic
+depend pdfpages.ARCH
docfiles size=61
texmf-dist/doc/latex/pdfpages/README details="Readme"
texmf-dist/doc/latex/pdfpages/dummy-l.pdf
@@ -58889,6 +67395,7 @@ longdesc that are readable on screen and will fit the screen's aspect
longdesc ratio. Also it can be used with various options to produce
longdesc regular print versions of the same document without any extra
longdesc effort.
+depend pdfscreen.ARCH
docfiles size=216
texmf-dist/doc/latex/pdfscreen/logo.pdf
texmf-dist/doc/latex/pdfscreen/manual-print.pdf details="Manual, for printing"
@@ -58940,6 +67447,7 @@ longdesc offer the freedom and possibilities of using various
longdesc backgrounds and other embellishments that a user can imagine to
longdesc have in as presentation. The package can make use of the
longdesc facilities of the PPower4 post-processor.
+depend pdfslide.ARCH
docfiles size=119
texmf-dist/doc/latex/pdfslide/demo.pdf details="Narrative demonstration of the package"
texmf-dist/doc/latex/pdfslide/manual.pdf
@@ -58969,6 +67477,7 @@ longdesc The package runs with pdfTeX or XeTeX, and creates an auxiliary
longdesc file with geometrical information to permit references back and
longdesc forth between source and PDF, assuming a conforming editor and
longdesc PDF viewer.
+depend pdfsync.ARCH
docfiles size=1
texmf-dist/doc/latex/pdfsync/README
runfiles size=3
@@ -58984,6 +67493,7 @@ revision 4460
shortdesc Colour and Graphics support for PDFTeX.
longdesc The file pdftex.def provides device-specific definitions for
longdesc colour and graphics support when running pdf(La)TeX.
+depend pdftex-def.ARCH
runfiles size=9
texmf-dist/tex/latex/pdftex-def/pdftex.def
catalogue-version 0.04h
@@ -59003,6 +67513,7 @@ longdesc use of in a pdfTeX document. This is done using the shell
longdesc escape function available in current TeX implementations. The
longdesc package may also be used in support of other ‘PostScript-
longdesc output-only’ packages, such as PSfrag.
+depend pdftricks.ARCH
docfiles size=111
texmf-dist/doc/latex/pdftricks/makefile
texmf-dist/doc/latex/pdftricks/manual.pdf details="Package documentation"
@@ -59025,6 +67536,7 @@ catalogue-license gpl
name pdfwin
category Package
revision 1185
+depend pdfwin.ARCH
docfiles size=130
texmf-dist/doc/latex/pdfwin/BucResampling.pdf
texmf-dist/doc/latex/pdfwin/BucSystem1.pdf
@@ -59046,6 +67558,7 @@ runfiles size=20
name pecha
category Package
revision 1186
+depend pecha.ARCH
docfiles size=31
texmf-dist/doc/latex/pecha/CHANGES
texmf-dist/doc/latex/pecha/COPYING
@@ -59063,6 +67576,7 @@ category Package
revision 80
shortdesc BibTeX style for the journal Perception.
longdesc A product of custom-bib, provided simply to save others' time.
+depend perception.ARCH
docfiles size=1
texmf-dist/doc/latex/perception/README
runfiles size=8
@@ -59087,6 +67601,7 @@ longdesc systems that offer them (mostly Unix-like systems). Also
longdesc provided is a switch to generate a PerlTeX-free, document-
longdesc specific, noperltex.sty that is useful when distributing a
longdesc document to places where PerlTeX is not available.
+depend perltex.ARCH
docfiles size=83
texmf-dist/doc/latex/perltex/README details="Readme"
texmf-dist/doc/latex/perltex/perltex.pdf details="Package documentation"
@@ -59106,6 +67621,7 @@ revision 3485
shortdesc Support for symmetric groups.
longdesc A package for symmetric groups, allowing you to input, output,
longdesc and calculate with them.
+depend permute.ARCH
docfiles size=22
texmf-dist/doc/latex/permute/permute.pdf details="Package documentation"
srcfiles size=11
@@ -59121,6 +67637,7 @@ catalogue-license lppl
name petri-nets
category Package
revision 1190
+depend petri-nets.ARCH
docfiles size=61
texmf-dist/doc/latex/petri-nets/README
texmf-dist/doc/latex/petri-nets/pndoc.pdf
@@ -59149,6 +67666,7 @@ longdesc is similar to pstricks and the standard picture environment.
longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt.
longdesc Unlike pstricks, it can produce either PostScript or PDF
longdesc output.
+depend pgf.ARCH
docfiles size=1436
texmf-dist/doc/generic/pgf/AUTHORS
texmf-dist/doc/generic/pgf/ChangeLog
@@ -59429,6 +67947,7 @@ longdesc script was used to write Greek), but arguments for other
longdesc languages have been presented. Given that the disc is the only
longdesc known example of the script, it seems unlikely that a
longdesc decipherment will ever be confirmed.
+depend phaistos.ARCH
execute addMap phaistos.map
docfiles size=47
texmf-dist/doc/fonts/phaistos/getglyphs
@@ -59458,6 +67977,7 @@ longdesc principles. Cross references may refer either to the number, or
longdesc to a short name of the target environment, or to the contents
longdesc of the environment. Philex builds on the facilities of the
longdesc linguex package.
+depend philex.ARCH
docfiles size=29
texmf-dist/doc/latex/philex/README details="Readme"
texmf-dist/doc/latex/philex/philex.pdf details="Package documentation"
@@ -59477,6 +67997,7 @@ longdesc The philokalia package has been designed to ease the use of the
longdesc Philokalia-Regular OpenType font with XeLaTeX. The font started
longdesc as a project to digitize the typeface used to typeset the
longdesc Philokalia books.
+depend philokalia.ARCH
docfiles size=27
texmf-dist/doc/xelatex/philokalia/philokalia.pdf
srcfiles size=6
@@ -59511,6 +68032,7 @@ longdesc class helps authors to typeset their own articles in ‘Web-
longdesc ready’ format. No assumption is made about the fonts
longdesc available to the author: the class uses freely available and
longdesc freely distributed fonts, only.
+depend philosophersimprint.ARCH
docfiles size=94
texmf-dist/doc/latex/philosophersimprint/README details="Readme"
texmf-dist/doc/latex/philosophersimprint/philosophersimprint.pdf details="Package documentation"
@@ -59535,6 +68057,7 @@ shortdesc MetaFont Phonetic fonts, based on Computer Modern.
longdesc The fonts are based on Computer Modern, and specified in
longdesc MetaFont. Macros for the fonts’ use are provided, both for
longdesc LaTeX 2.09 and for current LaTeX.
+depend phonetic.ARCH
docfiles size=2
texmf-dist/doc/fonts/phonetic/phonetic-table.dvi
texmf-dist/doc/fonts/phonetic/phonetic-table.tex
@@ -59592,6 +68115,7 @@ longdesc exists to generate double-column floats automatically if the
longdesc photo does not fit into one column. Photos do not have to be
longdesc placed as floats, they can also be placed as boxes, with
longdesc captions and photographer line still being available.
+depend photo.ARCH
docfiles size=42
texmf-dist/doc/latex/photo/photo.pdf details="Package documentation"
texmf-dist/doc/latex/photo/photo_test.lop
@@ -59614,6 +68138,7 @@ revision 619
shortdesc The PHYSE format.
longdesc PHYSE is a format for writing physics papers, based on Knuth's
longdesc plain.
+depend physe.ARCH
runfiles size=20
texmf-dist/tex/physe/base/physe.tex
texmf-dist/tex/physe/base/physupdt.tex
@@ -59629,6 +68154,7 @@ revision 1487
shortdesc A TeX format for physicists.
longdesc The macros were developed at SLAC, and were updated after the
longdesc transition from TeX 97 to TeX 1.0.
+depend phyzzx.ARCH
docfiles size=78
texmf-dist/doc/phyzzx/base/phyzdoc.dvi
texmf-dist/doc/phyzzx/base/phyzdoc.tex
@@ -59650,6 +68176,7 @@ revision 1487
shortdesc Insert pictures into paragraphs.
longdesc (NOTE: Piet van Oostrum does not recommend this package. Picins
longdesc is recommended instead.)
+depend picinpar.ARCH
docfiles size=7
texmf-dist/doc/latex/picinpar/picinpar.dvi
texmf-dist/doc/latex/picinpar/picinpar.tex
@@ -59674,6 +68201,7 @@ longdesc the graphics and color packages) of driver files. The package
longdesc documentation has a fair number of examples of use, showing
longdesc where things are improved by comparison with the LaTeX picture
longdesc environment.
+depend pict2e.ARCH
docfiles size=90
texmf-dist/doc/latex/pict2e/README details="Readme"
texmf-dist/doc/latex/pict2e/manifest.txt
@@ -59701,6 +68229,7 @@ catalogue-license lppl
name pictex
category Package
revision 613
+depend pictex.ARCH
docfiles size=4
texmf-dist/doc/generic/pictex/00index
texmf-dist/doc/generic/pictex/pictexzusatz.txt
@@ -59730,6 +68259,7 @@ longdesc relative coordinates, thus eliminating the need to calculate
longdesc the coordinate of every point manually as in standard PiCTeX.
longdesc The other command modifies \plot to use a rule instead of dots
longdesc if the line segment is horizontal or vertical.
+depend pictex2.ARCH
runfiles size=4
texmf-dist/tex/latex/pictex2/pictex2.sty
catalogue-version
@@ -59747,6 +68277,7 @@ longdesc users with little MetaPost experience to draw charts. A
longdesc highlight of the package is the possibility of suppressing some
longdesc segments of the chart, thus creating the possibility of several
longdesc charts from the same data.
+depend piechartmp.ARCH
docfiles size=103
texmf-dist/doc/metapost/piechartmp/INSTALL
texmf-dist/doc/metapost/piechartmp/LEGAL
@@ -59775,6 +68306,7 @@ longdesc and for relabelling an existing diagram. The package uses
longdesc coordinates derived from GhostView (or gv) and labels are
longdesc placed with automatic and consistent spacing relative to the
longdesc object labelled.
+depend pinlabel.ARCH
runfiles size=10
texmf-dist/tex/latex/pinlabel/pinlabel.sty
catalogue-version 1.1
@@ -59791,6 +68323,7 @@ longdesc files that enable pittetd to use files prepared for use with
longdesc the pittdiss or pitthesis classes. The manual provides a
longdesc detailed guide for users who wish to use the class to prepare
longdesc their thesis or dissertation.
+depend pittetd.ARCH
docfiles size=118
texmf-dist/doc/latex/pittetd/achicago.pit
texmf-dist/doc/latex/pittetd/pittdiss.pit
@@ -59818,6 +68351,7 @@ longdesc or documentation, the central idea was to develop a method to
longdesc have one common source which can be interpreted by a Prolog
longdesc system as well as by LaTeX, whether that Prolog system be C-
longdesc Prolog, Quintus-Prolog, or ECLiPSe.
+depend pl.ARCH
execute addMixedMap plother.map
execute addMixedMap pltext.map
docfiles size=22
@@ -60259,6 +68793,7 @@ shortdesc Control float placement.
longdesc Defines a \FloatBarrier command, beyond which floats may not
longdesc pass; useful, for example, to ensure all floats for a section
longdesc appear before the next \section command.
+depend placeins.ARCH
docfiles size=1
texmf-dist/doc/latex/placeins/placeins.txt
runfiles size=1
@@ -60274,6 +68809,7 @@ revision 3308
shortdesc The Plain TeX format.
longdesc The file plain.tex is used to build the Plain TeX format, as
longdesc described in the TeXbook.
+depend plain.ARCH
runfiles size=56
texmf-dist/makeindex/plain/plaintex.ist
texmf-dist/tex/plain/base/fontchart.tex
@@ -60313,6 +68849,7 @@ longdesc Plari (the name comes from the Finnish usage for the working
longdesc copy of a play) is a report-alike class, without section
longdesc headings, and with paragraphs vertically separated rather than
longdesc indented.
+depend plari.ARCH
docfiles size=41
texmf-dist/doc/latex/plari/COPYING
texmf-dist/doc/latex/plari/README details="Readme"
@@ -60337,6 +68874,7 @@ longdesc colour figures in a document when they should be gathered and
longdesc printed together as in a book's section of colour plates. The
longdesc package provides a plate environment that takes the place of
longdesc the figure environment for such colour images.
+depend plates.ARCH
docfiles size=26
texmf-dist/doc/latex/plates/README details="Readme"
texmf-dist/doc/latex/plates/plates.pdf details="Package documentation"
@@ -60355,6 +68893,7 @@ revision 4605
shortdesc Typeset drama using LaTeX.
longdesc A class and style file that supports the typesetting of plays,
longdesc including options for line numbering.
+depend play.ARCH
docfiles size=1
texmf-dist/doc/latex/play/README
srcfiles size=4
@@ -60371,6 +68910,7 @@ catalogue-license lppl
name plgraph
category Package
revision 621
+depend plgraph.ARCH
docfiles size=6
texmf-dist/doc/plain/plgraph/00readme.txt
texmf-dist/doc/plain/plgraph/autopict.ins
@@ -60400,6 +68940,7 @@ longdesc loaded automatically. For cmr-like fonts (ec, vnr, csr or plr
longdesc fonts), a special format called pfd (plain fd) is required and
longdesc must be loaded manually. See ot1cmr.pfd for further
longdesc information.
+depend plnfss.ARCH
docfiles size=7
texmf-dist/doc/plain/plnfss/LPPL.txt
texmf-dist/doc/plain/plnfss/plnfss.txt
@@ -60428,6 +68969,7 @@ catalogue-license lppl
name plweb
category Package
revision 1487
+depend plweb.ARCH
docfiles size=12
texmf-dist/doc/latex/plweb/pl.dvi
texmf-dist/doc/latex/plweb/pl.tex
@@ -60448,6 +68990,7 @@ revision 1487
shortdesc "Poor man's" graphics.
longdesc A set of extensions to LaTeX picture environment, including a
longdesc wider range of vectors, and a lot more box frame styles.
+depend pmgraph.ARCH
docfiles size=23
texmf-dist/doc/latex/pmgraph/pmgraph.dvi
texmf-dist/doc/latex/pmgraph/pmgraph.tex
@@ -60470,6 +69013,7 @@ longdesc marking for cases in which page breaks occur during stanza
longdesc breaks, running headers of the form ‘Notes to pp. xx–yy‘
longdesc for the notes sections, index of titles and first lines, and
longdesc automatic generation of a table of contents.
+depend poemscol.ARCH
docfiles size=127
texmf-dist/doc/latex/poemscol/README details="Readme"
texmf-dist/doc/latex/poemscol/poemscol.pdf details="Documented source"
@@ -60494,6 +69038,7 @@ longdesc package was previously known as platex, but has been renamed to
longdesc resolve a name clash with the LaTeX system in the
depend pl
depend hyphen-polish
+depend polski.ARCH
docfiles size=15
texmf-dist/doc/latex/polski/conowego.txt
texmf-dist/doc/latex/polski/czytaj.txt details="Readme (Polish)" language="pl"
@@ -60535,6 +69080,7 @@ catalogue-license lppl
name polyglot
category Package
revision 1487
+depend polyglot.ARCH
docfiles size=2
texmf-dist/doc/latex/polyglot/sample.dvi
texmf-dist/doc/latex/polyglot/sample.tex
@@ -60563,6 +69109,7 @@ longdesc The polynom package implements macros for manipulating
longdesc polynomials, for example it can typeset long polynomial
longdesc divisions. The main test case and application is the polynomial
longdesc ring in one variable with rational coefficients.
+depend polynom.ARCH
docfiles size=69
texmf-dist/doc/latex/polynom/README details="Readme"
texmf-dist/doc/latex/polynom/polydemo.pdf details="Example of package use"
@@ -60588,6 +69135,7 @@ longdesc one for polynomials \polynomial{coeffs} and one for rational
longdesc functions \polynomialfrac{Numerator}{Denominator}. Both
longdesc commands take lists of coefficients as arguments, and offer
longdesc limited optional behaviour.
+depend polynomial.ARCH
docfiles size=37
texmf-dist/doc/latex/polynomial/README
texmf-dist/doc/latex/polynomial/polynomial.pdf details="Package documentation"
@@ -60609,6 +69157,7 @@ longdesc This package implements a variant of tabular-like environments
longdesc where columns can be given a name and entries can flexibly be
longdesc placed between arbitrary columns. Complex alignment-based
longdesc layouts, for example for program code, are possible.
+depend polytable.ARCH
docfiles size=1
texmf-dist/doc/latex/polytable/README
srcfiles size=22
@@ -60631,6 +69180,7 @@ longdesc size) via the envlab and mailing packages. An address database
longdesc is employed to address the front side of each postcard and a
longdesc message is printed on the back side of all. An illustrative
longdesc example is provided.
+depend postcards.ARCH
docfiles size=4
texmf-dist/doc/latex/postcards/README
texmf-dist/doc/latex/postcards/datasmp.txt
@@ -60654,6 +69204,7 @@ longdesc presenter. Examples are automatic overlays, personal notes and
longdesc a handout mode. To view a presentation, DVI, PS or PDF output
longdesc can be used. A powerful template system is available to easily
longdesc develop new styles. A LyX layout file is provided.
+depend powerdot.ARCH
docfiles size=126
texmf-dist/doc/latex/powerdot/README details="Readme"
texmf-dist/doc/latex/powerdot/manifest.txt
@@ -60699,6 +69250,7 @@ longdesc Ppower4 is post processor for PDF presentations created by
longdesc pdf(La)TeX. It can be used to prepare presentations which
longdesc include pages building up step by step when viewed with Acrobat
longdesc Reader (v4 and later). The software is written in Java.
+depend ppower4.ARCH
docfiles size=434
texmf-dist/doc/latex/ppower4/bericht.pdf
texmf-dist/doc/latex/ppower4/demo/demo.tex
@@ -60768,6 +69320,7 @@ longdesc This class is used with LaTeX presentations using the prosper
longdesc class. ppr-prv stands for ‘Prosper Preview’. The aim of
longdesc this class is to produce a printable version of the slides
longdesc written with Prosper, with two slides per page.
+depend ppr-prv.ARCH
docfiles size=84
texmf-dist/doc/latex/ppr-prv/README details="Readme"
texmf-dist/doc/latex/ppr-prv/ppr-prv.pdf details="Package documentation"
@@ -60790,6 +69343,7 @@ longdesc The pracjourn class is used for typesetting articles in the
longdesc PracTeX Journal. It is based on the article class with
longdesc modifications to allow for more flexible front-matter and
longdesc revision control, among other small changes.
+depend pracjourn.ARCH
docfiles size=107
texmf-dist/doc/latex/pracjourn/README details="Readme"
texmf-dist/doc/latex/pracjourn/pjsample.ltx
@@ -60815,6 +69369,7 @@ longdesc to balance the end of \twocolumn pages, – figcaps, to send
longdesc figure captions, etc., to end document, – fullpage, to set
longdesc narrow page margins and set a fixed page style, and –
longdesc sublabel, which permits counters to be subnumbered.
+depend preprint.ARCH
docfiles size=106
texmf-dist/doc/latex/preprint/00readme.txt
texmf-dist/doc/latex/preprint/00readme.unix
@@ -60861,6 +69416,7 @@ longdesc command, by using prefixed label names; so instead of
longdesc \label{mysection}, one uses \label{sec:mysection}, and
longdesc prettyref interprets the "sec:" part. The package is compatible
longdesc with hyperref and with other packages.
+depend prettyref.ARCH
docfiles size=11
texmf-dist/doc/latex/prettyref/prettyref.pdf details="Package documentation"
srcfiles size=3
@@ -60882,6 +69438,7 @@ longdesc bundle. The package provides the support preview-latex needs,
longdesc when it chooses the matter it will preview. The output may
longdesc reasonably be expected to have other uses, as in html
longdesc translators, etc.
+depend preview.ARCH
docfiles size=29
texmf-dist/doc/latex/preview/README details="Readme"
texmf-dist/doc/latex/preview/preview.pdf
@@ -60919,6 +69476,7 @@ longdesc seek out the previous year's students and checking out their
longdesc answers. The solutions to the problems can be defined along
longdesc with the problem, making it easy to generate the solution sheet
longdesc from the same source code.
+depend probsoln.ARCH
docfiles size=57
texmf-dist/doc/latex/probsoln/1stprncp.tex
texmf-dist/doc/latex/probsoln/CHANGES
@@ -60954,6 +69512,7 @@ longdesc that can be useful for the preparation of a paper with the
longdesc style of the proceeding of symposia sponsored by the
longdesc ‘International Association of Geodesy (IAG)’ published by
longdesc Springer-Verlag.
+depend procIAGssymp.ARCH
docfiles size=2
texmf-dist/doc/latex/procIAGssymp/TestPaper.tex
runfiles size=2
@@ -60972,6 +69531,7 @@ longdesc typesetting programs with TeX/LaTeX commands inside. The
longdesc keywords package allows definition and use of sets of keyword
longdesc commands that will be typeset with different fonts, according
longdesc to the wish of the user.
+depend progkeys.ARCH
docfiles size=26
texmf-dist/doc/latex/progkeys/keywords.dvi
texmf-dist/doc/latex/progkeys/programs.dvi
@@ -61004,6 +69564,7 @@ shortdesc Typesetting programs and algorithms.
longdesc The main offering is a program environment; a programbox
longdesc environment is available for fragments that must not break with
longdesc the pages.
+depend program.ARCH
docfiles size=41
texmf-dist/doc/latex/program/gpl.txt
texmf-dist/doc/latex/program/plink.pdf details="A programming trick"
@@ -61027,6 +69588,7 @@ longdesc documents, generates a HTML file showing an overview of a
longdesc document's state (of how finished it is). The report is sent to
longdesc file \ProgressReportName, which is by default the \jobname with
longdesc the date appended (but is user-modifiable).
+depend progress.ARCH
docfiles size=51
texmf-dist/doc/latex/progress/README details="Readme"
texmf-dist/doc/latex/progress/progress.dvi
@@ -61052,6 +69614,7 @@ longdesc Slides prepared for a presentation with a computer and a video
longdesc projector may integrate animation effects, incremental display,
longdesc and so on. Various visual styles are supported (including some
longdesc that mimic PowerPoint) and others are being contributed.
+depend prosper.ARCH
docfiles size=117
texmf-dist/doc/latex/prosper/Example.tex
texmf-dist/doc/latex/prosper/ExampleAlienglow.tex
@@ -61160,6 +69723,7 @@ name protocol
category Package
revision 2386
shortdesc A class for typesetting minutes (only german).
+depend protocol.ARCH
docfiles size=71
texmf-dist/doc/latex/protocol/protest.tex
texmf-dist/doc/latex/protocol/protocol.pdf details="Package documentation"
@@ -61177,6 +69741,7 @@ catalogue-license lppl1.3
name psafm
category Package
revision 90
+depend psafm.ARCH
runfiles size=35
texmf-dist/fonts/afm/itc/psafm/stonesan/is8b8a.afm
texmf-dist/fonts/afm/itc/psafm/stonesan/is8bi8a.afm
@@ -61191,6 +69756,7 @@ revision 1226
shortdesc LaTeX enviroment for specifying algorithms in a natural way.
longdesc This package provides the environment "pseudocode" for
longdesc describing algorithms in a natural manner.
+depend pseudocode.ARCH
docfiles size=43
texmf-dist/doc/latex/pseudocode/README details="Readme"
texmf-dist/doc/latex/pseudocode/pseudocode.pdf details="Package documentation"
@@ -61215,6 +69781,7 @@ longdesc LaTeX graphics bundle, specifically, either the graphicx or
longdesc even epsfig package. In particular, epsfig, which is always to
longdesc be found in modern distributions, implements a close analogue
longdesc of the syntax of psfig.
+depend psfig.ARCH
docfiles size=26
texmf-dist/doc/generic/psfig/README
texmf-dist/doc/generic/psfig/figs/box.ps
@@ -61276,6 +69843,7 @@ longdesc replacement is to be placed, with PSfrag automatically removing
longdesc these tags from the figure and replacing them with a user
longdesc specified LaTeX construction, properly aligned, scaled, and/or
longdesc rotated.
+depend psfrag.ARCH
docfiles size=30
texmf-dist/doc/latex/psfrag/00readme.txt
texmf-dist/doc/latex/psfrag/announce.txt details="Release notice"
@@ -61297,6 +69865,7 @@ catalogue-license dfsg
name psfrag-italian
category Documentation
revision 5358
+depend psfrag-italian.ARCH
docfiles size=47
texmf-doc/doc/italian/psfrag-italian/itpfgguide.pdf
texmf-doc/doc/italian/psfrag-italian/itpfgguide.tex
@@ -61320,6 +69889,7 @@ longdesc languages. The replacements to take into account will be
longdesc selected on the basis of the current language of the document.
longdesc A Matlab script (LaPrint) is provided, to export an EPS file
longdesc with psfragx annotations ready embedded.
+depend psfragx.ARCH
docfiles size=293
texmf-dist/doc/latex/psfragx/README.txt
texmf-dist/doc/latex/psfragx/example.eps
@@ -61351,6 +69921,7 @@ name psgo
category Package
revision 1229
shortdesc Typeset go diagrams with PSTricks.
+depend psgo.ARCH
docfiles size=7
texmf-dist/doc/latex/psgo/README details="Readme"
texmf-dist/doc/latex/psgo/psgomanual.tex
@@ -61369,6 +69940,7 @@ longdesc PSIZZL is a TeX format for physics papers written at SLAC and
longdesc used at several other places. It dates from rather early in the
longdesc development of TeX82; as a result, some of the descriptions of
longdesc limitations look rather quaint to modern eyes.
+depend psizzl.ARCH
docfiles size=5
texmf-dist/doc/psizzl/base/psizzl.commands details="List of commands available"
texmf-dist/doc/psizzl/base/psizzl.doc
@@ -61418,6 +69990,7 @@ longdesc Helvetica, and treats Courier as a lost cause (there are better
longdesc free fixed-width available now, than there were when pslatex
longdesc was designed). As a result, pslatex is widely considered
longdesc obsolete.
+depend pslatex.ARCH
srcfiles size=3
texmf-dist/source/latex/pslatex/fontinst/pslatex.tex
texmf-dist/source/latex/pslatex/shell/pslatex
@@ -61448,6 +70021,7 @@ longdesc donated to the public domain by their commercial foundries) and
longdesc Pazo Math (optionally extended with the fpl small-caps and old-
longdesc style figures fonts). The bundle is part of the LaTeX
longdesc ‘required’ set of packages.
+depend psnfss.ARCH
execute addMap charter.map
execute addMap fpls.map
execute addMap pazo.map
@@ -61587,6 +70161,7 @@ shortdesc PostScript picture support.
longdesc A replacement for LaTeX's picture macros, that uses PostScript
longdesc \special commands. The package is now largely superseded by
longdesc pict2e.
+depend pspicture.ARCH
docfiles size=18
texmf-dist/doc/latex/pspicture/README details="Package Readme"
texmf-dist/doc/latex/pspicture/pspicture.pdf details="Package documentation"
@@ -61607,6 +70182,7 @@ shortdesc A PSTricks package for drawing 2D curves.
longdesc Pst-2dplot is a pstricks package that offers an easy-to-use and
longdesc intuitive tool for plotting 2-d curves. It defines an
longdesc environment with commands similar to MATLAB for plotting.
+depend pst-2dplot.ARCH
docfiles size=31
texmf-dist/doc/generic/pst-2dplot/README
texmf-dist/doc/generic/pst-2dplot/data1.data
@@ -61626,6 +70202,7 @@ shortdesc A PSTricks package for tilting and other pseudo-3D tricks.
longdesc The pst-3d package provides basic macros for shadows, tilting
longdesc and three dimensional representations of text or graphical
longdesc objects.
+depend pst-3d.ARCH
docfiles size=61
texmf-dist/doc/generic/pst-3d/Changes
texmf-dist/doc/generic/pst-3d/README details="Readme"
@@ -61651,6 +70228,7 @@ longdesc external data files, making this package a generic tool for
longdesc graphing within TeX/LaTeX, without the need for external tools.
longdesc Uses the xkeyval package to provide its command argument
longdesc decoding.
+depend pst-3dplot.ARCH
docfiles size=585
texmf-dist/doc/generic/pst-3dplot/Changes
texmf-dist/doc/generic/pst-3dplot/README details="Readme"
@@ -61673,6 +70251,7 @@ shortdesc Typeset autosegmental representations for linguists.
longdesc The package uses PStricks to typeset autosegmental
longdesc representations. It uses the PStricks (of course), and xkeyval
longdesc packages.
+depend pst-asr.ARCH
docfiles size=19
texmf-dist/doc/generic/pst-asr/README
texmf-dist/doc/generic/pst-asr/pst-asr-examples.pdf details="Examples of usage"
@@ -61696,6 +70275,7 @@ longdesc packages are required except those that are part of the
longdesc standard pstricks distribution. This release should be
longdesc considered a beta with all of the caveats that beta releases
longdesc typically carry.
+depend pst-bar.ARCH
docfiles size=30
texmf-dist/doc/generic/pst-bar/LICENSE
texmf-dist/doc/generic/pst-bar/README details="Readme"
@@ -61723,6 +70303,7 @@ longdesc Space Symbology (RSS); RSS-14; RSS limited; and RSS expanded.
longdesc As a pstricks package, pst-barcode requires pstricks. The
longdesc package uses PostScript for calculating the bars. For PDF
longdesc output use a multi-pass mechansism such as pst-pdf.
+depend pst-barcode.ARCH
docfiles size=70
texmf-dist/doc/generic/pst-barcode/Changes
texmf-dist/doc/generic/pst-barcode/README details="Readme"
@@ -61747,6 +70328,7 @@ shortdesc PSTricks package for "blurred" shadows.
longdesc Pst-blur is a package built for use with PSTricks. It provides
longdesc macros that apply blurring to the normal shadow function of
longdesc PSTricks.
+depend pst-blur.ARCH
docfiles size=26
texmf-dist/doc/generic/pst-blur/Changes
texmf-dist/doc/generic/pst-blur/README
@@ -61775,6 +70357,7 @@ longdesc theory. The package’s macros are designed with a view to
longdesc ‘logical’ representation of circuits, as far as possible,
longdesc so as to relieve the user of purely graphical considerations
longdesc when expressing a circuit.
+depend pst-circ.ARCH
docfiles size=138
texmf-dist/doc/generic/pst-circ/Changes
texmf-dist/doc/generic/pst-circ/README details="Readme"
@@ -61798,6 +70381,7 @@ revision 2559
shortdesc A PSTricks package for coils, etc.
longdesc Pst-coil is a PSTricks based package for coils and zigzags and
longdesc for coil and zigzag node connections.
+depend pst-coil.ARCH
docfiles size=51
texmf-dist/doc/generic/pst-coil/Changes
texmf-dist/doc/generic/pst-coil/README details="Package README"
@@ -61827,6 +70411,7 @@ longdesc standard database terminology. The PSTricks package is required
longdesc for using pst-dbicons, but no deep knowledge of PSTricks
longdesc commands is required (although such knowledge is useful for
longdesc exploiting the full functionality of the package).
+depend pst-dbicons.ARCH
docfiles size=39
texmf-dist/doc/generic/pst-dbicons/Changes
texmf-dist/doc/generic/pst-dbicons/README details="Package README"
@@ -61856,6 +70441,7 @@ longdesc the aperture under consideration and of the particular optical
longdesc setting, e.g. the radius in case of an circular opening.
longdesc Moreover one can choose the wavelength of the light (the
longdesc associated color will be calculated by the package).
+depend pst-diffraction.ARCH
docfiles size=613
texmf-dist/doc/generic/pst-diffraction/Changes
texmf-dist/doc/generic/pst-diffraction/README details="Readme"
@@ -61883,6 +70469,7 @@ shortdesc Create EPS files from PSTricks figures.
longdesc Pst-eps is a PSTricks-based package for exporting PSTricks
longdesc images ‘on the fly’ to encapsulated PostScript (EPS) image
longdesc files, which can then be read into a document in the usual way.
+depend pst-eps.ARCH
docfiles size=36
texmf-dist/doc/generic/pst-eps/Changes
texmf-dist/doc/generic/pst-eps/README details="Package README"
@@ -61909,6 +70496,7 @@ longdesc figures using TeX pstricks macros for specifying mathematical
longdesc constraints. It is thus possible to build point using common
longdesc transformations or intersections. The use of coordinates is
longdesc limited to points which controlled the figure.
+depend pst-eucl.ARCH
docfiles size=326
texmf-dist/doc/generic/pst-eucl/Exemples/abscur.tex
texmf-dist/doc/generic/pst-eucl/Exemples/abscur_in.tex
@@ -62029,6 +70617,7 @@ revision 5460
shortdesc Fill or tile areas with PSTricks.
longdesc Pst-fill is a PSTricks-based package for filling and tiling
longdesc areas or characters.
+depend pst-fill.ARCH
docfiles size=303
texmf-dist/doc/generic/pst-fill/Changes
texmf-dist/doc/generic/pst-fill/README details="Package README"
@@ -62052,6 +70641,7 @@ shortdesc Draw 3-dimensional framed boxes using PSTricks.
longdesc A package using PSTricks to draw three dimensional framed boxes
longdesc using a macro \PstFrameBoxThreeD. The macro is especially
longdesc useful for drawing 3d-seeming buttons.
+depend pst-fr3d.ARCH
docfiles size=50
texmf-dist/doc/generic/pst-fr3d/Changes
texmf-dist/doc/generic/pst-fr3d/README details="Readme"
@@ -62077,6 +70667,7 @@ longdesc as fractal trees (which need not be balanced) with a variety of
longdesc different parameters (including varying numbers of iterations).
longdesc The package uses the pst-xkey package, part of the xkeyval
longdesc distribution.
+depend pst-fractal.ARCH
docfiles size=503
texmf-dist/doc/generic/pst-fractal/Changes
texmf-dist/doc/generic/pst-fractal/README details="Readme"
@@ -62155,6 +70746,7 @@ longdesc superellipse function (the Lamé curve); – various
longdesc integration-derived functions; – binomial distribution
longdesc functions; and – implicit functions. The plots may be
longdesc generated as volumes of rotation about the X-axis, as well.
+depend pst-func.ARCH
docfiles size=587
texmf-dist/doc/generic/pst-func/Changes
texmf-dist/doc/generic/pst-func/README details="Package README"
@@ -62186,6 +70778,7 @@ longdesc DataBank II. Various parameters of the packages allow for
longdesc choice of the level of the detail and the layouts possible
longdesc (cities, borders, rivers etc). Substantial data files are
longdesc provided.
+depend pst-geo.ARCH
docfiles size=17
texmf-dist/doc/generic/pst-geo/Changes
texmf-dist/doc/generic/pst-geo/README details="Readme"
@@ -62215,6 +70808,7 @@ catalogue-license lppl
name pst-ghsb
category Package
revision 1242
+depend pst-ghsb.ARCH
docfiles size=26
texmf-dist/doc/generic/pst-ghsb/README
texmf-dist/doc/generic/pst-ghsb/t-ghsb.pdf
@@ -62233,6 +70827,7 @@ shortdesc Three dimensional grids with PSTricks.
longdesc This PSTricks package provides a command \PstGridThreeD that
longdesc will draw a three dimensional grid, offering a number of
longdesc options for its appearance.
+depend pst-gr3d.ARCH
docfiles size=48
texmf-dist/doc/generic/pst-gr3d/Changes
texmf-dist/doc/generic/pst-gr3d/README details="Readme"
@@ -62256,6 +70851,7 @@ longdesc Pst-grad is a PSTricks based package for filling with colour
longdesc gradients. Supported are colours in the RGB, CMYK or HSB
longdesc models. Other colour gradient mechanisms are to be found in
longdesc package pst-slpe.
+depend pst-grad.ARCH
docfiles size=69
texmf-dist/doc/generic/pst-grad/Changes
texmf-dist/doc/generic/pst-grad/pst-grad-doc.bib
@@ -62280,6 +70876,7 @@ longdesc \parametricplot requires some PostScript knowledge. The infix-
longdesc RPN and pst-infixplot styles simplify the usage of pst-plot for
longdesc the beginner, providing macro commands that convert natural
longdesc mathematical expressions to PostScript syntax.
+depend pst-infixplot.ARCH
docfiles size=84
texmf-dist/doc/generic/pst-infixplot/README
texmf-dist/doc/generic/pst-infixplot/pst-infixplot-doc.ps
@@ -62298,6 +70895,7 @@ catalogue-license lppl
name pst-jtree
category Package
revision 5496
+depend pst-jtree.ARCH
docfiles size=84
texmf-dist/doc/generic/pst-jtree/README
texmf-dist/doc/generic/pst-jtree/pst-jtree-doc.pdf
@@ -62315,6 +70913,7 @@ longdesc Pst-labo is a PSTricks related package for drawing basic and
longdesc complex chemical objects. The documentation of the package is
longdesc illuminated with plenty of illustrations together with their
longdesc source code, making it an easy read.
+depend pst-labo.ARCH
docfiles size=883
texmf-dist/doc/generic/pst-labo/Changes
texmf-dist/doc/generic/pst-labo/README details="Readme"
@@ -62347,6 +70946,7 @@ shortdesc Lenses with PSTricks.
longdesc This PSTricks package provides a really rather simple command
longdesc \PstLens that will draw a lens. Command parameters provide a
longdesc remarkable range of effects.
+depend pst-lens.ARCH
docfiles size=122
texmf-dist/doc/generic/pst-lens/Changes
texmf-dist/doc/generic/pst-lens/README details="Readme"
@@ -62369,6 +70969,7 @@ shortdesc 3D lighting effects for pstricks.
longdesc A PSTricks package for three dimensional lighting effects on
longdesc characters and PSTricks graphics, like lines, curves, plots,
longdesc ...
+depend pst-light3d.ARCH
docfiles size=178
texmf-dist/doc/generic/pst-light3d/README details="Readme"
texmf-dist/doc/generic/pst-light3d/Version-0.11
@@ -62398,6 +70999,7 @@ longdesc plot but can be used in whatever PS code (such as pstricks
longdesc SpecialCoor "!", useful to put labels). This work is in
longdesc progress! PS is limited to single precision so complex
longdesc operators like gammaln can give erroneous results.
+depend pst-math.ARCH
docfiles size=45
texmf-dist/doc/generic/pst-math/Changes
texmf-dist/doc/generic/pst-math/README details="Readme"
@@ -62420,6 +71022,7 @@ longdesc The package uses PSTricks to provide basic three-dimensional
longdesc objects. As yet, only cubes (which can be deformed to
longdesc rectangular parallelipipeds) and dies (which are only a special
longdesc kind of cubes) are defined.
+depend pst-ob3d.ARCH
docfiles size=50
texmf-dist/doc/generic/pst-ob3d/Changes
texmf-dist/doc/generic/pst-ob3d/README
@@ -62445,6 +71048,7 @@ longdesc that facilitate easy sketching of optical experimental setups.
longdesc Mechanisms for proper alignment of different components are
longdesc provided internally. This way the user does not have to care
longdesc for proper orientation of the elements.
+depend pst-optexp.ARCH
docfiles size=71
texmf-dist/doc/generic/pst-optexp/Changes
texmf-dist/doc/generic/pst-optexp/README details="Readme"
@@ -62466,6 +71070,7 @@ shortdesc Drawing optics diagrams.
longdesc A package for drawing both reflective and refractive optics
longdesc diagrams. The package requires pstricks later than version
longdesc 1.10.
+depend pst-optic.ARCH
docfiles size=215
texmf-dist/doc/generic/pst-optic/Changes
texmf-dist/doc/generic/pst-optic/README details="Readme"
@@ -62495,6 +71100,7 @@ longdesc sinusoidal, rectangular, triangular, dog's tooth (left and
longdesc right oriented). The third channel allows you to add, to
longdesc subtract or to multiply the two other signals. Lissajous
longdesc diagrams (XY-mode) can also be obtained.
+depend pst-osci.ARCH
docfiles size=344
texmf-dist/doc/generic/pst-osci/Changes
texmf-dist/doc/generic/pst-osci/README
@@ -62523,6 +71129,7 @@ longdesc graphics material. In the final document this contents will be
longdesc inserted instead of the original PostScript code. The package
longdesc works with pstricks and requires a recent version of the
longdesc preview package.
+depend pst-pdf.ARCH
docfiles size=473
texmf-dist/doc/generic/pst-pdf/CHANGES
texmf-dist/doc/generic/pst-pdf/CHANGES.tex
@@ -62563,6 +71170,7 @@ longdesc place the symbols on a pspicture canvas. An interface for
longdesc making trees is also provided. The package may be used both
longdesc with LaTeX and PlainTeX. A separate Perl program for generating
longdesc TeX files from spreadsheets is available.
+depend pst-pdgr.ARCH
docfiles size=51
texmf-dist/doc/generic/pst-pdgr/NEWS
texmf-dist/doc/generic/pst-pdgr/README details="Readme"
@@ -62591,6 +71199,7 @@ longdesc polygons (according to command parameters); various shortcuts
longdesc to commonly-used polygons are provided, as well as a command
longdesc \pspolygonbox that frames text with a polygon. The package uses
longdesc the xkeyval package for argument decoding.
+depend pst-poly.ARCH
docfiles size=53
texmf-dist/doc/generic/pst-poly/Changes
texmf-dist/doc/generic/pst-poly/README details="Package Readme"
@@ -62613,6 +71222,7 @@ category Package
revision 4147
shortdesc Simple syntax for trees.
longdesc The package provides a qtree-like front end for PSTricks.
+depend pst-qtree.ARCH
docfiles size=13
texmf-dist/doc/generic/pst-qtree/CHANGES
texmf-dist/doc/generic/pst-qtree/LICENSE
@@ -62639,6 +71249,7 @@ longdesc – pst-slpe converts between RGB and HSV behind the scenes;
longdesc – pst-slpe provides concentric and radial gradients; and –
longdesc pst-slpe uses the xkeyval package for the extended key
longdesc handling.
+depend pst-slpe.ARCH
docfiles size=44
texmf-dist/doc/generic/pst-slpe/README
texmf-dist/doc/generic/pst-slpe/pst-slpe.pdf
@@ -62660,6 +71271,7 @@ revision 5206
shortdesc Draw a Soroban using PSTricks.
longdesc The package uses PSTricks to draw a Japanese abacus, or
longdesc soroban. The soroban is still used in Japan today.
+depend pst-soroban.ARCH
docfiles size=29
texmf-dist/doc/generic/pst-soroban/Changes
texmf-dist/doc/generic/pst-soroban/README details="Readme"
@@ -62684,6 +71296,7 @@ longdesc database. It allows you to draw continuum, emission and
longdesc absorption spectra. A Total of 16 880 visible lines from 99
longdesc elements can be displayed. The package requires the xkeyval
longdesc package for decoding its arguments.
+depend pst-spectra.ARCH
docfiles size=54
texmf-dist/doc/generic/pst-spectra/README details="Package README"
texmf-dist/doc/generic/pst-spectra/pst-spectra.pdf details="Package documentation" language="fr"
@@ -62704,6 +71317,7 @@ shortdesc Civil engineering diagrams, using pstricks.
longdesc Pst-stru is a PSTricks-based package to draw structural schemes
longdesc in civil engineering analysis, for beams, portals, arches and
longdesc piles.
+depend pst-stru.ARCH
docfiles size=59
texmf-dist/doc/generic/pst-stru/Changes
texmf-dist/doc/generic/pst-stru/README
@@ -62724,6 +71338,7 @@ shortdesc Text and character manipulation in PSTricks.
longdesc Pst-text is a PSTricks based package for plotting text along a
longdesc different path and manipulating characters. It includes the
longdesc functionality of the old package pst-char.
+depend pst-text.ARCH
docfiles size=51
texmf-dist/doc/generic/pst-text/Changes
texmf-dist/doc/generic/pst-text/README details="Package README"
@@ -62749,6 +71364,7 @@ longdesc pst-uml is a PSTricks package that provides support for drawing
longdesc moderately complex UML (Universal Modelling Language) diagrams.
longdesc (The PDF documentation is written in French.)
depend multido
+depend pst-uml.ARCH
docfiles size=142
texmf-dist/doc/generic/pst-uml/Changes
texmf-dist/doc/generic/pst-uml/README details="Readme"
@@ -62779,6 +71395,7 @@ shortdesc Draw perspective views of three dimensional objects.
longdesc With pst-vue3d three dimensional objects like cubes, spheres
longdesc and others can be viewed from different points. The
longdesc distribution includes a comprehensive set of examples of usage.
+depend pst-vue3d.ARCH
docfiles size=1134
texmf-dist/doc/generic/pst-vue3d/Changes
texmf-dist/doc/generic/pst-vue3d/README details="Readme"
@@ -62813,6 +71430,7 @@ longdesc \special commands, which are not supported by PDF(La)TeX. This
longdesc limitation may be overcome by using either the pst-pdf or the
longdesc pdftricks package, to generate a PDF inclusion from a PSTricks
longdesc diagram.
+depend pstricks.ARCH
docfiles size=1463
texmf-dist/doc/generic/pstricks/Changes.doc
texmf-dist/doc/generic/pstricks/README
@@ -62873,6 +71491,7 @@ longdesc – dashed/dotted lines; and – CMYK colour support. The
longdesc package also includes additions and bugfixes for packages pst-
longdesc plot and pst-node (each of which is a part of the pstricks
longdesc distribution).
+depend pstricks-add.ARCH
docfiles size=513
texmf-dist/doc/generic/pstricks-add/Changes
texmf-dist/doc/generic/pstricks-add/README details="Package README"
@@ -62895,6 +71514,7 @@ catalogue-license lppl
name pstricks-tutorial
category Documentation
revision 3598
+depend pstricks-tutorial.ARCH
docfiles size=1247
texmf-doc/doc/english/pstricks-tutorial/chap1-figures.pdf
texmf-doc/doc/english/pstricks-tutorial/chap1-src.tar.gz
@@ -62924,6 +71544,7 @@ revision 1258
shortdesc Macros for 'Progress of Theoretical Physics'.
longdesc Includes a template, and a class option file for preprints.
longdesc Requires the cite, overcite and wrapfig packages.
+depend ptptex.ARCH
docfiles size=68
texmf-dist/doc/latex/ptptex/manptp.pdf details="Package documentation"
texmf-dist/doc/latex/ptptex/manptp.tex
@@ -62950,6 +71571,7 @@ longdesc offers LaTeX support by Rohit Grover, from an original by
longdesc Sebastian Rahtz, which is slightly odd in claiming that the
longdesc fonts are T1-encoded. A (possibly) more rational support
longdesc package is to be found in punk-latex
+depend punk.ARCH
runfiles size=20
texmf-dist/fonts/source/public/punk/punk.mf
texmf-dist/fonts/source/public/punk/punk10.mf
@@ -62989,6 +71611,7 @@ longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set
longdesc derived from the parallel TX font set. All the fonts are in
longdesc Type 1 format (AFM and PFB files), and are supported by TeX
longdesc metrics (VF and TFM files) and macros for use with LaTeX.
+depend pxfonts.ARCH
execute addMap pxfonts.map
docfiles size=166
texmf-dist/doc/fonts/pxfonts/COPYRIGHT
@@ -63176,6 +71799,7 @@ catalogue-license gpl
name qcm
category Package
revision 1260
+depend qcm.ARCH
docfiles size=33
texmf-dist/doc/latex/qcm/NEWS
texmf-dist/doc/latex/qcm/README
@@ -63195,6 +71819,7 @@ shortdesc LaTeX macros for typesetting trees.
longdesc Provides commands \branch and \leaf for specifying the elements
longdesc of the tree; you build up your tree with those commands, and
longdesc then issue the \tree command to typeset the whole.
+depend qobitree.ARCH
docfiles size=6
texmf-dist/doc/latex/qobitree/example.dvi
texmf-dist/doc/latex/qobitree/example.tex
@@ -63209,6 +71834,7 @@ catalogue-license unknown
name qpxqtx
category Package
revision 3893
+depend qpxqtx.ARCH
docfiles size=16
texmf-dist/doc/fonts/qpxqtx/00README
texmf-dist/doc/fonts/qpxqtx/p01tst.tex
@@ -63262,6 +71888,7 @@ longdesc execution of test code. Both packages make extensive use of in
longdesc their package documentation, providing illustrated examples
longdesc that are automatically verified to work as expected. Check the
longdesc README file for details.
+depend qstest.ARCH
docfiles size=68
texmf-dist/doc/latex/qstest/README details="Readme"
texmf-dist/doc/latex/qstest/makematch-qs.tex
@@ -63291,6 +71918,7 @@ longdesc Provides macros for defining systematic mnemonic abbreviations,
longdesc starting with ` for math symbols and \" for arrows, using
longdesc standard symbols as well as those from the amssymb and stmaryrd
longdesc packages.
+depend qsymbols.ARCH
docfiles size=25
texmf-dist/doc/latex/qsymbols/qsymbols.ps.gz
texmf-dist/doc/latex/qsymbols/qsymbols.tex
@@ -63318,6 +71946,7 @@ longdesc calculates branch sizes, and supports both DVI/PostScript and
longdesc PDF output by use of pict2e facilities. The package is a
longdesc development of the existing qobitree package, offering a new
longdesc front end.
+depend qtree.ARCH
docfiles size=74
texmf-dist/doc/latex/qtree/README
texmf-dist/doc/latex/qtree/qarrows.pdf details="Use of tree-dvips with qtree:" language="en"
@@ -63339,6 +71968,7 @@ longdesc A package for creating decorative chapter headings with
longdesc quotations, a PostScript output device and the psnfss package
longdesc are needed, the color package and a greyscale output device are
longdesc recommended.
+depend quotchap.ARCH
docfiles size=17
texmf-dist/doc/latex/quotchap/document.pdf details="Sample document (chapter headings only)"
texmf-dist/doc/latex/quotchap/document.tex
@@ -63356,6 +71986,7 @@ catalogue-license lppl
name r-und-s
category Package
revision 613
+depend r-und-s.ARCH
docfiles size=3
texmf-dist/doc/generic/r-und-s/COPYRIGHT
texmf-dist/doc/generic/r-und-s/r_und_s.doc
@@ -63373,6 +72004,7 @@ longdesc Provides environments randbild, to draw small marginal plots
longdesc (using the package pstricks package pst-plot), and
longdesc randbildbasis (the same, only without the automatically drawn
longdesc coordinate system).
+depend randbild.ARCH
docfiles size=45
texmf-dist/doc/latex/randbild/README details="Readme (bilingual)"
texmf-dist/doc/latex/randbild/randbild.pdf details="Benutzerdoku:" language="de"
@@ -63397,6 +72029,7 @@ longdesc to read the file will misunderstand it. This function allows
longdesc one to include an email address in a TeX document and publish
longdesc it online without fear of email address harvesters or spammers
longdesc easily picking up the address.
+depend randtext.ARCH
docfiles size=1
texmf-dist/doc/latex/randtext/README
runfiles size=2
@@ -63415,6 +72048,7 @@ longdesc corresponding digits and decimal separators aligned.
longdesc Furthermore, rounding to the desired precision is possible. The
longdesc package makes use of the fltpoint package (as well as the LaTeX
longdesc required array package).
+depend rccol.ARCH
docfiles size=44
texmf-dist/doc/latex/rccol/README details="Readme"
texmf-dist/doc/latex/rccol/rccol.pdf
@@ -63444,6 +72078,7 @@ longdesc easily to do special things for any keyword. This bundle comes
longdesc with a user manual, an internal interface description, full
longdesc documentation of the implementation, style information for AUC-
longdesc TeX, and test cases.
+depend rcs.ARCH
docfiles size=52
texmf-dist/doc/latex/rcs/CATALOG
texmf-dist/doc/latex/rcs/History
@@ -63490,6 +72125,7 @@ shortdesc Support for the revision control system.
longdesc A package to extract RCS (Revision Control System) information
longdesc and use it in a LaTeX document. For users of LaTeX2HTML
longdesc rcsinfo.perl is included.
+depend rcsinfo.ARCH
docfiles size=48
texmf-dist/doc/latex/rcsinfo/README details="Readme"
texmf-dist/doc/latex/rcsinfo/README-1.9
@@ -63515,6 +72151,7 @@ revision 613
shortdesc Macros for real arithmetic calculations.
longdesc There are known problems with this package; an alternative is
longdesc fp (a latex package, only).
+depend realcalc.ARCH
docfiles size=4
texmf-dist/doc/generic/realcalc/realdemo.tex
texmf-dist/doc/generic/realcalc/realtest.tex
@@ -63534,6 +72171,7 @@ shortdesc Typeset recipes in note-card-sized boxes.
longdesc The recipecard class typesets recipes into note card sized
longdesc boxes that can then be cut out and pasted on to note cards. The
longdesc recipe then looks elegant and fits in the box of recipes.
+depend recipecard.ARCH
docfiles size=57
texmf-dist/doc/latex/recipecard/README details="Package README"
texmf-dist/doc/latex/recipecard/recipecard.pdf details="Package documentation"
@@ -63555,6 +72193,7 @@ shortdesc Recycle top matter.
longdesc Saves the arguments of \author and \title for reference (after
longdesc \maketitle) in a document. (\maketitle simply disposes of the
longdesc information, in the standard classes and some others.)
+depend rectopma.ARCH
docfiles size=2
texmf-dist/doc/latex/rectopma/TestTitle.dvi
texmf-dist/doc/latex/rectopma/TestTitle.tex
@@ -63574,6 +72213,7 @@ longdesc numbered but unlabelled equations, for labels which are not
longdesc used in the text, for unused bibliography references. It can
longdesc also display label names in text near corresponding numbers of
longdesc equations and/or bibliography references.
+depend refcheck.ARCH
docfiles size=17
texmf-dist/doc/latex/refcheck/refdemo.pdf details="Package demo"
texmf-dist/doc/latex/refcheck/refdemo.tex
@@ -63592,6 +72232,7 @@ longdesc Document classes (report- and article-style) for writing
longdesc technical reference manuals. It offers a wide left margin for
longdesc notes to the reader, like some of the manuals distributed by
longdesc Adobe.
+depend refman.ARCH
docfiles size=183
texmf-dist/doc/latex/refman/lay_d2.tex
texmf-dist/doc/latex/refman/lay_e2.tex
@@ -63626,6 +72267,7 @@ longdesc incorporated (if needed). For large projects such as a series
longdesc of books or a multi volume thesis, written as freestanding
longdesc documents, a facility is provided to interface to the xr
longdesc package for external document references.
+depend refstyle.ARCH
docfiles size=113
texmf-dist/doc/latex/refstyle/refconfig.pdf details="Configuration manual:"
texmf-dist/doc/latex/refstyle/refstyle.pdf details="Users manual:"
@@ -63647,6 +72289,7 @@ longdesc Adds a macro \rgcount which displays the allocation status of
longdesc the TeX registers. The display is written into the .log file as
longdesc it is a bit verbose. An automatic call to \rgcount is done at
longdesc \begin{document} and \end{document}.
+depend regcount.ARCH
docfiles size=1
texmf-dist/doc/latex/regcount/readme
srcfiles size=4
@@ -63673,6 +72316,7 @@ longdesc packages. Register requires a fairly recent version of the
longdesc float package. A Perl module and a Perl script are provided, to
longdesc translate the register specifications into programmable data
longdesc structures.
+depend register.ARCH
docfiles size=44
texmf-dist/doc/latex/register/Reg_macro.pm
texmf-dist/doc/latex/register/reg_list.pl
@@ -63694,6 +72338,7 @@ shortdesc A "relaxed" font encoding.
longdesc LaTeX package providing a relaxed font encoding to make
longdesc available to a font designer more slots for insertion of
longdesc ligatures and accented characters.
+depend relenc.ARCH
docfiles size=96
texmf-dist/doc/latex/relenc/reldemo.dvi
texmf-dist/doc/latex/relenc/reldemo.tex
@@ -63731,6 +72376,7 @@ shortdesc Repeat items in an index after a page or column break
longdesc This Package repeats item of an index if a page or column break
longdesc occurs within a list of subitems. This helps to find out to
longdesc which main item a subitem belongs.
+depend repeatindex.ARCH
docfiles size=6
texmf-dist/doc/latex/repeatindex/README
texmf-dist/doc/latex/repeatindex/testrepeatindex.pdf
@@ -63746,6 +72392,7 @@ catalogue-license lppl
name resume
category Package
revision 1277
+depend resume.ARCH
runfiles size=7
texmf-dist/tex/latex/resume/res.cls
@@ -63757,6 +72404,7 @@ longdesc Includes styles for American Physical Society, American
longdesc Institute of Physics, and Optical Society of America. The
longdesc distribution consists of the RevTeX class itself, and several
longdesc support packages.
+depend revtex.ARCH
docfiles size=407
texmf-dist/doc/latex/revtex/DOWNLOAD
texmf-dist/doc/latex/revtex/README details="Package Readme"
@@ -63808,6 +72456,7 @@ longdesc string, with position adjustment), and \extralabel (add a label
longdesc at given coordinates). You can, if you so choose, use the
longdesc facilities of the labelfig package in place of using
longdesc \extralabel.
+depend rlepsf.ARCH
docfiles size=18
texmf-dist/doc/latex/rlepsf/read.me
texmf-dist/doc/latex/rlepsf/rlepsdoc.ps.gz
@@ -63832,6 +72481,7 @@ longdesc configuration can set defaults: for all documents; and by
longdesc class, by printer, and by paper size. The geometry package is
longdesc better if you want to set page layout parameters to particular
longdesc measurements.
+depend rmpage.ARCH
docfiles size=134
texmf-dist/doc/latex/rmpage/rmpage.dvi
texmf-dist/doc/latex/rmpage/rmpage.tex
@@ -63853,6 +72503,7 @@ shortdesc Declare robust command, with \newcommand checks.
longdesc The package merely provides a variation of
longdesc \DeclareRobustCommand, which checks for the existence of a
longdesc command before declaring it robust.
+depend robustcommand.ARCH
docfiles size=19
texmf-dist/doc/latex/robustcommand/README details="Readme"
texmf-dist/doc/latex/robustcommand/robustcommand.pdf details="Benutzerdoku:" language="de"
@@ -63875,6 +72526,7 @@ longdesc makeindex. One would like to make the page numbers in the index
longdesc entries more robust. This bundle provides robustindex.sty and
longdesc robustglossary.sty, which use the \pageref mechanism to
longdesc maintain correct page numbers
+depend robustindex.ARCH
docfiles size=34
texmf-dist/doc/latex/robustindex/README details="Readme"
texmf-dist/doc/latex/robustindex/robustindex.html details="Package documentation"
@@ -63891,6 +72543,7 @@ catalogue-license lppl
name roex
category Package
revision 604
+depend roex.ARCH
srcfiles size=17
texmf-dist/source/metafont/roex/0roex.doc
texmf-dist/source/metafont/roex/roexsamp/0roexsam.doc
@@ -63919,6 +72572,7 @@ longdesc The romannum package changes LaTeX generated numbers to be
longdesc printed with roman numerals instead of arabic digits. It
longdesc requires the stdclsdv package. Users of the bookhands fonts may
longdesc find this package useful.
+depend romannum.ARCH
docfiles size=1
texmf-dist/doc/latex/romannum/README details="Readme"
srcfiles size=5
@@ -63944,6 +72598,7 @@ longdesc packages only deals in rotated boxes (or floats), and boxes
longdesc always stay on one page. If you need to use the facilities of
longdesc the float in the same document, load rotating.sty via rotfloat,
longdesc which smooths the path between the rotating and float packages.
+depend rotating.ARCH
docfiles size=18
texmf-dist/doc/latex/rotating/cat.eps
texmf-dist/doc/latex/rotating/examples.dvi
@@ -63974,6 +72629,7 @@ longdesc about new rotated floats, e.g. a rotated ruled one? This
longdesc package makes this possible; it builds a bridge between the two
longdesc packages and extends the commands from the float package to
longdesc define rotated versions of the new floats, too.
+depend rotfloat.ARCH
docfiles size=3
texmf-dist/doc/latex/rotfloat/examples.tex
texmf-dist/doc/latex/rotfloat/rotfloat.xml
@@ -63997,6 +72653,7 @@ longdesc that they can be read by turning the printed copy upside-down.
longdesc It was primarly meant for collecting exercises and solutions:
longdesc using the package, you can print the exercise text normally and
longdesc the solutions rotated.
+depend rotpages.ARCH
docfiles size=57
texmf-dist/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf
texmf-dist/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.tex
@@ -64024,6 +72681,7 @@ longdesc originally based on the file pccp.bst, but also implements a
longdesc number of styles from the achemso package. The package is now a
longdesc stub for the chemstyle package, which the author developed to
longdesc unify the writing of articles with a chemistry content.
+depend rsc.ARCH
docfiles size=32
texmf-dist/doc/latex/rsc/README details="Readme"
texmf-dist/doc/latex/rsc/rsc.pdf details="Package documentation"
@@ -64055,6 +72713,7 @@ longdesc the ‘calligraphic’ symbols in the TeX maths symbol font. An
longdesc Adobe Type 1 format version of the fonts is also available.
longdesc LaTeX support, for using these fonts in mathematics, is
longdesc available via one of the packages calrsfs and mathrsfs.
+depend rsfs.ARCH
execute addMixedMap rsfs.map
docfiles size=1
texmf-dist/doc/fonts/rsfs/README
@@ -64086,6 +72745,7 @@ catalogue-license lppl
name rst
category Package
revision 1287
+depend rst.ARCH
docfiles size=44
texmf-dist/doc/latex/rst/README
texmf-dist/doc/latex/rst/rst-package.pdf
@@ -64111,6 +72771,7 @@ longdesc rtkinenc should be backwards compatible with inputenc. rtkinenc
longdesc is not a new version of inputenc though, nor is it part of
longdesc standard LaTeX. For an example of how rtkinenc is used, the
longdesc user may look at the tclldoc class.
+depend rtkinenc.ARCH
docfiles size=1
texmf-dist/doc/latex/rtkinenc/README.txt details="Readme"
srcfiles size=7
@@ -64126,6 +72787,7 @@ catalogue-license lppl
name rtklage
category Package
revision 2109
+depend rtklage.ARCH
docfiles size=20
texmf-dist/doc/latex/rtklage/README
texmf-dist/doc/latex/rtklage/bspklage.tex
@@ -64140,6 +72802,7 @@ shortdesc Russian hyphenation.
longdesc A collection of Russian hyphenation patterns supporting a
longdesc number of Cyrillic font encodings, including T2, UCY (Omega
longdesc Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.
+depend ruhyphen.ARCH
srcfiles size=15
texmf-dist/source/generic/ruhyphen/BUGS
texmf-dist/source/generic/ruhyphen/Makefile
@@ -64189,6 +72852,7 @@ longdesc This class provides correct formatting according to the
longdesc requirements of an SAE (Society of Automotive Engineers)
longdesc Technical Paper. It should be useful for authors whose papers
longdesc have a high mathematical content.
+depend sae.ARCH
docfiles size=8
texmf-dist/doc/latex/sae/example.pdf details="Eaxmple of use"
texmf-dist/doc/latex/sae/example.tex
@@ -64208,6 +72872,7 @@ shortdesc Sanskrit support.
longdesc A font and pre-processor suitable for the production of
longdesc documents written in Sanskrit. Type 1 versions of the fonts are
longdesc available.
+depend sanskrit.ARCH
docfiles size=171
texmf-dist/doc/latex/sanskrit/readme.txt details="Readme"
texmf-dist/doc/latex/sanskrit/sktdoc.pdf
@@ -64260,6 +72925,7 @@ longdesc text, a tool for use in constructing macros with multiple
longdesc optional parameters, a package for multiple column parallel
longdesc texts, a tool for processing key-value structured lists, and
longdesc macros for typesetting a number as a German-language string.
+depend sauerj.ARCH
docfiles size=255
texmf-dist/doc/latex/sauerj/README
texmf-dist/doc/latex/sauerj/collect.pdf
@@ -64302,6 +72968,7 @@ longdesc parameterization scheme to build MetaFont fonts at true design
longdesc sizes, for a large range of sizes. The scheme has now been
longdesc extended to a range of other fonts, including the AMS fonts,
longdesc bbm, bbold, rsfs and wasy fonts.
+depend sauter.ARCH
runfiles size=61
texmf-dist/fonts/source/public/sauter/b-cmb.mf
texmf-dist/fonts/source/public/sauter/b-cmbsy.mf
@@ -64364,6 +73031,7 @@ longdesc sizes and look nicer for such "intermediate" document sizes as
longdesc 11pt. Also included is the package sbbm, an alternative to
longdesc access the bbm fonts, a nice collection of blackboard bold
longdesc symbols.
+depend sauterfonts.ARCH
docfiles size=1
texmf-dist/doc/latex/sauterfonts/README details="Readme"
srcfiles size=6
@@ -64413,6 +73081,7 @@ longdesc Sometimes the same footnote applies to more than one location
longdesc in a table. With this package the mark of a footnote can be
longdesc saved into a name, and re-used subsequently without creating
longdesc another footnote at the bottom.
+depend savefnmark.ARCH
docfiles size=46
texmf-dist/doc/latex/savefnmark/savefnmark.pdf
srcfiles size=5
@@ -64437,6 +73106,7 @@ longdesc we define \savesymbol{XXX}, which renames a symbol from \XXX to
longdesc \origXXX, and \restoresymbols{yyy}{XXX}, which renames \origXXX
longdesc back to \XXX and defines a new command, \yyyXXX, which
longdesc corresponds to the most recently loaded version of \XXX.
+depend savesym.ARCH
runfiles size=1
texmf-dist/tex/latex/savesym/savesym.sty
catalogue-version 1.1
@@ -64454,6 +73124,7 @@ longdesc makes the document far less attractive. Nevertheless, savetrees
longdesc is a simple way to save paper when printing draft copies of a
longdesc document. It can also be useful when trying to meet a tight
longdesc page-length requirement for a conference or journal submission.
+depend savetrees.ARCH
docfiles size=70
texmf-dist/doc/latex/savetrees/README details="Package README"
texmf-dist/doc/latex/savetrees/makethin.pl
@@ -64477,6 +73148,7 @@ longdesc A package to scale a document by sqrt(2) (or by \magstep{2}).
longdesc This is useful if you are preparing a document on, for example,
longdesc A5 paper and want to print on A4 paper to achieve a better
longdesc resolution.
+depend scale.ARCH
docfiles size=6
texmf-dist/doc/latex/scale/COPYING
texmf-dist/doc/latex/scale/README
@@ -64499,6 +73171,7 @@ longdesc or photos. It was designed for use with cave maps but can be
longdesc used for anything from showing a scalebar in kilometers for
longdesc topographic maps to a scalebar in micrometers for an electron
longdesc microscope image.
+depend scalebar.ARCH
docfiles size=17
texmf-dist/doc/latex/scalebar/README details="Package README"
texmf-dist/doc/latex/scalebar/scalebar_examples.pdf details="Package usage guide and examples"
@@ -64525,6 +73198,7 @@ longdesc are accurate to the minute — i.e., a 31-minute appointment
longdesc will have a box 1/30th longer than a 30-minute appointment. A
longdesc number of features are included to allow the user to customize
longdesc the output.
+depend schedule.ARCH
docfiles size=37
texmf-dist/doc/latex/schedule/example.pdf details="Example of use"
texmf-dist/doc/latex/schedule/example.tex
@@ -64548,6 +73222,7 @@ longdesc sufficient to typeset plain TeX or LaTeX documents in
longdesc PostScript or PDF.
depend collection-basic
depend collection-latex
+depend scheme-basic.ARCH
name scheme-context
category Scheme
@@ -64558,6 +73233,7 @@ longdesc sufficient to typeset ConTeXt documents in PostScript or PDF.
depend collection-context
depend collection-metapost
depend collection-xetex
+depend scheme-context.ARCH
name scheme-full
category Scheme
@@ -64647,6 +73323,7 @@ depend collection-science
depend collection-texinfo
depend collection-ttfutils
depend collection-xetex
+depend scheme-full.ARCH
name scheme-gust
category Scheme
@@ -64689,6 +73366,7 @@ depend collection-latexrecommended
depend collection-metapost
depend collection-psutils
depend collection-xetex
+depend scheme-gust.ARCH
name scheme-gutenberg
category Scheme
@@ -64721,6 +73399,7 @@ depend collection-plainextra
depend collection-pstricks
depend collection-psutils
depend collection-texinfo
+depend scheme-gutenberg.ARCH
name scheme-medium
category Scheme
@@ -64750,6 +73429,7 @@ depend collection-mathextra
depend collection-metapost
depend collection-texinfo
depend collection-xetex
+depend scheme-medium.ARCH
name scheme-minimal
category Scheme
@@ -64758,6 +73438,7 @@ shortdesc TeX Live minimal scheme
longdesc This is the minimal TeX Live scheme, with support for only
longdesc plain TeX. (No LaTeX macros.)
depend collection-basic
+depend scheme-minimal.ARCH
name scheme-omega
category Scheme
@@ -64800,6 +73481,7 @@ depend collection-langvietnamese
depend collection-latex
depend collection-omega
depend collection-texinfo
+depend scheme-omega.ARCH
name scheme-tetex
category Scheme
@@ -64879,6 +73561,7 @@ depend collection-omega
depend collection-pictures
depend collection-pstricks
depend collection-texinfo
+depend scheme-tetex.ARCH
name scheme-xml
category Scheme
@@ -64910,11 +73593,13 @@ depend collection-basic
depend collection-fontsrecommended
depend collection-latex
depend collection-omega
+depend scheme-xml.ARCH
name scientificpaper
category Package
revision 1299
shortdesc Format a scientific paper for journal publication.
+depend scientificpaper.ARCH
docfiles size=1
texmf-dist/doc/latex/scientificpaper/README
runfiles size=1
@@ -64940,6 +73625,7 @@ longdesc good ps-files from the dvi files. Also note that logos must
longdesc either be put in the current working directory or in the
longdesc directories of your LaTeX distribution. For some reason
longdesc graphicspath settings are ignored.
+depend sciposter.ARCH
docfiles size=176
texmf-dist/doc/latex/sciposter/README
texmf-dist/doc/latex/sciposter/sciposterexample/auto/sciposter-example.el
@@ -64992,6 +73678,7 @@ catalogue-license lppl
name sciwordconv
category Package
revision 1301
+depend sciwordconv.ARCH
docfiles size=1
texmf-dist/doc/latex/sciwordconv/README
srcfiles size=1
@@ -65005,6 +73692,7 @@ revision 2521
shortdesc A class file to typeset screenplays.
longdesc The class implements the format recommended by the Academy of
longdesc Motion Picture Arts and Sciences.
+depend screenplay.ARCH
docfiles size=52
texmf-dist/doc/latex/screenplay/COPYING
texmf-dist/doc/latex/screenplay/README details="Package README"
@@ -65029,6 +73717,7 @@ revision 2392
shortdesc Variant report and book styles.
longdesc A “jiffy” conversion to LaTeX2e of some old document
longdesc styles.
+depend script.ARCH
docfiles size=1
texmf-dist/doc/latex/script/script2e.txt
runfiles size=19
@@ -65054,6 +73743,7 @@ longdesc relations, and finally to have an easy access to various
longdesc mathematical symbols used in that theory, mostly with automatic
longdesc mathematics mode, so they work the same in formulae and in
longdesc text.
+depend sdrt.ARCH
docfiles size=61
texmf-dist/doc/latex/sdrt/README details="Readme"
texmf-dist/doc/latex/sdrt/sdrt-doc.pdf details="Package documentation"
@@ -65074,6 +73764,7 @@ longdesc around sections, subsections, and subsubsections, especially
longdesc for use in posters, etc. It was designed with the sciposter
longdesc class in mind, and certainly works with that class and with
longdesc derived classes.
+depend sectionbox.ARCH
docfiles size=99
texmf-dist/doc/latex/sectionbox/README details="Readme"
texmf-dist/doc/latex/sectionbox/example/000074Bpatspec.png
@@ -65105,6 +73796,7 @@ longdesc A LaTeX2e package to help change the style of any or all of
longdesc LaTeX's sectional headers in the article, book, or report
longdesc classes. Examples include the addition of rules above or below
longdesc a section title.
+depend sectsty.ARCH
docfiles size=57
texmf-dist/doc/latex/sectsty/sectsty.pdf details="Package documentation"
srcfiles size=23
@@ -65124,6 +73816,7 @@ shortdesc Help for writing programming language semantics.
longdesc Eases the typesetting of notation of semantics and compilers.
longdesc Includes T-diagrams, various derivation symbols and inference
longdesc trees.
+depend semantic.ARCH
docfiles size=96
texmf-dist/doc/latex/semantic/semantic.pdf details="Package documentation"
srcfiles size=30
@@ -65147,6 +73840,7 @@ revision 1306
shortdesc Semaphore alphabet font.
longdesc These MetaFont representations of semaphore are highly
longdesc schematic, but very clear.
+depend semaphor.ARCH
docfiles size=46
texmf-dist/doc/latex/semaphor/README details="Readme"
texmf-dist/doc/latex/semaphor/example.pdf details="Listing of semaphor letters"
@@ -65196,6 +73890,7 @@ longdesc such as prosper. In fact, seminar is not nowadays reckoned a
longdesc good basis for a presentation — users are advised to use more
longdesc recent classes such as powerdot or beamer, both of which are
longdesc tuned to 21st-century presentation styles.
+depend seminar.ARCH
docfiles size=101
texmf-dist/doc/latex/seminar/2up.doc
texmf-dist/doc/latex/seminar/read-me.2e details="Readme about use with LaTeX2e"
@@ -65238,6 +73933,7 @@ longdesc documents. That is, two sided documents, where all text is
longdesc output on right-hand pages—as in a one-sided documents—and
longdesc only special contents are output on left-hand pages on user
longdesc request, e.g., floating objects.
+depend semioneside.ARCH
docfiles size=40
texmf-dist/doc/latex/semioneside/README
texmf-dist/doc/latex/semioneside/example.tex
@@ -65265,6 +73961,7 @@ longdesc its argument splittable anywhere, and then leaves the TeX
longdesc paragraph-maker to do the splitting. While the package may
longdesc obviously be used to typeset DNA sequences, the user may
longdesc consider the dnaseq as a rather more powerful alternative.
+depend seqsplit.ARCH
docfiles size=33
texmf-dist/doc/latex/seqsplit/README
texmf-dist/doc/latex/seqsplit/seqsplit.pdf details="Package documentation"
@@ -65289,6 +73986,7 @@ longdesc onehalfspacing, and doublespacing. Alternatively the spacing
longdesc can be changed as required with the \singlespacing,
longdesc \onehalfspacing, and \doublespacing commands. Other size
longdesc spacings also available.
+depend setspace.ARCH
runfiles size=6
texmf-dist/tex/latex/setspace/setspace.sty
catalogue-version 6.7
@@ -65304,6 +74002,7 @@ longdesc A LaTeX package for generating a completed standard form 298
longdesc (Rev. 8-98) as prescribed by ANSI Std. Z39.18 for report
longdesc documentation as part of a document delivered, for instance, on
longdesc a U.S. government contract.
+depend sf298.ARCH
docfiles size=89
texmf-dist/doc/latex/sf298/sample298.pdf
texmf-dist/doc/latex/sf298/sample298.tex
@@ -65327,6 +74026,7 @@ longdesc The class is designed for typesetting science fiction and
longdesc fantasy manuscripts. Sffms now includes several options for
longdesc specific publishers as well as extensive documentation aimed at
longdesc new LaTeX users.
+depend sffms.ARCH
docfiles size=52
texmf-dist/doc/latex/sffms/README details="Readme"
texmf-dist/doc/latex/sffms/blind.tex
@@ -65351,6 +74051,7 @@ longdesc Defines some commands to draw signal flow graphs as used by
longdesc electrical and electronics engineers and graph theorists.
longdesc Requires fp and pstricks packages (and a relatively fast
longdesc machine...).
+depend sfg.ARCH
docfiles size=3
texmf-dist/doc/latex/sfg/Changes
texmf-dist/doc/latex/sfg/README
@@ -65369,6 +74070,7 @@ shortdesc Sans-serif mathematics.
longdesc sfmath is a simple package for sans serif maths in documents.
longdesc After including the package, all maths of the current document
longdesc is displayed with sans serif fonts.
+depend sfmath.ARCH
runfiles size=5
texmf-dist/tex/latex/sfmath/sfmath.sty
catalogue-version 0.8
@@ -65386,6 +74088,7 @@ longdesc &$3,0$ &$0,9$ \end{game} produces output with (a) boxes around
longdesc the payoffs, (b) payoff columns of equal width, and (c) payoffs
longdesc vertically centered within the boxes. Note that the game
longdesc environment will not work in the argument of another command.
+depend sgame.ARCH
docfiles size=25
texmf-dist/doc/latex/sgame/README
texmf-dist/doc/latex/sgame/sgame.pdf
@@ -65405,6 +74108,7 @@ shortdesc Shade the background of any box.
longdesc Two packages that shade the background of any box by device-
longdesc independent techniques (based on pixel shading). The two
longdesc packages implement alternative pixel positioning algorithms.
+depend shadbox.ARCH
runfiles size=2
texmf-dist/tex/latex/shadbox/shadbox.sty
texmf-dist/tex/latex/shadbox/shadbox1.sty
@@ -65416,6 +74120,7 @@ catalogue-license other
name shadethm
category Package
revision 1314
+depend shadethm.ARCH
docfiles size=1
texmf-dist/doc/latex/shadethm/1st_read.me
runfiles size=8
@@ -65440,6 +74145,7 @@ longdesc \heartpar{sometext...} inside your document. The tedium of
longdesc creating these polygon definitions may be alleviated by using
longdesc the shapepatch extension to transfig which will convert xfig
longdesc output to \shapepar polygon form.
+depend shapepar.ARCH
docfiles size=64
texmf-dist/doc/generic/shapepar/Canflagshape.def
texmf-dist/doc/generic/shapepar/README.shapepar details="Package README"
@@ -65463,6 +74169,7 @@ revision 1487
shortdesc Compact lists by running several items per line.
longdesc Provides four environments for typesetting lists of short items
longdesc which may be laid out horizontally to save space.
+depend shortlst.ARCH
docfiles size=9
texmf-dist/doc/latex/shortlst/shortlst.dvi
srcfiles size=9
@@ -65483,6 +74190,7 @@ longdesc A package to create another table of contents with a different
longdesc depth, useful in large documents where a detailed table of
longdesc contents should be accompanied by a shorter one, giving only a
longdesc general overview of the main topics in the document.
+depend shorttoc.ARCH
docfiles size=52
texmf-dist/doc/latex/shorttoc/00readme details="Package README"
texmf-dist/doc/latex/shorttoc/shorttoc.pdf details="Package documentation"
@@ -65504,6 +74212,7 @@ longdesc A package for LaTeX providing a number of commands for printing
longdesc the value of a TeX dimension. For example,
longdesc \tenthpt{\baselineskip} yields the current value of
longdesc \baselineskip rounded to the nearest tenth of a point.
+depend showdim.ARCH
runfiles size=1
texmf-dist/tex/latex/showdim/showdim.sty
catalogue-version
@@ -65517,6 +74226,7 @@ revision 4036
shortdesc Typesetting LaTeX source code.
longdesc This package provides a way to typeset LaTeX source code and
longdesc the related result in the same document.
+depend showexpl.ARCH
docfiles size=112
texmf-dist/doc/latex/showexpl/README details="README file"
texmf-dist/doc/latex/showexpl/result-picture.pdf
@@ -65544,6 +74254,7 @@ longdesc \label command is used. The package allows you to do the same
longdesc thing for other commands. The only one for which this is
longdesc obviously useful is the \cite command, but it's easy to do it
longdesc for others, such as the \ref or \begin commands.
+depend showlabels.ARCH
docfiles size=32
texmf-dist/doc/latex/showlabels/LICENCE
texmf-dist/doc/latex/showlabels/README details="Readme"
@@ -65568,6 +74279,7 @@ shortdesc Typeset captions sideways.
longdesc Defines environments called SCfigure and SCtable (analogous to
longdesc figure and table) to typeset captions sideways. Options include
longdesc outercaption, innercaption, leftcaption and rightcaption.
+depend sidecap.ARCH
docfiles size=47
texmf-dist/doc/latex/sidecap/README details="Readme"
texmf-dist/doc/latex/sidecap/sc-test-common.tex
@@ -65597,6 +74309,7 @@ longdesc This is a LaTeX class for typesetting stage plays, based on the
longdesc plari class written by Antti-Juhani Kaijanaho in 1998. It has
longdesc been updated and several formatting changes have been made to
longdesc it—most noticibly there are no longer orphans.
+depend sides.ARCH
docfiles size=15
texmf-dist/doc/latex/sides/README details="Readme"
texmf-dist/doc/latex/sides/sides-sample.pdf details="A (distressing) sample play"
@@ -65615,6 +74328,7 @@ shortdesc SIGGRAPH conference class.
longdesc Document class for formatting papers according to the
longdesc specifications for submission to the annual ACM Siggraph
longdesc conference.
+depend siggraph.ARCH
docfiles size=1
texmf-dist/doc/latex/siggraph/README details="Readme"
srcfiles size=12
@@ -65633,6 +74347,7 @@ revision 4184
shortdesc A simple class for writing curricula vitae.
longdesc A derivative of the cv class available to lyx users (renamed to
longdesc avoid the existing cv package).
+depend simplecv.ARCH
docfiles size=12
texmf-dist/doc/latex/simplecv/README details="Readme"
texmf-dist/doc/latex/simplecv/testcv.pdf details="Sample of use"
@@ -65651,6 +74366,7 @@ name simpsons
category Package
revision 101
shortdesc MetaFont source for Simpsons characters.
+depend simpsons.ARCH
runfiles size=13
texmf-dist/fonts/source/public/simpsons/bart.mf
texmf-dist/fonts/source/public/simpsons/burns.mf
@@ -65679,6 +74395,7 @@ longdesc Type 1 implementation of skak's fonts is available as package
longdesc skaknew; an alternative chess notational scheme is available in
longdesc package texmate, and a general mechanism for selecting chess
longdesc fonts is provided in chessfss.
+depend skak.ARCH
docfiles size=215
texmf-dist/doc/latex/skak/WC-2004-S-00007.tex
texmf-dist/doc/latex/skak/andreas_wilm_1.tex
@@ -65734,6 +74451,7 @@ catalogue-license lppl
name skaknew
category Package
revision 1626
+depend skaknew.ARCH
execute addMap SkakNew.map
docfiles size=150
texmf-dist/doc/latex/skaknew/README
@@ -65776,6 +74494,7 @@ shortdesc A font to draw a skull.
longdesc The font (defined in MetaFont) defines a single character, a
longdesc black solid skull. A package is supplied to make this character
longdesc available as a symbol in maths mode.
+depend skull.ARCH
srcfiles size=2
texmf-dist/source/latex/skull/skull.dtx
texmf-dist/source/latex/skull/skull.ins
@@ -65796,6 +74515,7 @@ longdesc font shapes, e.g., slanted or bold slanted for all fonts that
longdesc provide appropriate font shapes. (Note that a separate .fd file
longdesc is needed to define font shapes such as ‘scsl’ or
longdesc ‘scit’.)
+depend slantsc.ARCH
docfiles size=10
texmf-dist/doc/latex/slantsc/README details="Readme"
texmf-dist/doc/latex/slantsc/getversion.tex
@@ -65821,6 +74541,7 @@ shortdesc Dual headings in tabular columns.
longdesc The package defines commands to produce tabular cells with
longdesc diagonal lines in them, with text above and below the line to
longdesc label the column and row that the cell is in.
+depend slashbox.ARCH
docfiles size=3
texmf-dist/doc/latex/slashbox/slashbox.dvi
texmf-dist/doc/latex/slashbox/slashbox.tex
@@ -65839,6 +74560,7 @@ longdesc A class package for the easy production of a slide collection
longdesc with annotations. Builds on the report style (or variants);
longdesc document structure is based on chapters, with the slides
longdesc themselves represented by sections.
+depend slidenotes.ARCH
srcfiles size=14
texmf-dist/source/latex/slidenotes/slidenotes.dtx
texmf-dist/source/latex/slidenotes/slidenotes.ins
@@ -65860,6 +74582,7 @@ longdesc The package provides a means of creating presentations in
longdesc MetaPost, without intervention from other utilities (except a
longdesc distiller). Such an arrangement has its advantages (though
longdesc there are disadvantages too).
+depend slideshow.ARCH
docfiles size=42
texmf-dist/doc/metapost/slideshow/slideshow.txt
texmf-dist/doc/metapost/slideshow/sshowex.pdf
@@ -65885,6 +74608,7 @@ shortdesc Create listoffigures etc. in a single chapter.
longdesc The package allows you to create a list of figures and list of
longdesc tables in a chapter named ‘List’ that contains separate
longdesc sections for each list of figures, tables, etc.
+depend smalltableof.ARCH
docfiles size=1
texmf-dist/doc/latex/smalltableof/README details="Readme"
runfiles size=1
@@ -65907,6 +74631,7 @@ longdesc the user has selected); these commands display something only
longdesc if the value of the [name] counter is changed from when the
longdesc label was set. Many commands are provided to serve as a macro
longdesc programming environment for using the extended labels.
+depend smartref.ARCH
docfiles size=2
texmf-dist/doc/latex/smartref/readme.txt details="Readme and command details"
runfiles size=3
@@ -65931,6 +74656,7 @@ longdesc alttitle, altkeywords); if necessary, use of babel (option
longdesc frenchb) and deactivation of some features of frenchb. Includes
longdesc smfart.cls, smfbook.cls, smfplain.bst, smfalpha.bst, amongst
longdesc others.
+depend smflatex.ARCH
docfiles size=35
texmf-dist/doc/latex/smflatex/ALIRE details="Readme" language="fr"
texmf-dist/doc/latex/smflatex/README details="Readme"
@@ -65967,6 +74693,7 @@ longdesc LaTeX document on hand and consistently reproduce an identical
longdesc DVI file from it, on the fly; or for someone wanting to shield
longdesc a document during the final stages of its production cycle from
longdesc unexpected side effects of routine upgrades to the TeX system.
+depend snapshot.ARCH
docfiles size=30
texmf-dist/doc/latex/snapshot/snapshot.pdf
srcfiles size=9
@@ -65992,6 +74719,7 @@ longdesc The package will also print a table of contents, an index
longdesc sorted by title and first line, and an index sorted by key, or
longdesc by artist/composer. The package attempts to handle songs in
longdesc multiple keys, as well as songs in multiple languages.
+depend songbook.ARCH
docfiles size=326
texmf-dist/doc/latex/songbook/LesserGPL.txt
texmf-dist/doc/latex/songbook/README details="Readme"
@@ -66042,6 +74770,7 @@ longdesc This bundle contains several bibliography styles for separating
longdesc a document's references by the first letter of the first
longdesc author/editor in the bibliography entry. The styles are adapted
longdesc from standard ones or from natbib ones.
+depend sort-by-letters.ARCH
docfiles size=1
texmf-dist/doc/latex/sort-by-letters/README
runfiles size=48
@@ -66067,6 +74796,7 @@ longdesc the proper hyphens automatically. The package also provides a
longdesc mechanism that can be used to implement similar tasks, that
longdesc have to treat text syllable by syllable. This is shown in two
longdesc examples.
+depend soul.ARCH
docfiles size=96
texmf-dist/doc/latex/soul/soul.pdf details="Package documentation"
texmf-dist/doc/latex/soul/soul.txt
@@ -66092,6 +74822,7 @@ longdesc script is modelled after Lantsa-Devanagari, and it combines the
longdesc phonemic repertoire of Mongolian, Sanskrit, and Tibetan. While
longdesc the script is now little used, the symbol appears very widely
longdesc (including the national flag).
+depend soyombo.ARCH
docfiles size=11
texmf-dist/doc/latex/soyombo/soyo4tex.dvi
texmf-dist/doc/latex/soyombo/soyo4tex.tex
@@ -66119,6 +74850,7 @@ longdesc you can add sparkling rectangles for the median and special
longdesc sparkling dots in red or blue. The package requires pdflatex;
longdesc sparklines cannot appear in a dvi file. The sparklines package
longdesc uses pgf, and does not work with pictex.
+depend sparklines.ARCH
docfiles size=17
texmf-dist/doc/latex/sparklines/README
texmf-dist/doc/latex/sparklines/sparklines.pdf
@@ -66135,6 +74867,7 @@ category Package
revision 5439
shortdesc Support for formatting SPIE Proceedings manuscripts.
longdesc A class and a BibTeX style are provided.
+depend spie.ARCH
docfiles size=44
texmf-dist/doc/latex/spie/README details="Readme"
texmf-dist/doc/latex/spie/article.pdf details="Template and guidelines for authors"
@@ -66159,6 +74892,7 @@ longdesc the macros can produce a closed or a relaxed spline joining
longdesc them. Given a list of function values y_j at x_j, the result
longdesc would define the graph of a cubic spline interpolating function
longdesc y=f(x), which is either periodic or relaxed.
+depend splines.ARCH
docfiles size=27
texmf-dist/doc/metapost/splines/README details="Package README"
texmf-dist/doc/metapost/splines/splines.pdf details="Package documentation"
@@ -66180,6 +74914,7 @@ shortdesc Split and reorder your bibliography.
longdesc This package enables you to split a bibliography into several
longdesc categories and subcategories. It does not depend on BibTeX: any
longdesc bibliography may be split and reordered.
+depend splitbib.ARCH
docfiles size=42
texmf-dist/doc/latex/splitbib/README
texmf-dist/doc/latex/splitbib/splitbib.pdf
@@ -66206,6 +74941,7 @@ longdesc may use even more than 16 indexes: splitidx outputs only a
longdesc single file \jobname.idx and the program splits that file into
longdesc several raw index files and calls your favorite index processor
longdesc for each of the files.
+depend splitindex.ARCH
docfiles size=88
texmf-dist/doc/latex/splitindex/README details="Readme"
texmf-dist/doc/latex/splitindex/install.sh
@@ -66239,6 +74975,7 @@ longdesc This package provides procedures for using spot colors in LaTeX
longdesc documents and the generated pdf files. Predefined templates for
longdesc PANTONE and HKS color spaces are included but new ones can
longdesc easily be defined.
+depend spotcolor.ARCH
docfiles size=126
texmf-dist/doc/latex/spotcolor/README details="Readme"
texmf-dist/doc/latex/spotcolor/readme.pdf details="Package documentation"
@@ -66260,6 +74997,7 @@ longdesc The ‘sprite’ format the package sets is very simple, and
longdesc may be viewed in a fixed-width font rather readily. The package
longdesc provides the means of typesetting these sprites at arbitrary
longdesc sizes.
+depend sprite.ARCH
docfiles size=1
texmf-dist/doc/latex/sprite/spriteuse.tex
runfiles size=1
@@ -66278,6 +75016,7 @@ longdesc allowing one to jump from the .dvi file to the .tex source and
longdesc back again (given a .dvi viewer that supports this, such as Yap
longdesc or xdvi version 22.38 or later). This was originally written by
longdesc Aleksander Simonic, the author of the WinEdt shell.
+depend srcltx.ARCH
docfiles size=33
texmf-dist/doc/latex/srcltx/README details="Package Readme"
texmf-dist/doc/latex/srcltx/srcltx.pdf details="Package documentation"
@@ -66304,6 +75043,7 @@ longdesc structures with a large enough TeX and given enough time. Its
longdesc geometric commands are based on a turtle graphics model, and
longdesc control structures such as loops and conditionals are
longdesc available.
+depend sseq.ARCH
docfiles size=21
texmf-dist/doc/latex/sseq/sseq.pdf
srcfiles size=11
@@ -66324,6 +75064,7 @@ longdesc LaTeX package and font definition file to access the `cmssq'
longdesc fonts, i.e. Computer Modern Sans Serif Quotation Style. The
longdesc LaTeX package also defines a chapterquotes environment as an
longdesc example application.
+depend ssqquote.ARCH
docfiles size=1
texmf-dist/doc/latex/ssqquote/ssqquote.readme
srcfiles size=7
@@ -66348,6 +75089,7 @@ longdesc stacks independently of TeX's own stack. As an example of how
longdesc the stacks might be used, the documentation offers a small
longdesc "relinput" package that implements the backbone of the import
longdesc package.
+depend stack.ARCH
srcfiles size=4
texmf-dist/source/latex/stack/stack.dtx
texmf-dist/source/latex/stack/stack.ins
@@ -66365,6 +75107,7 @@ revision 1345
shortdesc A LaTeX class for stage plays
longdesc Stage.cls is a LaTeX class for creating plays of any length in
longdesc a standard manuscript format for production and submission.
+depend stage.ARCH
docfiles size=26
texmf-dist/doc/latex/stage/README details="Package README"
texmf-dist/doc/latex/stage/stage-documentation.pdf details="Package documentation"
@@ -66383,6 +75126,7 @@ longdesc A TeX format designed to help students write short reports and
longdesc essays. It provides the user with a suitable set of commands
longdesc for such a task. It is also more robust than plain TeX and
longdesc LaTeX.
+depend startex.ARCH
docfiles size=182
texmf-dist/doc/startex/base/guide.pdf details="Beginner's guide"
texmf-dist/doc/startex/base/ideas.pdf details="TUG'96 paper"
@@ -66414,6 +75158,7 @@ shortdesc Store statistics of a document.
longdesc The package counts the numbers of pages per chapter, and stores
longdesc the results in a separate file; the format of the file is
longdesc selectable.
+depend statistik.ARCH
docfiles size=13
texmf-dist/doc/latex/statistik/sta_cvs.dvi
texmf-dist/doc/latex/statistik/sta_cvs.tex
@@ -66448,6 +75193,7 @@ longdesc The stdclsdv package is designed for package writers who need
longdesc to know what sectioning divsions are provided by the document's
longdesc class. It also provides a version of \CheckCommand that sets a
longdesc flag rather than printing a warning.
+depend stdclsdv.ARCH
docfiles size=60
texmf-dist/doc/latex/stdclsdv/README details="Readme"
texmf-dist/doc/latex/stdclsdv/stdclsdv.pdf details="Package documentation"
@@ -66471,6 +75217,7 @@ longdesc fixed number of lines and characters per line. This package
longdesc produces pages with n lines of at most m characters each. For
longdesc instance the German "Normseite": 60 lines of 30 characters
longdesc each.
+depend stdpage.ARCH
docfiles size=31
texmf-dist/doc/latex/stdpage/README details="Package README"
texmf-dist/doc/latex/stdpage/stdpage-test.tex
@@ -66505,6 +75252,7 @@ longdesc options to typeset documents in Afrikaans or in English.
longdesc Additional packages are provided for bibliographic matter, note
longdesc title pages, lists of symbols, as well as various graphic files
longdesc for logos.
+depend stellenbosch.ARCH
docfiles size=402
texmf-dist/doc/latex/stellenbosch/CHANGELOG
texmf-dist/doc/latex/stellenbosch/README details="Bundle README" language="en"
@@ -66590,6 +75338,7 @@ longdesc but Adobe Type 1 versions are also now available. Macro support
longdesc is provided for use under LaTeX; the package supports the
longdesc "only" option (provided by the somedefs package) to restrict
longdesc what is loaded, for those who don't need the whole font.
+depend stmaryrd.ARCH
execute addMixedMap stmaryrd.map
docfiles size=4
texmf-dist/doc/fonts/stmaryrd/README details="Original README:"
@@ -66651,6 +75400,7 @@ longdesc The package provides the most important elements of a sructured
longdesc box chart, including processing blocks, loops, mapping
longdesc conventions for alternatives, etc. Diagrams are drawn using the
longdesc picture environment (using pict2e for preference).
+depend struktex.ARCH
docfiles size=170
texmf-dist/doc/latex/struktex/LIESMICH details="LIESMICH file" language="de"
texmf-dist/doc/latex/struktex/README details="README file" language="en"
@@ -66690,6 +75440,7 @@ longdesc end of twocolumn region, – switching between one- and two-
longdesc column anywhere, – getting more mileage from \marginpar, –
longdesc simulating the effect of "midfloats", – create a bounding
longdesc box, – a package to manipulate numerical lists and arrays.
+depend sttools.ARCH
docfiles size=70
texmf-dist/doc/latex/sttools/index.html
texmf-dist/doc/latex/sttools/presfull.pdf
@@ -66717,6 +75468,7 @@ longdesc by Donald Arseneau) to equalise the height of subscripts in
longdesc maths. The default behaviour is to place subscripts slightly
longdesc lower when there is a superscript as well, but this can look
longdesc odd in some situations.
+depend subdepth.ARCH
docfiles size=28
texmf-dist/doc/latex/subdepth/README details="Readme"
texmf-dist/doc/latex/subdepth/subdepth.pdf details="Package documentation"
@@ -66743,6 +75495,7 @@ longdesc Braams made them available for LaTeX2e. Note that this package
longdesc is not compatible with the package subeqnarray (written by
longdesc Johannes Braams), but it can be used together with the LaTeX
longdesc class options leqno and fleqn.
+depend subeqn.ARCH
docfiles size=25
texmf-dist/doc/latex/subeqn/manifest.txt
texmf-dist/doc/latex/subeqn/subeqn.pdf details="Package documentation"
@@ -66766,6 +75519,7 @@ longdesc environments, which behave like the equivalent eqnarray and
longdesc eqnarray* environments, except that the individual lines are
longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an
longdesc extra label command \slabel is provided.
+depend subeqnarray.ARCH
docfiles size=33
texmf-dist/doc/latex/subeqnarray/manifest.txt
texmf-dist/doc/latex/subeqnarray/subeqnarray.pdf
@@ -66801,6 +75555,7 @@ longdesc to the new package is that the user interface is keyword/value
longdesc driven and easier to use. To ease the transition from the
longdesc subfigure package it includes a configuration file (subfig.cfg)
longdesc which nearly emulates the subfigure package.
+depend subfig.ARCH
docfiles size=181
texmf-dist/doc/latex/subfig/README details="Readme"
texmf-dist/doc/latex/subfig/ltxdoc.cfg
@@ -66837,6 +75592,7 @@ longdesc is introduced which can be used inside a figure environment for
longdesc each subfigure. An optional first argument is used as the
longdesc caption for that subfigure. This package is now obsolescent:
longdesc new users should use subfig instead.
+depend subfigure.ARCH
docfiles size=106
texmf-dist/doc/latex/subfigure/README details="Readme"
texmf-dist/doc/latex/subfigure/ltxdoc.cfg
@@ -66867,6 +75623,7 @@ longdesc tables) similar to the subequations-environment of the amsmath
longdesc package. The subfloat package is not to be confused with the
longdesc subfig package which generates sub-figures within one normal
longdesc figure.
+depend subfloat.ARCH
docfiles size=4
texmf-dist/doc/latex/subfloat/ChangeLog
texmf-dist/doc/latex/subfloat/README details="Package Readme"
@@ -66892,6 +75649,7 @@ longdesc strings. Macros are provided to: – determine if one string is
longdesc a substring of another, – return the parts of a string before
longdesc or after a substring and – count the number of occurrences of
longdesc a substring.
+depend substr.ARCH
docfiles size=8
texmf-dist/doc/latex/substr/ChangeLog
texmf-dist/doc/latex/substr/README details="Readme"
@@ -66917,6 +75675,7 @@ longdesc contain the digits 1 to 9. More information, including help and
longdesc example puzzles, can be found at sudoku.org.uk. This site also
longdesc has blank sudoku grids (or worksheets), but you will not need
longdesc to print them from there if you have this package installed.
+depend sudoku.ARCH
docfiles size=19
texmf-dist/doc/latex/sudoku/CHANGES
texmf-dist/doc/latex/sudoku/README details="Readme"
@@ -66943,6 +75702,7 @@ longdesc the argument; and – createsudoku, which uses the random
longdesc package to generate a puzzle according to a bunch of parameters
longdesc that the user sets via macros. The bundle comes with a set of
longdesc ready-prepared puzzle files.
+depend sudokubundle.ARCH
docfiles size=97
texmf-dist/doc/latex/sudokubundle/README details="Readme"
texmf-dist/doc/latex/sudokubundle/somesudoku.tex
@@ -66968,6 +75728,7 @@ longdesc the proceedings of SAS(R) User group conferences and workshops.
longdesc The layout produced by the class is based on the description
longdesc contained in SUGI paper guidelines, published by SAS Institute:
longdesc (2006).
+depend sugconf.ARCH
docfiles size=33
texmf-dist/doc/latex/sugconf/README
texmf-dist/doc/latex/sugconf/SUGI-paper-example.txt
@@ -66991,6 +75752,7 @@ shortdesc A multi-page tables package.
longdesc Generally longtable is a little easier to use and more
longdesc flexible, but supertabular has its place, since it will work in
longdesc a few situations where longtable won't.
+depend supertabular.ARCH
docfiles size=45
texmf-dist/doc/latex/supertabular/CATALOG
texmf-dist/doc/latex/supertabular/ChangeLog
@@ -67013,6 +75775,7 @@ revision 2955
shortdesc Define SVG named colours.
longdesc The package defines the W3C Scalable Vector Graphics (SVG)
longdesc colour names for use with both the color and PSTricks packages.
+depend svgcolor.ARCH
docfiles size=1
texmf-dist/doc/latex/svgcolor/README details="Readme"
runfiles size=4
@@ -67031,6 +75794,7 @@ longdesc Subversion keywords. It is approximately an equivalent to the
longdesc rcs package, but for Subversion rather than CVS. Details of
longdesc Subversion (a replacement for CVS) is available from the
longdesc project’s home site.
+depend svn.ARCH
docfiles size=112
texmf-dist/doc/latex/svn/README details="Package README"
texmf-dist/doc/latex/svn/svn.pdf details="Package documentation"
@@ -67053,6 +75817,7 @@ longdesc This package lets you typeset keywords of the version control
longdesc system Subversion inside your LaTeX files anywhere you like.
longdesc Unlike the otherwise similar package svn the use of multiple
longdesc files for one LaTeX document is well supported.
+depend svn-multi.ARCH
docfiles size=83
texmf-dist/doc/latex/svn-multi/README details="Readme"
texmf-dist/doc/latex/svn-multi/example.pdf details="Example output"
@@ -67074,6 +75839,7 @@ catalogue-license lppl
name svninfo
category Package
revision 4175
+depend svninfo.ARCH
docfiles size=40
texmf-dist/doc/latex/svninfo/README
texmf-dist/doc/latex/svninfo/svninfo.init
@@ -67095,6 +75861,7 @@ longdesc bibliography styles, and of the style plainnat. The styles
longdesc should be funtionally equivalent to the corresponding original
longdesc styles, apart from the Swedish translations. The styles do not
longdesc implement Swedish collation.
+depend swebib.ARCH
docfiles size=1
texmf-dist/doc/latex/swebib/README details="Readme"
runfiles size=27
@@ -67111,6 +75878,7 @@ catalogue-license lppl1.2
name swimgraf
category Package
revision 1362
+depend swimgraf.ARCH
docfiles size=35
texmf-dist/doc/latex/swimgraf/100br1.pdf
texmf-dist/doc/latex/swimgraf/100br2.pdf
@@ -67153,6 +75921,7 @@ runfiles size=13
name symbol
category Package
revision 1364
+depend symbol.ARCH
runfiles size=27
texmf-dist/dvips/symbol/config.usy
texmf-dist/fonts/afm/adobe/symbol/psyb.afm
@@ -67177,6 +75946,7 @@ longdesc will enable you to draw syntactic proofs easily (inspired by
longdesc the Gamut books). Very few commands are needed, however fine
longdesc tuning of the various parameters (dimensions) can still be
longdesc achieved through “key=value” pairs.
+depend synproof.ARCH
docfiles size=21
texmf-dist/doc/latex/synproof/README details="Readme"
texmf-dist/doc/latex/synproof/synproof-doc.pdf details="Package documentation"
@@ -67195,6 +75965,7 @@ shortdesc Creation of syntax diagrams.
longdesc Create syntax diagrams using special environments and commands
longdesc to represent the diagram structure. Includes documentation in
longdesc german.
+depend syntax.ARCH
docfiles size=35
texmf-dist/doc/latex/syntax/README details="Package README" language="de"
texmf-dist/doc/latex/syntax/syntaxintro.pdf details="Introduction to the package" language="de"
@@ -67216,6 +75987,7 @@ longdesc This package adds support for for traces in trees created using
longdesc either the synttree or the qtree package. The package provides
longdesc two commands (\traceLabel and \traceReference) to set and use a
longdesc trace.
+depend syntrace.ARCH
docfiles size=17
texmf-dist/doc/latex/syntrace/README
texmf-dist/doc/latex/syntrace/syntrace.pdf
@@ -67236,6 +76008,7 @@ shortdesc Typeset syntactic trees.
longdesc A package to typeset syntactic trees such as those used in
longdesc Chomsky's Generative grammar, based on a description of the
longdesc structure of the tree.
+depend synttree.ARCH
docfiles size=41
texmf-dist/doc/latex/synttree/README
texmf-dist/doc/latex/synttree/synttree.pdf
@@ -67259,6 +76032,7 @@ longdesc \special's. Therefore, it can be used with the most popular
longdesc drivers, including emTeX drivers, dviwin, xdvi and dvips, and
longdesc (using some code from ConTeXt) it may also be used with
longdesc PDFLaTeX.
+depend t-angles.ARCH
docfiles size=39
texmf-dist/doc/latex/t-angles/README details="Readme"
texmf-dist/doc/latex/t-angles/t-manual.pdf details="Package documentation"
@@ -67281,6 +76055,7 @@ longdesc formulae – the citehack package, for using Cyrillic (or
longdesc indeed any non-ascii) characters in citation keys; – support
longdesc for Cyrillic in BibTeX; –- support for Cyrillic in Makeindex;
longdesc and – various items of font support.
+depend t2.ARCH
execute BuildFormat cyramstex
execute BuildFormat cyrtex
execute BuildFormat cyrtexinfo
@@ -67342,6 +76117,7 @@ name tableaux
category Package
revision 2517
shortdesc Construct tables.
+depend tableaux.ARCH
docfiles size=66
texmf-dist/doc/latex/tableaux/exemples.ps
texmf-dist/doc/latex/tableaux/exemples.tex
@@ -67358,6 +76134,7 @@ catalogue-license unknown
name tabto-ltx
category Package
revision 1640
+depend tabto-ltx.ARCH
docfiles size=1
texmf-dist/doc/latex/tabto-ltx/tabto.txt
runfiles size=2
@@ -67374,6 +76151,7 @@ longdesc variable width columns (\raggedright, \centering, \raggedleft,
longdesc and normally justified). In contrast to tabularx's X columns,
longdesc the width of each column is weighted according to the natural
longdesc width of the widest cell in the column.
+depend tabulary.ARCH
docfiles size=38
texmf-dist/doc/latex/tabulary/README
texmf-dist/doc/latex/tabulary/tabulary.pdf details="Package documentation"
@@ -67394,6 +76172,7 @@ shortdesc Typesetting tables showing variations of functions.
longdesc This LaTeX package is meant to ease the typesetting of tables
longdesc showing variations of functions as they are used in France. The
longdesc documentation is in French.
+depend tabvar.ARCH
execute addMap tabvar.map
docfiles size=132
texmf-dist/doc/latex/tabvar/README details="Readme"
@@ -67442,6 +76221,7 @@ longdesc style definitions should be put in a separate sty file.
longdesc Currently the package comes with only one set of pre-defined
longdesc slide styles (greybars.sty). Contributions from people who are
longdesc artistically more gifted than the author are more than welcome!
+depend talk.ARCH
docfiles size=45
texmf-dist/doc/latex/talk/README details="Readme"
texmf-dist/doc/latex/talk/example.tex
@@ -67460,6 +76240,7 @@ catalogue-license lppl
name tamethebeast
category Documentation
revision 23
+depend tamethebeast.ARCH
docfiles size=368
texmf-doc/doc/english/tamethebeast/CHANGES
texmf-doc/doc/english/tamethebeast/Makefile
@@ -67486,6 +76267,7 @@ longdesc package allows shaded/coloured tables, diagonal rules, etc. The
longdesc package is supposed to work with both Plain and LaTeX. An AWK
longdesc converter from ASCII semigraphic tables to TAP notation is
longdesc included.
+depend tap.ARCH
docfiles size=24
texmf-dist/doc/generic/tap/0README.TAP
texmf-dist/doc/generic/tap/0tabdoc.inf
@@ -67530,6 +76312,7 @@ longdesc available as MetaFont source and in Adobe Type 1 format. The
longdesc character set contains all characters in the range 0–127 (as
longdesc in cmr10), accented characters used in the Czech, Slovak and
longdesc Polish languages.
+depend tapir.ARCH
docfiles size=16
texmf-dist/doc/latex/tapir/readme details="Readme"
texmf-dist/doc/latex/tapir/readme.pdf details="Package documentation"
@@ -67545,6 +76328,7 @@ catalogue-license gpl
name taupin
category Package
revision 1373
+depend taupin.ARCH
runfiles size=3
texmf-dist/tex/latex/taupin/smallcap.sty
texmf-dist/tex/latex/taupin/t1cmsc.fd
@@ -67553,6 +76337,7 @@ runfiles size=3
name tcldoc
category Package
revision 1374
+depend tcldoc.ARCH
docfiles size=1
texmf-dist/doc/latex/tcldoc/README.txt
srcfiles size=172
@@ -67587,6 +76372,7 @@ shortdesc The TeX Directory Structure standard.
longdesc Defines a structure for placement of TeX-related files on an
longdesc hierarchical file system, in a way that is well-defined, and is
longdesc readily implementable.
+depend tds.ARCH
docfiles size=130
texmf-doc/doc/english/tds/ChangeLog
texmf-doc/doc/english/tds/Makefile
@@ -67608,6 +76394,7 @@ name technics
category Package
revision 1487
shortdesc A package to format technical documents.
+depend technics.ARCH
docfiles size=5
texmf-dist/doc/latex/technics/technics.dvi
texmf-dist/doc/latex/technics/technics.tex
@@ -67627,6 +76414,7 @@ catalogue-license lppl
name template
category Package
revision 616
+depend template.ARCH
docfiles size=2
texmf-dist/doc/latex3/template/template-test.tex
texmf-dist/doc/latex3/template/tprestrict-test.tex
@@ -67650,6 +76438,7 @@ longdesc dinbrief; – vermerk.tex: a general form for taking down notes
longdesc on events in the office; and – diabetes.tex: a diary for the
longdesc basis-bolus insulin therapy of diabetes mellitus, using
longdesc scrartcl.cls from the KOMA-Script bundle.
+depend templates-fenn.ARCH
docfiles size=8
texmf-doc/doc/german/templates-fenn/diabetes.tex
texmf-doc/doc/german/templates-fenn/dinbrief.tex
@@ -67671,6 +76460,7 @@ longdesc A set of templates for using LaTeX packages that the author
longdesc uses, comprising: – Hausarbeit.tex: for students of the
longdesc Lehrstuhl Volkskunde an der Friedrich‐Schiller‐Universität
longdesc Jena; – Psycho-Dipl.tex: for diploma theses in psychology.
+depend templates-sommer.ARCH
docfiles size=14
texmf-doc/doc/german/templates-sommer/Hausarbeit.bib
texmf-doc/doc/german/templates-sommer/Hausarbeit.tex
@@ -67686,6 +76476,7 @@ catalogue-license lppl
name tengwarscript
category Package
revision 4054
+depend tengwarscript.ARCH
docfiles size=188
texmf-dist/doc/latex/tengwarscript/COPYING
texmf-dist/doc/latex/tengwarscript/README
@@ -67781,6 +76572,7 @@ longdesc the typesetting of tensors with mixed upper and lower indices
longdesc with spacing, also typset preposed indices. This is a complete
longdesc revision and extension of the original ‘tensor’ package by
longdesc Mike Piff.
+depend tensor.ARCH
docfiles size=28
texmf-dist/doc/latex/tensor/README details="Package README"
texmf-dist/doc/latex/tensor/tensor.pdf details="Package documentation"
@@ -67805,6 +76597,7 @@ longdesc derived from that of the fonts used in printers' shops in
longdesc Lispia. The package name honours the publisher B.G. Teubner
longdesc Verlaggesellschaft whose Greek text publications are of high
longdesc quality.
+depend teubner.ARCH
docfiles size=86
texmf-dist/doc/latex/teubner/teubner-doc.pdf details="Package documentation"
texmf-dist/doc/latex/teubner/teubner-doc.tex
@@ -67849,6 +76642,7 @@ longdesc glyphs). Each family is available in Adobe Type 1 and Open Type
longdesc formats, and LaTeX support (for use with a variety of
longdesc encodings) is provided. Vietnamese and Cyrillic characters were
longdesc added by Han The Thanh and Valek Filippov, respectively.
+depend tex-gyre.ARCH
execute addMap qag.map
execute addMap qbk.map
execute addMap qcr.map
@@ -68938,6 +77732,7 @@ shortdesc TeX to PostScript generic macros and add-ons.
longdesc TeX to PostScript generic macros and add-ons: transformations
longdesc of EPS files, prepress preparation, color separation, mirror,
longdesc etc.
+depend tex-ps.ARCH
docfiles size=94
texmf-dist/doc/generic/tex-ps/cmyk-hax/README
texmf-dist/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf
@@ -68970,6 +77765,7 @@ catalogue-license pd
name tex-refs
category Documentation
revision 23
+depend tex-refs.ARCH
docfiles size=154
texmf-doc/doc/english/tex-refs/README
texmf-doc/doc/english/tex-refs/tex-refs.css
@@ -69008,6 +77804,7 @@ srcfiles size=192
name tex-virtual-academy-pl
category Documentation
revision 3527
+depend tex-virtual-academy-pl.ARCH
docfiles size=831
texmf-doc/doc/polish/tex-virtual-academy-pl/TeX-pub.html
texmf-doc/doc/polish/tex-virtual-academy-pl/context/cont-ins.html
@@ -69475,6 +78272,7 @@ longdesc (La)TeX itself (with an extra macro package) to produce a non-
longdesc standard DVI file that it can then process. This technique
longdesc gives TeX4ht the robustness characteristic of restricted-syntax
longdesc systems such as hyperlatex and gellmu.
+depend tex4ht.ARCH
runfiles size=3639
texmf-dist/tex4ht/base/unix/tex4ht.env
texmf-dist/tex4ht/base/unix/xv4ht.cat
@@ -72265,6 +81063,7 @@ catalogue-license lppl
name texbytopic
category Documentation
revision 5126
+depend texbytopic.ARCH
docfiles size=559
texmf-doc/doc/english/texbytopic/README
texmf-doc/doc/english/texbytopic/TeXbyTopic.pdf
@@ -72287,6 +81086,7 @@ longdesc gsave/grestore mechanism in PostScript, drawing segments allow
longdesc for local changes to the scaling and line parameters. Using
longdesc TeX’s macro definition capability, new drawing commands can
longdesc be constructed from drawing segments.
+depend texdraw.ARCH
docfiles size=153
texmf-dist/doc/texdraw/getopt.c
texmf-dist/doc/texdraw/getopt.h
@@ -72325,6 +81125,7 @@ catalogue-license dfsg
name texilikecover
category Package
revision 4295
+depend texilikecover.ARCH
runfiles size=1
texmf-dist/tex/latex/texilikecover/texilikecover.sty
@@ -72340,6 +81141,7 @@ longdesc distribution offer online interactive use (with hypertext
longdesc linkages in some cases). Note that a developers’ snapshot of
longdesc the latest working version of the Texinfo macros may be found
longdesc in the Texinfo ‘latest’ package.
+depend texinfo.ARCH
runfiles size=82
texmf-dist/tex/texinfo/texinfo.ini
texmf-dist/tex/texinfo/texinfo.tex
@@ -72362,6 +81164,7 @@ catalogue-license gpl
name texlive-common
category Documentation
revision 11
+depend texlive-common.ARCH
srcfiles size=5
texmf-doc/source/general/texlive-common/examples/ex5.tex
texmf-doc/source/general/texlive-common/examples/ex6.tex
@@ -72372,6 +81175,7 @@ srcfiles size=5
name texlive-cz
category Documentation
revision 3797
+depend texlive-cz.ARCH
docfiles size=285
texmf-doc/doc/czechslovak/texlive-cz/cmsy9-43.png
texmf-doc/doc/czechslovak/texlive-cz/cmsy9-53.png
@@ -72389,6 +81193,7 @@ srcfiles size=45
name texlive-en
category Documentation
revision 5377
+depend texlive-en.ARCH
docfiles size=266
texmf-doc/doc/english/texlive-en/live.css
texmf-doc/doc/english/texlive-en/live.html
@@ -72425,6 +81230,7 @@ srcfiles size=234
name texlive-fr
category Documentation
revision 3795
+depend texlive-fr.ARCH
docfiles size=322
texmf-doc/doc/french/texlive-fr/live.css
texmf-doc/doc/french/texlive-fr/live.html
@@ -72440,6 +81246,7 @@ srcfiles size=46
name texlive-ge
category Documentation
revision 3818
+depend texlive-ge.ARCH
docfiles size=336
texmf-doc/doc/german/texlive-ge/live.css
texmf-doc/doc/german/texlive-ge/live.html
@@ -72455,6 +81262,7 @@ srcfiles size=54
name texlive-pl
category Documentation
revision 3900
+depend texlive-pl.ARCH
docfiles size=281
texmf-doc/doc/polish/texlive-pl/live.css
texmf-doc/doc/polish/texlive-pl/live.html
@@ -72470,6 +81278,7 @@ srcfiles size=51
name texlive-ru
category Documentation
revision 3752
+depend texlive-ru.ARCH
docfiles size=389
texmf-doc/doc/russian/texlive-ru/live.css
texmf-doc/doc/russian/texlive-ru/live.html
@@ -72484,6 +81293,7 @@ srcfiles size=40
name texlive-zh-cn
category Documentation
revision 3934
+depend texlive-zh-cn.ARCH
docfiles size=144
texmf-doc/doc/chinese/texlive-zh-cn/live.pdf
srcfiles size=40
@@ -72505,6 +81315,7 @@ longdesc Yen, Won and Naira are defined so as not to need TS1-encoded
longdesc fonts. Also defined are the C++ logo, with the ‘+’ signs
longdesc properly positioned, and the logo of the Vienna University
longdesc Business Administration Center (BWZ).
+depend texlogos.ARCH
runfiles size=2
texmf-dist/tex/latex/texlogos/texlogos.sty
catalogue-version 1.3.1
@@ -72515,6 +81326,7 @@ catalogue-license lppl
name texmate
category Package
revision 2181
+depend texmate.ARCH
docfiles size=82
texmf-dist/doc/latex/texmate/README
texmf-dist/doc/latex/texmate/texmate2manual.pdf
@@ -72538,6 +81350,7 @@ longdesc a complete environment in itself: it relies on an existing
longdesc class for preparing slides (such as foiltex or seminar) or
longdesc another package such as pdfslide.
depend tpslifonts
+depend texpower.ARCH
docfiles size=267
texmf-dist/doc/latex/texpower/00readme.txt
texmf-dist/doc/latex/texpower/01install.txt
@@ -72626,6 +81439,7 @@ longdesc of commands for handling shading colours, text styles, labels,
longdesc legends and even allows the user to define completely new
longdesc shading modes. TeXshade combines highest flexibility and the
longdesc habitual TeX output quality—with reasonable time expenditure.
+depend texshade.ARCH
docfiles size=213
texmf-dist/doc/latex/texshade/AQP1.phd
texmf-dist/doc/latex/texshade/AQP1.top
@@ -72671,6 +81485,7 @@ longdesc and listing computer code; Specialized macros for easily
longdesc constructing ruled tables. TeXsis was originally developed for
longdesc physicists, but others may also find it useful. It is
longdesc completely compatible with Plain TeX.
+depend texsis.ARCH
docfiles size=132
texmf-dist/doc/texsis/base/COPYING
texmf-dist/doc/texsis/base/Example.tex
@@ -72775,6 +81590,7 @@ longdesc argument, so to force uppercase of a section including an
longdesc environment, one might say:
longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}}
longdesc ...\NoCaseChange{\end{foo}}...}
+depend textcase.ARCH
docfiles size=43
texmf-dist/doc/latex/textcase/README details="Readme"
texmf-dist/doc/latex/textcase/textcase.pdf details="Package documentation"
@@ -72794,6 +81610,7 @@ revision 2382
shortdesc Fit text to a desired size.
longdesc Package to support fitting of text to a given width or height
longdesc by scaling the font. For example: \scaletowidth{3in}{This}.
+depend textfit.ARCH
docfiles size=4
texmf-dist/doc/latex/textfit/catalog
texmf-dist/doc/latex/textfit/makefile
@@ -72814,6 +81631,7 @@ category Package
revision 1487
shortdesc Merge text in TeX and LaTeX.
longdesc Useful, for example, in mail merge.
+depend textmerg.ARCH
docfiles size=7
texmf-dist/doc/generic/textmerg/results.dat
texmf-dist/doc/generic/textmerg/silly.dat
@@ -72840,6 +81658,7 @@ revision 1384
shortdesc Annotated membrane protein topology plots.
longdesc A LaTeX package for setting shaded and annotated membrane
longdesc protein topology plots and helical wheels.
+depend textopo.ARCH
docfiles size=121
texmf-dist/doc/latex/textopo/AQP1.SP
texmf-dist/doc/latex/textopo/AQP1.hmm
@@ -72870,6 +81689,7 @@ shortdesc Setting text along a path with MetaPost.
longdesc This MetaPost package provides macros to typeset text along a
longdesc free path with the help of LaTeX, thereby preserving kerning
longdesc and allowing for 8-bit input (accented characters).
+depend textpath.ARCH
docfiles size=77
texmf-dist/doc/metapost/textpath/CHANGES
texmf-dist/doc/metapost/textpath/README details="README file"
@@ -72893,6 +81713,7 @@ longdesc A package to facilitate placement of boxes at absolute
longdesc positions on the LaTeX page. There are several reasons why this
longdesc might be useful, an important one being to help the creation of
longdesc large-format conference posters.
+depend textpos.ARCH
docfiles size=44
texmf-dist/doc/latex/textpos/LICENCE
texmf-dist/doc/latex/textpos/README details="Package README"
@@ -72927,6 +81748,7 @@ revision 1806
shortdesc Little style to create a standard titlepage for diploma thesis
longdesc Yet another thesis titlepage style: support of Fachhochschule
longdesc Aachen (Standort Juelich)
+depend thesis-titlepage-fhac.ARCH
docfiles size=82
texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.eps
texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.pdf
@@ -72959,6 +81781,7 @@ category Package
revision 2382
shortdesc Thumb marks in documents.
longdesc Place thumb marks in books, manuals and reference maunals.
+depend thumb.ARCH
docfiles size=52
texmf-dist/doc/latex/thumb/README details="Package Readme"
texmf-dist/doc/latex/thumb/thumb.pdf details="Package documentation"
@@ -72982,6 +81805,7 @@ longdesc thumbnails which get represented in a TeX readable file that is
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=7
texmf-dist/doc/generic/thumbpdf/readme.txt
runfiles size=7
@@ -72999,6 +81823,7 @@ shortdesc Thesis template for Tsinghua University.
longdesc ThuThesis is a LaTeX thesis template package for Tsinghua
longdesc University in order to make it easy to write theses for either
longdesc bachelor's, master's or doctor's degree.
+depend thuthesis.ARCH
docfiles size=478
texmf-dist/doc/latex/thuthesis/Readme details="Readme"
texmf-dist/doc/latex/thuthesis/example/Makefile
@@ -73040,6 +81865,7 @@ longdesc labels for your files, stickers, pins and other stuff for your
longdesc office, conferences etc. All you need is a definition of your
longdesc ‘ticket’ included in a ticket definition file and the two
longdesc commands \ticketdefault and \ticket.
+depend ticket.ARCH
docfiles size=99
texmf-dist/doc/latex/ticket/README details="Package Readme"
texmf-dist/doc/latex/ticket/comment
@@ -73085,6 +81911,7 @@ longdesc The times package is now obsolete, replaced by the mathptmx
longdesc package, which supports Times Roman text and (mostly) matching
longdesc mathematics. The times package remains available, for
longdesc compatibility; both it and mathptmx are part of psnfss.
+depend times.ARCH
runfiles size=497
texmf-dist/dvips/times/config.utm
texmf-dist/fonts/afm/adobe/times/ptmb8a.afm
@@ -73337,6 +82164,7 @@ catalogue-license lppl
name timescyr
category Package
revision 90
+depend timescyr.ARCH
runfiles size=12
texmf-dist/fonts/tfm/monotype/timescyr/mntb7k.tfm
texmf-dist/fonts/tfm/monotype/timescyr/mntbo7k.tfm
@@ -73354,6 +82182,7 @@ runfiles size=12
name timesht
category Package
revision 1389
+depend timesht.ARCH
docfiles size=2
texmf-dist/doc/latex/timesht/README
texmf-dist/doc/latex/timesht/timesheet.tex
@@ -73366,6 +82195,7 @@ runfiles size=2
name timesnew
category Package
revision 90
+depend timesnew.ARCH
runfiles size=88
texmf-dist/fonts/tfm/ibm/timesnew/nntb7t.tfm
texmf-dist/fonts/tfm/ibm/timesnew/nntb8c.tfm
@@ -73459,6 +82289,7 @@ category Package
revision 1390
shortdesc Fonts and macro package for drawing timing diagrams.
longdesc The fonts are distributed as MetaFont source.
+depend timing.ARCH
docfiles size=10
texmf-dist/doc/fonts/timing/prozt1.tex
texmf-dist/doc/fonts/timing/read.me details="Readme" language="de"
@@ -73490,6 +82321,7 @@ longdesc typesetting. The encoding of these 8-bit fonts has been
longdesc registered as LaTeX standard encoding T3, and the set of
longdesc addendum symbols as encoding TS3. ‘Times-like’ Adobe Type 1
longdesc versions are provided for both the T3 and the TS3 fonts.
+depend tipa.ARCH
execute addMixedMap tipa.map
docfiles size=642
texmf-dist/doc/fonts/tipa/00README details="Readme"
@@ -73776,6 +82608,7 @@ longdesc command), a running title (\runningtitle), AMS subject
longdesc classifications (\amssubj), and an ‘author’s footnote’ as
longdesc footnotes to the title or first page of a document. Works with
longdesc any class for which the \thanks macro works (e.g., article).
+depend titlefoot.ARCH
runfiles size=3
texmf-dist/tex/latex/titlefoot/titlefoot.sty
catalogue-version
@@ -73793,6 +82626,7 @@ longdesc to change the font of all headings with a single command, also
longdesc providing simple one-step page styles. Also includes a package
longdesc to change the page styles when there are floats in a page. You
longdesc may assign headers/footers to individual floats, too.
+depend titlesec.ARCH
docfiles size=78
texmf-dist/doc/latex/titlesec/README details="Readme"
texmf-dist/doc/latex/titlesec/titlesec.pdf details="Package documentation"
@@ -73824,6 +82658,7 @@ longdesc \title, \author and \date information permanently available.
longdesc Multiple titles are allowed in a single document. New titling
longdesc elements can be added and a titlepage title can be centered on
longdesc a physical page.
+depend titling.ARCH
docfiles size=52
texmf-dist/doc/latex/titling/README details="Readme"
texmf-dist/doc/latex/titling/titling.pdf details="Package documentation"
@@ -73840,6 +82675,7 @@ catalogue-license lppl
name tlc2
category Documentation
revision 1487
+depend tlc2.ARCH
docfiles size=890
texmf-doc/doc/english/tlc2/1-3-1.ltx
texmf-doc/doc/english/tlc2/1-3-2.ltx2
@@ -74719,6 +83555,7 @@ longdesc Support for typesetting math in a style that suits the Adobe
longdesc Times text fonts. Commercial (Adobe type 1) versions of the HV-
longdesc Math fonts are available from Micropress; free bitmap versions
longdesc of the fonts from the Micropress fonts directories.
+depend tmmath.ARCH
docfiles size=1
texmf-dist/doc/latex/tmmath/tmmaths.txt
srcfiles size=5
@@ -74737,6 +83574,7 @@ revision 1396
shortdesc Add bibliography/index/contents to Table of Contents.
longdesc Automatically adds the bibliography and/or the index and/or the
longdesc contents, etc., to the Table of Contents listing.
+depend tocbibind.ARCH
docfiles size=50
texmf-dist/doc/latex/tocbibind/README details="Readme"
texmf-dist/doc/latex/tocbibind/tocbibind.pdf details="Package documentation"
@@ -74757,6 +83595,7 @@ shortdesc Control table of contents, figures, etc.
longdesc Provides control over the typography of the Table of Contents,
longdesc List of Figures and List of Tables, and the ability to create
longdesc new `List of ...'. The ToC \parskip can be changed.
+depend tocloft.ARCH
docfiles size=80
texmf-dist/doc/latex/tocloft/README details="Readme"
texmf-dist/doc/latex/tocloft/tocloft.pdf details="Package documentation"
@@ -74777,6 +83616,7 @@ shortdesc Section numbering and table of contents control.
longdesc Provides control over section numbering (without recourse to
longdesc starred sectional commands) and/or the entries in the Table of
longdesc Contents on a section by section basis.
+depend tocvsec2.ARCH
docfiles size=42
texmf-dist/doc/latex/tocvsec2/README details="Readme"
texmf-dist/doc/latex/tocvsec2/tocvsec2.pdf details="Package documentation"
@@ -74797,6 +83637,7 @@ shortdesc Make a to-do list for a document.
longdesc The package allows you to insert "to do" marks in your
longdesc document, to make lists of such items, and to cross-reference
longdesc to them.
+depend todo.ARCH
docfiles size=4
texmf-dist/doc/latex/todo/todo.dvi
srcfiles size=4
@@ -74821,6 +83662,7 @@ longdesc package option 'trim' causes leading and trailing space to be
longdesc removed from each token; with this option, the \TrimSpaces
longdesc command is defined, which removes leading and trailing spaces
longdesc from its argument.
+depend tokenizer.ARCH
docfiles size=22
texmf-dist/doc/latex/tokenizer/tokenizer.pdf
texmf-dist/doc/latex/tokenizer/tokenizer.tex
@@ -74841,6 +83683,7 @@ longdesc contains macros which support: implicit macros; fancy optional
longdesc arguments; loops over tokenlists and itemlists; searching and
longdesc splitting; controlled expansion; redefinition of macros; and
longdesc concatenated macro names; macros for text replacement.
+depend toolbox.ARCH
docfiles size=10
texmf-dist/doc/latex/toolbox/toolbox.tex
texmf-dist/doc/latex/toolbox/toolbox.txt
@@ -74864,6 +83707,7 @@ longdesc array, calc, dcolumn, delarray enumerate, fileerr, fontsmpl,
longdesc ftnright, hhline, indentfirst, layout, longtable, multicol,
longdesc rawfonts, showkeys, somedefs, theorem, tabularx, trace,
longdesc varioref, verbatim, xr, and xspace.
+depend tools.ARCH
docfiles size=938
texmf-dist/doc/latex/tools/afterpage.pdf
texmf-dist/doc/latex/tools/array.pdf
@@ -74970,6 +83814,7 @@ name topfloat
category Package
revision 1487
shortdesc Move floats to the top of the page.
+depend topfloat.ARCH
docfiles size=5
texmf-dist/doc/latex/topfloat/topfloat.dvi
texmf-dist/doc/latex/topfloat/topfloat.tex
@@ -74994,6 +83839,7 @@ longdesc of a specific university. Thanks to its language management,
longdesc the bundle is suited for multilanguage theses that are becoming
longdesc more and more frequent thanks to the double degree programs of
longdesc the European Community Socrates programs.
+depend toptesi.ARCH
docfiles size=236
texmf-dist/doc/latex/toptesi/README
texmf-dist/doc/latex/toptesi/logoINPG.eps
@@ -75063,6 +83909,7 @@ longdesc The package counts the actual pages in the document (as opposed
longdesc to reporting the number of the last page, as does lastpage).
longdesc The counter itself may be shipped out to the DVI file. The
longdesc package uses the everyshi package for its task.
+depend totpages.ARCH
docfiles size=52
texmf-dist/doc/latex/totpages/README details="Readme"
texmf-dist/doc/latex/totpages/totexmpl.tex
@@ -75096,6 +83943,7 @@ longdesc modern sans serif, computer modern bright, or concrete roman
longdesc are available, in addition to math fonts from computer modern
longdesc math, computer modern bright math, or Euler fonts. This package
longdesc is part of the TeXPower bundle.
+depend tpslifonts.ARCH
docfiles size=19
texmf-dist/doc/latex/tpslifonts/00readme.txt
texmf-dist/doc/latex/tpslifonts/0install.txt
@@ -75121,6 +83969,7 @@ longdesc \fittrack{<length>}{<string>} (make <string> fit into width
longdesc <length>, which may be smaller than the original width) and
longdesc \ratiotrack{<ratio>}{<string>} (as \fittrack, with <length>
longdesc replaced by <ratio> of the natural length of <string>).
+depend tracking.ARCH
runfiles size=1
texmf-dist/tex/latex/tracking/tracking.sty
catalogue-version
@@ -75138,6 +83987,7 @@ longdesc together with macros to access the fonts. Many typographers
longdesc think these rank first among the Roman’s artistic legacy. The
longdesc font is uppercase letters together with some punctuation and
longdesc analphabetics; no lowercase or digits.
+depend trajan.ARCH
execute addMixedMap trajan.map
docfiles size=57
texmf-dist/doc/latex/trajan/README details="Readme"
@@ -75173,6 +84023,7 @@ longdesc so output can only be generated by use of dvips. The package
longdesc lingmacros.sty defines a few macros for linguists:
longdesc \enumsentence for enumerating sentence examples, simple
longdesc tabular-based non-connected tree macros, and gloss macros.
+depend tree-dvips.ARCH
docfiles size=16
texmf-dist/doc/latex/tree-dvips/lingmacros-manual.dvi
texmf-dist/doc/latex/tree-dvips/lingmacros-manual.tex
@@ -75195,6 +84046,7 @@ catalogue-license unknown
name treetex
category Package
revision 1487
+depend treetex.ARCH
docfiles size=78
texmf-dist/doc/plain/treetex/epodd.bbl
texmf-dist/doc/plain/treetex/epodd.dvi
@@ -75214,6 +84066,7 @@ revision 2382
shortdesc Typeset transform signs.
longdesc A package for typesetting various transformation signs for
longdesc Laplace transforms, Fourier transforms and others.
+depend trfsigns.ARCH
docfiles size=59
texmf-dist/doc/latex/trfsigns/COPYING
texmf-dist/doc/latex/trfsigns/README details="Package Readme"
@@ -75239,6 +84092,7 @@ longdesc float types in LaTeX. A single command sets up a new float in
longdesc the same style as the LaTeX kernel figure and table float
longdesc types. The package works with memoir as well as the standard
longdesc classes.
+depend trivfloat.ARCH
docfiles size=32
texmf-dist/doc/latex/trivfloat/README details="Readme"
texmf-dist/doc/latex/trivfloat/trivfloat.pdf details="Package documentation"
@@ -75260,6 +84114,7 @@ longdesc The bundle provides MetaFont sources for a small font used for
longdesc (e.g.) Laplace transformations, together with a LaTeX .fd file
longdesc and a package providing commands for the symbols’ use in
longdesc mathematics.
+depend trsym.ARCH
docfiles size=2
texmf-dist/doc/latex/trsym/README details="Readme"
texmf-dist/doc/latex/trsym/manifest.txt
@@ -75282,6 +84137,7 @@ catalogue-license lppl1.2
name truetype
category Documentation
revision 23
+depend truetype.ARCH
docfiles size=163
texmf-doc/doc/english/truetype/Makefile
texmf-doc/doc/english/truetype/config.vagrounded
@@ -75310,6 +84166,7 @@ longdesc Provides both ltugboat.cls (for ordinary issues of the journal)
longdesc and ltugproc.cls (for issues that are proceedings of TUG
longdesc meetings). The distribution also includes a BibTeX style
longdesc appropriate for use with the classes’ “harvard” option.
+depend tugboat.ARCH
docfiles size=140
texmf-dist/doc/latex/tugboat/README
texmf-dist/doc/latex/tugboat/ltubguid.ltx
@@ -75338,6 +84195,7 @@ shortdesc Plain TeX macros for TUGboat.
longdesc The macros defined in this directory (in files tugboat.sty and
longdesc tugboat.cmn) are used in papers written in Plain TeX for
longdesc publication in TUGboat.
+depend tugboat-plain.ARCH
docfiles size=39
texmf-dist/doc/plain/tugboat-plain/README
texmf-dist/doc/plain/tugboat-plain/tubguide.pdf
@@ -75358,6 +84216,7 @@ shortdesc Typeset the (logic) turnstile notation.
longdesc Among other uses, the turnstile sign is used by logicians for
longdesc denoting a consequence relation, related to a given logic,
longdesc between a collection of formulas and a derived formula.
+depend turnstile.ARCH
docfiles size=176
texmf-dist/doc/latex/turnstile/README details="Readme"
texmf-dist/doc/latex/turnstile/README.en
@@ -75383,6 +84242,7 @@ catalogue-license lppl
name twoup
category Package
revision 4001
+depend twoup.ARCH
docfiles size=52
texmf-dist/doc/latex/twoup/README
texmf-dist/doc/latex/twoup/twoup.pdf
@@ -75407,6 +84267,7 @@ longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set.
longdesc All the fonts are in Type 1 format (AFM and PFB files), and are
longdesc supported by TeX metrics (VF and TFM files) and macros for use
longdesc with LaTeX.
+depend txfonts.ARCH
execute addMap txfonts.map
docfiles size=238
texmf-dist/doc/fonts/txfonts/00patch1.txt
@@ -75745,6 +84606,7 @@ longdesc application than just those using scaleable versions of the
longdesc fonts. Note that the LaTeX distribution now contains a package
longdesc fix-cm, which performs the task of type1cm, as well as doing
longdesc the same job for T1- and TS1-encoded ec fonts.
+depend type1cm.ARCH
docfiles size=2
texmf-dist/doc/latex/type1cm/type1cm.txt
srcfiles size=4
@@ -75769,6 +84631,7 @@ longdesc Figure~\ref{figure:key}, all you need is
longdesc \figureref{figure:key}. The \label command is redefined to
longdesc record the type with the label defined, so that each type of
longdesc label has its own namespace.
+depend typedref.ARCH
docfiles size=2
texmf-dist/doc/latex/typedref/example.dvi
texmf-dist/doc/latex/typedref/example.tex
@@ -75789,6 +84652,7 @@ revision 621
shortdesc Create font samplers.
longdesc Creates a type specimen page with useful information about the
longdesc typeface.
+depend typespec.ARCH
docfiles size=161
texmf-dist/doc/plain/typespec/TypeSpec.pdf details="Package outline and some samplers"
texmf-dist/doc/plain/typespec/TypeSpec.tex
@@ -75815,6 +84679,7 @@ shortdesc Print a typographic grid.
longdesc Draws a grid on every page of the document; the grid divides
longdesc the page into columns, and may be used for fixing measurements
longdesc of layout.
+depend typogrid.ARCH
docfiles size=17
texmf-dist/doc/latex/typogrid/README details="Readme"
texmf-dist/doc/latex/typogrid/testtypogrid.tex
@@ -75841,6 +84706,7 @@ longdesc Moreover, there is a fully compatible alternative document
longdesc class ‘my-thesis’ for private ‘nice’ copies of the
longdesc dissertation, and the respective title pages are available as
longdesc separate packages to work with any document class.
+depend uaclasses.ARCH
docfiles size=53
texmf-dist/doc/latex/uaclasses/my-example.dvi
texmf-dist/doc/latex/uaclasses/ua-classes.dvi
@@ -75863,6 +84729,7 @@ catalogue-license unknown
name ucs
category Package
revision 1418
+depend ucs.ARCH
docfiles size=248
texmf-dist/doc/latex/ucs/FAQ
texmf-dist/doc/latex/ucs/INSTALL
@@ -76140,6 +85007,7 @@ longdesc A modified version of the standard LaTeX report style that is
longdesc accepted for use with University of California PhD
longdesc dissertations and Masters theses. A sample dissertation source
longdesc and bibliography are provided.
+depend ucthesis.ARCH
docfiles size=5
texmf-dist/doc/latex/ucthesis/README details="Readme and basic documentation"
texmf-dist/doc/latex/ucthesis/uctest.bib
@@ -76166,6 +85034,7 @@ longdesc of exercises and sub-exercises, – the number of the exercise
longdesc sheet is extracted automatically from the file name, – static
longdesc information about the lectures and the authors needs to
longdesc provided at one point only.
+depend uebungsblatt.ARCH
docfiles size=63
texmf-dist/doc/latex/uebungsblatt/README details="README" language="de"
texmf-dist/doc/latex/uebungsblatt/history.txt
@@ -76185,6 +85054,7 @@ revision 102
shortdesc Fonts for the Korean language.
longdesc Support for Korean documents written in Korean standard KSC
longdesc codes for LaTeX2e.
+depend uhc.ARCH
execute addMap umj.map
docfiles size=1
texmf-dist/doc/fonts/uhc/umj/README
@@ -79395,6 +88265,7 @@ category Package
revision 1420
shortdesc Time printing, in German.
longdesc A variety of printing formats are available.
+depend uhrzeit.ARCH
runfiles size=1
texmf-dist/tex/latex/uhrzeit/uhrzeit.sty
catalogue-version 0.2
@@ -79409,6 +88280,7 @@ shortdesc UIUC thesis class.
longdesc The class produces a document that conforms to the format
longdesc described in the University's Handbook for Graduate Students
longdesc Preparing to Deposit.
+depend uiucthesis.ARCH
docfiles size=69
texmf-dist/doc/latex/uiucthesis/README details="Readme"
texmf-dist/doc/latex/uiucthesis/thesis-ex.pdf details="Example of use"
@@ -79432,6 +88304,7 @@ shortdesc Hyphenation Patterns for Ukrainian.
longdesc A range of patterns, depending on the encoding of the output
longdesc font (including the standard T2A, so one can use the patterns
longdesc with free fonts).
+depend ukrhyph.ARCH
docfiles size=73
texmf-dist/doc/generic/ukrhyph/README details="Readme"
texmf-dist/doc/generic/ukrhyph/rules60.pdf details="Old hyphenation rules" language="uk"
@@ -79472,6 +88345,7 @@ longdesc Metafont definitions of the font, and LaTeX support. The font
longdesc contains a contradiction symbol at various sizes, and an odplus
longdesc symbol. Autotraced outline versions of the fonts are available
longdesc in ulsy-ps.
+depend ulsy.ARCH
docfiles size=19
texmf-dist/doc/latex/ulsy/README details="Readme" language="de"
texmf-dist/doc/latex/ulsy/ulsy.pdf
@@ -79494,6 +88368,7 @@ revision 1423
shortdesc University of Michigan Thesis LaTeX class.
longdesc A LaTeX2e class to create a University of Michigan dissertation
longdesc according to the Rackham dissertation handbook.
+depend umich-thesis.ARCH
docfiles size=1
texmf-dist/doc/latex/umich-thesis/README details="Readme"
runfiles size=5
@@ -79506,6 +88381,7 @@ catalogue-license lppl
name uml
category Package
revision 2817
+depend uml.ARCH
docfiles size=155
texmf-dist/doc/latex/uml/Changes
texmf-dist/doc/latex/uml/README
@@ -79527,6 +88403,7 @@ longdesc author considers the package mostly obsolete, since most of its
longdesc functions are taken by the inputenc package; however, inputenc
longdesc doesn't support the roman8 and atari encodings, so umlaute
longdesc remains the sole source of that support.
+depend umlaute.ARCH
docfiles size=31
texmf-dist/doc/latex/umlaute/cs_patch.uue
texmf-dist/doc/latex/umlaute/umlaute.pdf details="Package documentation"
@@ -79551,6 +88428,7 @@ revision 1487
shortdesc Underline text allowing line breaking.
longdesc Provides commands \Underline, \Midline and \Overline for
longdesc underlining, striking out, and overlining their text arguments.
+depend umoline.ARCH
docfiles size=7
texmf-dist/doc/latex/umoline/README details="Readme"
texmf-dist/doc/latex/umoline/umoline-man.dvi
@@ -79571,6 +88449,7 @@ revision 1426
shortdesc Package for fancy box frames.
longdesc The package includes both macros and Metafont descriptions of
longdesc fonts.
+depend umrand.ARCH
docfiles size=15
texmf-dist/doc/fonts/umrand/b.tex
texmf-dist/doc/fonts/umrand/readme.u1
@@ -79602,6 +88481,7 @@ shortdesc Dissertations at the University of Michigan.
longdesc The class loads book class, and makes minimal changes to it;
longdesc its coding aims to be as robust as possible, and as a result it
longdesc has few conflicts with potential add-on packages.
+depend umthesis.ARCH
docfiles size=118
texmf-dist/doc/latex/umthesis/PDP.tex
texmf-dist/doc/latex/umthesis/README details="Readme"
@@ -79629,6 +88509,7 @@ revision 2112
shortdesc Underlined running heads.
longdesc Defines two pagestyles that provide underlined page heads in
longdesc LaTeX.
+depend underlin.ARCH
docfiles size=21
texmf-dist/doc/latex/underlin/underlin.pdf details="Package documentation"
srcfiles size=2
@@ -79645,6 +88526,7 @@ name undertilde
category Package
revision 2343
shortdesc Typeset a tilde under one (or many) maths symbols.
+depend undertilde.ARCH
docfiles size=43
texmf-dist/doc/latex/undertilde/undertilde.pdf
srcfiles size=3
@@ -79664,6 +88546,7 @@ shortdesc Typeset units.
longdesc The package is provided as a bundle with the nicefrac package
longdesc for typing fractions. Units uses nicefrac in typesetting
longdesc physical units in a standard-looking sort of way.
+depend units.ARCH
docfiles size=60
texmf-dist/doc/latex/units/COPYING
texmf-dist/doc/latex/units/README details="Package README"
@@ -79690,6 +88573,7 @@ longdesc available but do not predefine any unit. This package tries to
longdesc comply with both requirements. It predefines common units,
longdesc defines an easy to use interface to define new units and
longdesc changes the output concerning to the surrounding font settings.
+depend unitsdef.ARCH
docfiles size=170
texmf-dist/doc/latex/unitsdef/README.1st details="Readme"
texmf-dist/doc/latex/unitsdef/defedpraef.tex
@@ -79717,6 +88601,7 @@ catalogue-license lppl
name univers
category Package
revision 90
+depend univers.ARCH
runfiles size=105
texmf-dist/fonts/tfm/cg/univers/cunb.tfm
texmf-dist/fonts/tfm/cg/univers/cunb8t.tfm
@@ -79799,6 +88684,7 @@ longdesc An implementation of the universal font by Herbert Bayer of the
longdesc Bauhaus school. The MetaFont sources of the fonts, and their
longdesc LaTeX support, are all supplied in a LaTeX documented source
longdesc (.dtx) file.
+depend universa.ARCH
docfiles size=5
texmf-dist/doc/fonts/universa/copyright.tex
srcfiles size=62
@@ -79910,6 +88796,7 @@ catalogue-license gpl
name upmethodology
category Package
revision 4732
+depend upmethodology.ARCH
docfiles size=130
texmf-dist/doc/latex/upmethodology/AUTHORS
texmf-dist/doc/latex/upmethodology/COPYING
@@ -79952,6 +88839,7 @@ longdesc other fonts in use, so long as this package is called
longdesc afterward) and modifies the behavior of verbatim, verbatim*,
longdesc verb, and verb* to print ` and ' the desired way. The package
longdesc does not affect \tt, \texttt, etc.
+depend upquote.ARCH
runfiles size=1
texmf-dist/tex/latex/upquote/upquote.sty
catalogue-version v1.1
@@ -79968,6 +88856,7 @@ longdesc 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script
longdesc urlbst can be used to add this support to an arbitrary .bst
longdesc file which has a reasonably 'conventional' structure. The
longdesc result is meant to be robust rather than pretty.
+depend urlbst.ARCH
docfiles size=1
texmf-dist/doc/latex/urlbst/README details="Package Readme"
srcfiles size=4
@@ -79992,6 +88881,7 @@ longdesc Some engineers need underlined or twice underlined variables
longdesc for which the usual \underline is too long. This package
longdesc provides a generic command for creating underlines of various
longdesc sizes and types.
+depend ushort.ARCH
docfiles size=56
texmf-dist/doc/latex/ushort/ushort.pdf
texmf-dist/doc/latex/ushort/ushort.tex
@@ -80009,6 +88899,7 @@ catalogue-license dfsg
name utf8mex
category Package
revision 617
+depend utf8mex.ARCH
docfiles size=12
texmf-dist/doc/mex/utf8mex/Makefile
texmf-dist/doc/mex/utf8mex/README
@@ -80034,6 +88925,7 @@ longdesc medium and bold weights) of the Utopia font family, which Adobe
longdesc donated to the X Consortium. Macro support, and maths fonts
longdesc that match the Utopia family, are provided by the Fourier and
longdesc the Mathdesign Utopia font packages.
+depend utopia.ARCH
docfiles size=3
texmf-dist/doc/fonts/utopia/LICENSE-utopia.txt
texmf-dist/doc/fonts/utopia/README-utopia.txt
@@ -80105,6 +88997,7 @@ name uwthesis
category Package
revision 1487
shortdesc University of Washington thesis class.
+depend uwthesis.ARCH
docfiles size=23
texmf-dist/doc/latex/uwthesis/README details="Readme"
texmf-dist/doc/latex/uwthesis/uwthesis.dvi
@@ -80120,6 +89013,7 @@ catalogue-license other-free
name vancouver
category Package
revision 4773
+depend vancouver.ARCH
docfiles size=27
texmf-dist/doc/bibtex/vancouver/README
texmf-dist/doc/bibtex/vancouver/vancouver.pdf
@@ -80135,6 +89029,7 @@ shortdesc Typeset tables of variations of functions.
longdesc The package provides macros for typesetting tables showing
longdesc variations of functions according to French usage. These macros
longdesc may be used by both LaTeX and plain TeX users.
+depend variations.ARCH
docfiles size=29
texmf-dist/doc/generic/variations/ALIRE details="Package ALIRE" language="fr"
texmf-dist/doc/generic/variations/COPYING
@@ -80158,6 +89053,7 @@ longdesc example, with it you can generate multiple index entries in
longdesc almost any form by a single command. The package is highly
longdesc customizable, and works with all versions of LaTeX and probably
longdesc most other TeX formats.
+depend varindex.ARCH
docfiles size=98
texmf-dist/doc/latex/varindex/varindex.pdf details="Package documentation"
texmf-dist/doc/latex/varindex/varindex.tex
@@ -80179,6 +89075,7 @@ shortdesc LaTeX macros for vectors.
longdesc Macros for more convenient representation of vectors in LaTeX,
longdesc both symbolically and as implicit or explicit rows/columns of
longdesc elements.
+depend vector.ARCH
docfiles size=45
texmf-dist/doc/latex/vector/README details="Readme"
texmf-dist/doc/latex/vector/vector.pdf details="Package documentation"
@@ -80196,6 +89093,7 @@ catalogue-license unknown
name velthuis
category Package
revision 1691
+depend velthuis.ARCH
execute addMixedMap dvng.map
docfiles size=190
texmf-dist/doc/generic/velthuis/README
@@ -80474,6 +89372,7 @@ category Package
revision 104
shortdesc Creating Venn diagrams with MetaPost.
longdesc MetaPost macros for venn diagrams.
+depend venn.ARCH
runfiles size=2
texmf-dist/metapost/venn/venn.mp
catalogue-version
@@ -80488,6 +89387,7 @@ shortdesc Aids for typesetting simple verse.
longdesc The package documentation discusses approaches to the problem;
longdesc the package is strong on layout, from simple alternate-line
longdesc indentation to the Mouse's tale from Alice in Wonderland.
+depend verse.ARCH
docfiles size=69
texmf-dist/doc/latex/verse/README details="Readme"
texmf-dist/doc/latex/verse/verse.pdf details="Package documentation"
@@ -80509,6 +89409,7 @@ longdesc Stephan Bellantoni’s version has provided preamble commands
longdesc for selecting environments to be included/excluded. This
longdesc package does the same, but corrects, improves, and extends it
longdesc in both implementation and function.
+depend versions.ARCH
runfiles size=4
texmf-dist/tex/latex/versions/versions.sty
catalogue-version 0.55
@@ -80520,6 +89421,7 @@ name vertex
category Package
revision 621
shortdesc Styles for economics working papers and journals.
+depend vertex.ARCH
docfiles size=3
texmf-dist/doc/plain/vertex/vertex.doc
srcfiles size=4
@@ -80558,6 +89460,7 @@ longdesc get consistent documents. The package sets, which is used by
longdesc vhistory, allows you to use sets containing text. You can use
longdesc the usual operations to create the union of sets or the
longdesc intersection of sets etc.
+depend vhistory.ARCH
docfiles size=199
texmf-dist/doc/latex/vhistory/CHANGES
texmf-dist/doc/latex/vhistory/README details="Readme"
@@ -80588,6 +89491,7 @@ catalogue-license lppl
name visualfaq
category Documentation
revision 1864
+depend visualfaq.ARCH
docfiles size=618
texmf-doc/doc/english/visualfaq/README
texmf-doc/doc/english/visualfaq/source/README.TXT
@@ -80617,6 +89521,7 @@ longdesc matter. Configuration is done by selecting a class option;
longdesc options for Computer Science and Singing, in both English and
longdesc Slovenian, are provided as examples. The class is said to be
longdesc based on vita209.
+depend vita.ARCH
docfiles size=1
texmf-dist/doc/latex/vita/READ.ME details="Readme"
runfiles size=13
@@ -80643,6 +89548,7 @@ longdesc on other packages and was designed with speed and size in mind.
longdesc Its user interface might not be very fancy, but it's fast,
longdesc small, and gets the job done. If you are looking for something
longdesc more elaborate try the geometry package.
+depend vmargin.ARCH
docfiles size=44
texmf-dist/doc/latex/vmargin/vmargin.pdf details="Package documentation"
srcfiles size=11
@@ -80668,6 +89574,7 @@ longdesc 1 format) of this bundle may alternatively use the lm fonts
longdesc bundle, for which map files are available to provide a
longdesc Vietnamese version.
depend plnfss
+depend vntex.ARCH
execute addMap arevvn.map
execute addMap chartervn.map
execute addMap cmbrightvn.map
@@ -81342,6 +90249,7 @@ longdesc "all-inclusive" version. It suppresses the part of the table of
longdesc contents that are not typeset, while counters, definitions,
longdesc index entries etc. are kept consistent throughout the input
longdesc file.
+depend volumes.ARCH
docfiles size=43
texmf-dist/doc/latex/volumes/README
texmf-dist/doc/latex/volumes/volumes.pdf
@@ -81359,6 +90267,7 @@ catalogue-license lppl
name voss-de
category Documentation
revision 16
+depend voss-de.ARCH
docfiles size=228
texmf-doc/doc/german/voss-de/InlineMath/Changes
texmf-doc/doc/german/voss-de/InlineMath/InlineMath.bib
@@ -81392,6 +90301,7 @@ longdesc via LaTeX/dvips, pdfTeX (version 0.14 or better), and
longdesc LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the
longdesc (pdf)TeX processor shoud be run with shell escapes enabled.
depend bin-vpe
+depend vpe.ARCH
docfiles size=5
texmf-dist/doc/latex/vpe/vpe.txt
runfiles size=5
@@ -81409,6 +90319,7 @@ longdesc A self-contained set of verbatim macros, providing both block
longdesc (\verbatim ... \endverbatim) and in-line (|...|) verbatim
longdesc constructs. Can also support line-numbering of verbatim blocks
longdesc and verbatim file inclusion.
+depend vrb.ARCH
docfiles size=1
texmf-dist/doc/generic/vrb/readme details="Readme"
runfiles size=2
@@ -81424,6 +90335,7 @@ revision 1487
shortdesc Add version number to a DVI file.
longdesc Defines a command which produces a version number in the dvi-
longdesc file when LaTeX is run.
+depend vrsion.ARCH
docfiles size=8
texmf-dist/doc/latex/vrsion/vrsion.dvi
srcfiles size=9
@@ -81440,6 +90352,7 @@ catalogue-license lppl
name vtex
category Package
revision 2004
+depend vtex.ARCH
runfiles size=14
texmf-dist/fonts/map/vtex/bera/bera.ali
texmf-dist/fonts/map/vtex/dictsym/dictsym.ali
@@ -81462,6 +90375,7 @@ longdesc compliant to the Adobe Glyph List, making ToUnicode CMaps in
longdesc PDF documents (created automatically by dvipdfmx) work
longdesc correctly. All font bundles now contain virtual Unicode
longdesc subfonts.
+depend wadalab.ARCH
execute addMap wadalab.map
docfiles size=2
texmf-dist/doc/fonts/wadalab/dmj/README
@@ -81836,6 +90750,7 @@ longdesc This collection contains files to add wallpapers (background
longdesc images) to LaTeX documents. It uses the eso-pic package, but
longdesc provides simple commands to include effects such as tiling. An
longdesc example is provided, which works under both LaTeX and pdfLaTeX.
+depend wallpaper.ARCH
docfiles size=317
texmf-dist/doc/latex/wallpaper/README details="Readme"
texmf-dist/doc/latex/wallpaper/example/TGTamber.png
@@ -81859,6 +90774,7 @@ longdesc warnings that are printed out at the very end of the logfile.
longdesc This is useful for warning such as ‘Rerun for this or that
longdesc reason’ or ‘This is a draft, change it before the final
longdesc run’.
+depend warning.ARCH
srcfiles size=1
texmf-dist/source/latex/warning/warning.xml
runfiles size=1
@@ -81880,6 +90796,7 @@ longdesc variations on this column type to be defined. Usage of the
longdesc package is superficially similar to that of dcolumn; however,
longdesc the alignment scheme is different, and the packages have
longdesc different, though overlapping, applications.
+depend warpcol.ARCH
docfiles size=42
texmf-dist/doc/latex/warpcol/readme.txt details="Package Readme"
texmf-dist/doc/latex/warpcol/warpcol.pdf details="Package documentation"
@@ -81901,6 +90818,7 @@ longdesc A bundle of packages that arise in the author's area of
longdesc interest: compliance of maths typesetting with ISO standards,
longdesc symbols that work in both maths and text modes, commas for both
longdesc decimal separator and maths and upright Greek letters in maths.
+depend was.ARCH
docfiles size=1
texmf-dist/doc/latex/was/readme.1st details="Readme"
srcfiles size=16
@@ -81929,6 +90847,7 @@ shortdesc A set of symbols.
longdesc The wasy fonts (Waldi’s symbol fonts) provide a useful range
longdesc of symbols in MetaFont format: they have been extended (and
longdesc converted to Adobe Type 1) under the name wasy2.
+depend wasy.ARCH
execute addMixedMap wasy.map
docfiles size=54
texmf-dist/doc/fonts/wasy/README
@@ -81991,6 +90910,7 @@ longdesc glyphs like male and female symbols and astronomical symbols,
longdesc as well as the complete lasy font set and other odds and ends.
longdesc The wasysym package implements an easy to use interface for
longdesc these symbols.
+depend wasysym.ARCH
docfiles size=27
texmf-dist/doc/latex/wasysym/wasysym.pdf
texmf-dist/doc/latex/wasysym/wasysym.upl
@@ -82013,6 +90933,7 @@ revision 23
shortdesc Brief Guide to LaTeX Tools for Web publishing.
longdesc The documentation constitutes an example of the package’s own
longdesc recommendations (being presented both in PDF and HTML).
+depend webguide.ARCH
docfiles size=103
texmf-doc/doc/english/webguide/README details="Package README"
texmf-doc/doc/english/webguide/expeg.6
@@ -82036,6 +90957,7 @@ longdesc The bundle provides two packages: – antree, which provides
longdesc macros for annotated node trees, and – toklist, which is an
longdesc implementation of Knuth's token list macros, to be found on
longdesc pp.378–379 of the TeXbook.
+depend williams.ARCH
runfiles size=3
texmf-dist/tex/latex/williams/antree.sty
texmf-dist/tex/latex/williams/toklist.sty
@@ -82051,6 +90973,7 @@ shortdesc Ridgeway's fonts.
longdesc MetaFont fonts for Old English, Indic languages in Roman
longdesc transliteration and Puget Salish (Lushootseed) and other Native
longdesc American languages.
+depend wnri.ARCH
docfiles size=2
texmf-dist/doc/latex/wnri/wnritest.dvi
texmf-dist/doc/latex/wnri/wnritest.tex
@@ -82155,6 +91078,7 @@ shortdesc Tamil to TeX converter.
longdesc MetaFont fonts, macros and a converter for transliterated text,
longdesc providing support for Tamil (focussing on Windows users’
longdesc needs).
+depend wntamil.ARCH
docfiles size=18
texmf-dist/doc/fonts/wntamil/readme.doc
texmf-dist/doc/fonts/wntamil/tamdict.tex
@@ -82184,6 +91108,7 @@ longdesc grep -c that can search a file for a particular string and
longdesc report the number of matching lines. An accompanying shell
longdesc script wordcount.sh contains more information in its comments.
depend bin-wordcount
+depend wordcount.ARCH
runfiles size=2
texmf-dist/tex/latex/wordcount/wordcount.tex
catalogue-version
@@ -82204,6 +91129,7 @@ longdesc resembles the usual “wordlike” output. The design of the
longdesc package draws on several discussions in the de.comp.text.tex
longdesc and comp.text.tex newsgroups that are referred to in the
longdesc manual.
+depend wordlike.ARCH
docfiles size=31
texmf-dist/doc/latex/wordlike/README
texmf-dist/doc/latex/wordlike/wordlike.pdf
@@ -82224,6 +91150,7 @@ shortdesc FAQ on converters between (La)TeX and PC-Textprocessors.
longdesc A compilation of information about means of converting between
longdesc LaTeX documents and other document preparation formats
longdesc including RTF, Word, and Wordperfect.
+depend wp-conv.ARCH
docfiles size=53
texmf-doc/doc/english/wp-conv/GPL.txt
texmf-doc/doc/english/wp-conv/html2LaTeX.txt
@@ -82275,6 +91202,7 @@ longdesc parbox or minipage, and in twocolumn format. Supports the float
longdesc package. Note that most of the package documentation is
longdesc contained in wrapfig.sty itself (after the \endinput command at
longdesc the end of the package proper).
+depend wrapfig.ARCH
docfiles size=2
texmf-dist/doc/latex/wrapfig/multiple-span.txt details="How to use wrapfig to span multiple columns"
runfiles size=7
@@ -82291,6 +91219,7 @@ shortdesc International Phonetic Alphabet fonts.
longdesc The package provides a 7-bit IPA font, as MetaFont source, and
longdesc macros for support under TeXt1 and LaTeX. The fonts (and
longdesc macros) are now largely superseded by the tipa fonts.
+depend wsuipa.ARCH
docfiles size=45
texmf-dist/doc/generic/wsuipa/ipaman.ps.gz
texmf-dist/doc/generic/wsuipa/latex209/ipalman.tex
@@ -82363,6 +91292,7 @@ longdesc The package provides extended versions of \newcommand and
longdesc related LaTeX commands, which allow easy and robust definition
longdesc of macros with many optional arguments, using a clear and
longdesc simple xkeyval-style syntax.
+depend xargs.ARCH
docfiles size=109
texmf-dist/doc/latex/xargs/README details="Readme"
texmf-dist/doc/latex/xargs/xargs-fr.pdf details="Package documentation (French)" language="fr"
@@ -82387,6 +91317,7 @@ longdesc commands, e.g., a uniform way to define commands taking
longdesc optional arguments, optional stars (and others), mandatory
longdesc arguments and more. template provides an interface for defining
longdesc generic functions using a key=val syntax.
+depend xbase.ARCH
docfiles size=208
texmf-dist/doc/latex/xbase/00readme.txt
texmf-dist/doc/latex/xbase/ldcsetup.pdf details="ldcsetup package documentation"
@@ -82413,6 +91344,7 @@ catalogue-license lppl
name xbmc
category Package
revision 101
+depend xbmc.ARCH
runfiles size=2
texmf-dist/fonts/source/public/xbmc/xbmc10.mf
texmf-dist/fonts/tfm/public/xbmc/xbmc10.tfm
@@ -82429,6 +91361,7 @@ longdesc models. Additionally, there is a command for alternating row
longdesc colors plus repeated non-aligned material (like horizontal
longdesc lines) in tables. Colors can be mixed like
longdesc \color{red!30!green!40!blue}.
+depend xcolor.ARCH
docfiles size=211
texmf-dist/doc/latex/xcolor/ChangeLog
texmf-dist/doc/latex/xcolor/README
@@ -82482,6 +91415,7 @@ longdesc of formatting via templates (nice interface, but requires
longdesc several experimental packages), whereas the docidx2e package
longdesc has traditional raw macro interfaces and works with standard
longdesc LaTeX2e.
+depend xdoc.ARCH
docfiles size=267
texmf-dist/doc/latex/xdoc/README details="Package Readme"
texmf-dist/doc/latex/xdoc/docindex.pdf details="docindex documentation"
@@ -82506,6 +91440,7 @@ catalogue-license lppl
name xetex
category Package
revision 3693
+depend xetex.ARCH
docfiles size=154
texmf-dist/doc/xetex/XeTeX-notes.pdf
texmf-dist/doc/xetex/XeTeX-notes.tex
@@ -82519,6 +91454,7 @@ runfiles size=53
name xetexconfig
category Package
revision 3604
+depend xetexconfig.ARCH
runfiles size=100
texmf-dist/tex/generic/xetexconfig/unicode-letters.tex
texmf-dist/tex/xelatex/xetexconfig/crop.cfg
@@ -82527,6 +91463,7 @@ runfiles size=100
name xetexref
category Documentation
revision 4659
+depend xetexref.ARCH
docfiles size=37
texmf-doc/doc/english/xetexref/README
texmf-doc/doc/english/xetexref/XeTeX-reference.ltx
@@ -82535,6 +91472,7 @@ docfiles size=37
name xetexurl
category Package
revision 2302
+depend xetexurl.ARCH
runfiles size=6
texmf-dist/tex/xelatex/xetexurl/url.sty
@@ -82546,6 +91484,7 @@ longdesc The package redefines the LaTeX internal \@for macro so that
longdesc the loop may be prematurely terminated. The action is akin to
longdesc the C/Java break statement, except that the loop does not
longdesc terminate until the end of the current iteration
+depend xfor.ARCH
docfiles size=30
texmf-dist/doc/latex/xfor/CHANGES
texmf-dist/doc/latex/xfor/README details="Readme"
@@ -82577,6 +91516,7 @@ longdesc typesetting ancient texts). The default option is monotonic.
longdesc The command \setlanguage{lang} to activate the hyphenation
longdesc patterns of the lang. This, however, can be done only if the
longdesc format file has not been built with the babel mechanism.
+depend xgreek.ARCH
docfiles size=1
texmf-dist/doc/xelatex/xgreek/README.1ST details="README file"
runfiles size=2
@@ -82597,6 +91537,7 @@ longdesc or equivalent to another. The package also enables use of
longdesc complex expressions as introduced by the package calc, together
longdesc with the ability of defining new commands to handle complex
longdesc tests. The package requires e-TeX features.
+depend xifthen.ARCH
docfiles size=131
texmf-dist/doc/latex/xifthen/README
texmf-dist/doc/latex/xifthen/xifthen.pdf
@@ -82611,6 +91552,7 @@ catalogue-license lppl
name xinitials
category Package
revision 616
+depend xinitials.ARCH
docfiles size=2
texmf-dist/doc/latex3/xinitials/xinitials-test.tex
srcfiles size=7
@@ -82631,6 +91573,7 @@ longdesc specify a prefix to the name of the macros it defines for keys,
longdesc and to define families of key definitions; these all help use
longdesc in documents where several packages define their own sets of
longdesc keys.
+depend xkeyval.ARCH
docfiles size=106
texmf-dist/doc/latex/xkeyval/README details="Package README"
texmf-dist/doc/latex/xkeyval/xkeyval.pdf
@@ -82665,6 +91608,7 @@ longdesc package also provides parameterised versions of the “bumpy
longdesc road” logos for TeX, LaTeX and XeTeX — these versions of
longdesc the logos are designed to respond to the font that is being
longdesc used for typesetting.
+depend xltxtra.ARCH
docfiles size=86
texmf-dist/doc/xelatex/xltxtra/README details="Readme"
texmf-dist/doc/xelatex/xltxtra/xltxtra.pdf details="Package documentation"
@@ -82684,6 +91628,7 @@ revision 627
shortdesc Typeset Shakespeare's plays as marked up by Bosak.
longdesc This is an xmltex package for typsetting the plays of
longdesc Shakespeare, as marked up by Jon Bosak.
+depend xmlplay.ARCH
docfiles size=1
texmf-dist/doc/xmltex/xmlplay/readme
srcfiles size=1
@@ -82707,6 +91652,7 @@ longdesc elemenets as they are encounted. Sample files for typesetting a
longdesc subset of TEI, MathML, are included. Element and Attribute
longdesc names, as well as character data, may use any characters
longdesc allowed in XML, using UTF-8 or a suitable 8-bit encoding.
+depend xmltex.ARCH
docfiles size=31
texmf-dist/doc/xmltex/base/englishutf16.xml
texmf-dist/doc/xmltex/base/englishutf8.xml
@@ -82756,6 +91702,7 @@ longdesc embed licensing information in the files he created. The
longdesc license the author chose is one of the Creative Commons
longdesc licenses, and their web-site offers this information in a valid
longdesc XML-file, suitable for direct inclusion.
+depend xmpincl.ARCH
docfiles size=32
texmf-dist/doc/latex/xmpincl/README details="Package Readme"
texmf-dist/doc/latex/xmpincl/license.xmp
@@ -82777,6 +91724,7 @@ shortdesc Define \global and \protected commands with \newcommand.
longdesc The package provides the means of defining \global and (e-TeX)
longdesc \protected commands, within the framework of LaTeX's standard
longdesc \newcommand.
+depend xnewcommand.ARCH
docfiles size=70
texmf-dist/doc/latex/xnewcommand/README details="Readme"
texmf-dist/doc/latex/xnewcommand/xnewcommand.pdf details="Package documentation"
@@ -82795,6 +91743,7 @@ shortdesc Expandable macros that take an optional argument.
longdesc Commands that take an optional argument are not ordinarily
longdesc expandable; this package allows such commands to be expandable
longdesc provided they have at least one mandatory argument.
+depend xoptarg.ARCH
docfiles size=97
texmf-dist/doc/latex/xoptarg/README details="Readme"
texmf-dist/doc/latex/xoptarg/xoptarg.pdf details="Package documentation"
@@ -82809,6 +91758,7 @@ catalogue-license lppl
name xor
category Package
revision 616
+depend xor.ARCH
docfiles size=68
texmf-dist/doc/latex3/xor/cat.eps
texmf-dist/doc/latex3/xor/escher.eps
@@ -82858,6 +91808,7 @@ runfiles size=33
name xparse
category Package
revision 616
+depend xparse.ARCH
docfiles size=2
texmf-dist/doc/latex3/xparse/xparse-test.tex
srcfiles size=14
@@ -82875,6 +91826,7 @@ shortdesc Support for writing about xiangqi.
longdesc The package is for writing about xiangqi or chinese chess. You
longdesc can write games or parts of games and show diagrams with
longdesc special positions.
+depend xq.ARCH
docfiles size=22
texmf-dist/doc/fonts/xq/README details="Package README"
texmf-dist/doc/fonts/xq/xqexample.pdf details="Example of use"
@@ -82904,6 +91856,7 @@ revision 2338
shortdesc Break tables across pages.
longdesc Xtab is an extended and somewhat improved version of
longdesc supertabular; it provides tables that break across pages.
+depend xtab.ARCH
docfiles size=63
texmf-dist/doc/latex/xtab/README
texmf-dist/doc/latex/xtab/xtab.pdf
@@ -82924,6 +91877,7 @@ shortdesc Defining language-dependent text macros.
longdesc The package provides macros which generate text which switches
longdesc according to what language has been selected in Babel. The
longdesc documentation includes an example of the use of the package.
+depend xtcapts.ARCH
docfiles size=29
texmf-dist/doc/latex/xtcapts/readme.txt
texmf-dist/doc/latex/xtcapts/xt_capts.pdf details="Package documentation"
@@ -82940,6 +91894,7 @@ catalogue-license unknown
name xtheorem
category Package
revision 616
+depend xtheorem.ARCH
docfiles size=2
texmf-dist/doc/latex3/xtheorem/readme.txt
texmf-dist/doc/latex3/xtheorem/xtheorem-test.tex
@@ -82952,6 +91907,7 @@ runfiles size=2
name xu-hyphen
category Package
revision 4247
+depend xu-hyphen.ARCH
runfiles size=77
texmf-dist/tex/generic/xu-hyphen/utf8-copthyph.tex
texmf-dist/tex/generic/xu-hyphen/utf8-grahyph4.tex
@@ -83000,6 +91956,7 @@ longdesc similar engines’) need for Unicode characters, in a similar
longdesc way to what the fontenc does for 8-bit (and the like) fonts:
longdesc convert accent-glyph sequence to a single character in the
longdesc output encoding.
+depend xunicode.ARCH
docfiles size=1
texmf-dist/doc/xelatex/xunicode/README details="Readme"
runfiles size=30
@@ -83020,6 +91977,7 @@ longdesc positioned relative to a GRID. It is essential that each of
longdesc these three elements is constructed independent of the other
longdesc two, and hence they can be modified without unwanted side
longdesc effects. The macros are based on the xy-pic package.
+depend xyling.ARCH
docfiles size=52
texmf-dist/doc/latex/xyling/README details="README file"
texmf-dist/doc/latex/xyling/xyli-doc.pdf details="Package documentation" language="en"
@@ -83038,6 +91996,7 @@ shortdesc Flexible diagramming macros.
longdesc A package for typesetting a variety of graphs and diagrams with
longdesc TeX. Xy-pic works with most formats (including LaTeX, AMS-
longdesc LaTeX, AMS-TeX, and plain TeX).
+depend xypic.ARCH
execute addMixedMap xypic.map
docfiles size=926
texmf-dist/doc/generic/xypic/CATALOG
@@ -83266,6 +92225,7 @@ name xypic-tut-pt
category Documentation
revision 1755
shortdesc A tutorial for XY-pic, in Portuguese.
+depend xypic-tut-pt.ARCH
docfiles size=77
texmf-doc/doc/portuguese/xypic-tut-pt/README
texmf-doc/doc/portuguese/xypic-tut-pt/grafico.eps
@@ -83284,6 +92244,7 @@ longdesc The aim of xytree is to draw linguistic syntactic trees with
longdesc ease and to support hopefully sufficient functionalities, that
longdesc the linguist may need. The package (of course) depends on the
longdesc XY-Pic package.
+depend xytree.ARCH
docfiles size=80
texmf-dist/doc/latex/xytree/README details="Package README"
texmf-dist/doc/latex/xytree/xytree-doc-en.pdf details="Package documentation" language="en"
@@ -83302,6 +92263,7 @@ shortdesc A bundle of miscellaneous footnote packages.
longdesc Contains three packages: – pfnote to number footnotes per
longdesc page; – fnpos to control the position of footnotes; and –
longdesc dblfnote to make footnotes double-columned.
+depend yafoot.ARCH
docfiles size=8
texmf-dist/doc/latex/yafoot/README details="Bundle Readme"
texmf-dist/doc/latex/yafoot/yafoot-man.dvi
@@ -83327,6 +92289,7 @@ longdesc modern polytonic Greek. The fonts are provided in MetaFont
longdesc form; macros to produce a Greek variant of Plain TeX (including
longdesc a hyphenation table adapted to the fonts' code table) are
longdesc provided.
+depend yannisgr.ARCH
docfiles size=21
texmf-dist/doc/plain/yannisgr/00changes.txt
texmf-dist/doc/plain/yannisgr/00readme.txt
@@ -83377,6 +92340,7 @@ shortdesc Support for old German fonts.
longdesc A LaTeX interface to the old-german fonts designed by Yannis
longdesc Haralambous: Gothic, Schwabacher, Fraktur and the baroque
longdesc initials.
+depend yfonts.ARCH
docfiles size=4
texmf-dist/doc/latex/yfonts/frktest.tex
texmf-dist/doc/latex/yfonts/liesmich
@@ -83397,6 +92361,7 @@ revision 1466
shortdesc Extended maths fonts for LaTeX.
longdesc The yhmath bundle contains fonts (type in 1 format) and a LaTeX
longdesc package for using them.
+depend yhmath.ARCH
execute addMixedMap yhmath.map
docfiles size=44
texmf-dist/doc/latex/yhmath/yhmath.pdf
@@ -83429,6 +92394,7 @@ longdesc Package to provide support in LaTeX for writing all
longdesc standardized Yi characters. Yi (also known as Lolo) is spoken
longdesc in Southern China; the script is syllabic, based on an older,
longdesc ideographic system.
+depend yi4latex.ARCH
docfiles size=16
texmf-dist/doc/fonts/yi4latex/FILES
texmf-dist/doc/fonts/yi4latex/README
@@ -83476,6 +92442,7 @@ shortdesc A thesis class file for York University, Toronto.
longdesc York Graduate Studies has again changed the requirements for
longdesc theses and dissertations. The established york-thesis class
longdesc file now implements the changes made in Spring 2005.
+depend york-thesis.ARCH
docfiles size=58
texmf-dist/doc/latex/york-thesis/README details="Package Readme"
texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
@@ -83498,6 +92465,7 @@ shortdesc Typeset Young-Tableaux.
longdesc A package for typesetting Young-Tableaux, mathematical symbols
longdesc for the representations of groups, providing two macros,
longdesc \yng(1) and \young(1) to generate the whole Young-Tableaux.
+depend youngtab.ARCH
srcfiles size=16
texmf-dist/source/latex/youngtab/README
texmf-dist/source/latex/youngtab/makeydoc
@@ -83525,6 +92493,7 @@ longdesc Portuguese. The previous scheme of annual updates has now been
longdesc abandoned, in favour of a Perl script yplan that generates a
longdesc year's planner automatically. (The last manually-generated
longdesc LaTeX file remains on the archive.)
+depend yplan.ARCH
docfiles size=22
texmf-dist/doc/latex/yplan/yplan00.doc
texmf-dist/doc/latex/yplan/yplan00a.dvi
@@ -83551,6 +92520,7 @@ longdesc Ytex aims to support the novice user, while providing a
longdesc comfortable home for the TeX programmer, who will find a
longdesc library-like collection of support macros. The package uses the
longdesc author’s plain-cm package.
+depend ytex.ARCH
runfiles size=46
texmf-dist/tex/ytex/base/ybase.mac
texmf-dist/tex/ytex/base/yfonts.mac
@@ -83571,6 +92541,7 @@ catalogue-license unknown
name zapfchan
category Package
revision 2488
+depend zapfchan.ARCH
runfiles size=63
texmf-dist/dvips/zapfchan/config.uzc
texmf-dist/fonts/afm/adobe/zapfchan/pzcmi8a.afm
@@ -83608,6 +92579,7 @@ runfiles size=63
name zapfding
category Package
revision 1472
+depend zapfding.ARCH
runfiles size=25
texmf-dist/dvips/zapfding/config.uzd
texmf-dist/fonts/afm/adobe/zapfding/pzdr.afm
@@ -83627,6 +92599,7 @@ shortdesc Typesetting Z and CSP format specifications.
longdesc The package supports real-time CSP and incorporates the
longdesc functionality of Spivey's original Z package, written for LaTeX
longdesc 2.09.
+depend zed-csp.ARCH
docfiles size=25
texmf-dist/doc/latex/zed-csp/csp2e.dvi
texmf-dist/doc/latex/zed-csp/csp2e.tex
@@ -83648,6 +92621,7 @@ longdesc (OT1) Computer Modern together with Times and Helvetica fonts,
longdesc intended to simulate ‘ec’ fonts. The 'ae' fonts do a
longdesc similar task, but miss some glyphs that aren’t available in
longdesc OT1.
+depend zefonts.ARCH
execute addMap slantcm.map
docfiles size=36
texmf-dist/doc/latex/zefonts/CHANGES