summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-05-13 22:08:15 +0000
committerKarl Berry <karl@freefriends.org>2014-05-13 22:08:15 +0000
commit34e3f8b16e62906055cbdcecd6288251af92cbc0 (patch)
tree87088c55ac2a579bc26b354c5784568e4424a31b /Master/tlpkg/libexec
parent67b8b39b54b6ff45ab131e0e4758efddcdf5e9b4 (diff)
csplain (13may14)
git-svn-id: svn://tug.org/texlive/trunk@34008 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index ceb30f2eda2..75469de3096 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -5244,12 +5244,10 @@ sub POSTcoordsys {
sub POST_cstexpkgs {
print "POST_cstexpkgs (for $package) - untar\n";
- # used for csplain, cslatex, cs(psfonts).
- # the Catalogue and tar file name is cspsfonts, but the directory
- # name inside is cs; we stay with cs since that has been the name in TL.
- my $tarfile = -r "$package.tar.gz" ? "$package.tar.gz" : "cspsfonts.tar.gz";
+ # used for csplain and cslatex
+ my $tarfile = -r "$package.tar.gz" ? "$package.tar.gz" : "somethingwrong";
my $untar = "tar -C $DEST --strip-components=1 -x -f $tarfile";
- $untar .= " --exclude=texmf/doc/cstex"; # handled in its own package
+ $untar .= " --exclude=texmf/doc/cstex"; # handled in its own package
$untar .= " --exclude=texmf/tex/generic/enctex"; # must do by hand
&SYSTEM ($untar);
&SYSTEM ("$RM $tarfile");
@@ -5264,6 +5262,8 @@ sub POSTcs {
# The cs package is where we have the cstex fonts, in both mf and
# type1 formats (plus tfm, vf, etc.). This comes from multiple
# tarballs in the cstex distribution area.
+ # the Catalogue and tar file name is cspsfonts, but the directory
+ # name inside is cs; we stay with cs since that has been the name in TL.
#
for my $tarbase ("csfonts-t1", "csfonts", "cspsfonts") {
my $tarfile = "$tarbase.tar.gz";