diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-04-12 14:42:03 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-04-12 14:42:03 +0000 |
commit | 51d81bc0788a9728495b8d9d969a738606722b90 (patch) | |
tree | e9b22851cf912e95d991563f93a9535da0ecb0fc | |
parent | 1a59d50edb6edfc83326e67306bf1060a23b93f8 (diff) |
moving dtx-style to source/ for leading and inversepath
git-svn-id: svn://tug.org/texlive/trunk@7393 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/ctan2tds | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/ctan2tds b/Master/tlpkg/bin/ctan2tds index 7542be8320e..e6398211385 100755 --- a/Master/tlpkg/bin/ctan2tds +++ b/Master/tlpkg/bin/ctan2tds @@ -426,6 +426,8 @@ chdir $startdir || die "chdir($startdir) failed: $!"; # back to raw 'glossaries' => '&POSTglossaries', 'ibygrk' => '&POSTibygrk', 'interactiveworkbook' => '&POSTinteractiveworkbook', + 'inversepath' => '&POSTinversepath', + 'leading' => '&POSTleading', 'pgf' => '&POSTpgf', 'pst-cox' => '&POSTpstcox', 'xecyr' => '&POSTxecyr', @@ -3296,6 +3298,22 @@ sub POSTinteractiveworkbook &SYSTEM ("rmdir interactiveworkbook.sty"); } +sub POSTinversepath +{ + print "POST$package - moving dtx-style to source\n"; + my $dest = "$DEST/source/latex/$package"; + &SYSTEM ("mkdir -p $dest"); + &SYSTEM ("$MV dtx-style.sty $dest/"); +} + +sub POSTleading +{ + print "POST$package - moving dtx-style to source\n"; + my $dest = "$DEST/source/latex/$package"; + &SYSTEM ("mkdir -p $dest"); + &SYSTEM ("$MV dtx-style.sty $dest/"); +} + sub POSTpgf { print "POST$package - mv generic+latex directories\n"; |