summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec/ctan2tds
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds33
1 files changed, 9 insertions, 24 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index c4a574d395a..59aaa5f180f 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -1279,6 +1279,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`);
'epspdf' => '&POSTepspdf',
'fixme' => '&POSTfixme',
'font-change-xetex' => '&POSTfont_change_xetex',
+ 'formation-latex-ul' => '&POSTformation_latex_ul',
'fpl' => '&POSTfpl',
'frenchle' => '&POST_rmsymlink',
'ghsystem' => '&POSTghsystem',
@@ -5702,35 +5703,19 @@ sub POSTfixme {
&SYSTEM ("$MV themes layouts $dstdir/");
}
-sub POSTfontools {
- # it seems simpler to do it this way than flatten and expand it back
- # out, because of its nice examples/ subdirectories.
- print "POST$package - handle subdirs\n";
- #
- my $scriptdir = "$DEST/scripts/$package";
- &xmkdir ($scriptdir);
- &SYSTEM ("$MV bin/* $scriptdir/");
- &SYSTEM ("chmod a+x $scriptdir/*");
- &SYSTEM ("rmdir bin");
- #
- my $mandir = "$TOPDEST/texmf-dist/doc/man/man1";
- &xmkdir ($mandir);
- &SYSTEM ("$MV doc/*.1 $mandir/");
- &SYSTEM ("rm -rf doc"); # skip pdfs, we'll make our own
- #
- my $encdir = "$DEST/fonts/enc/dvips/$package";
- &xmkdir ($encdir);
- &SYSTEM ("$MV share/* $encdir/");
- &SYSTEM ("rmdir share"); # skip pdfs, we'll make our own
- #
- &tl_man_to_pdf ();
-}
-
sub POSTfont_change_xetex {
print "POST$package - move .tex, collision with doc source\n";
&mv_with_mkdir ("macros/*", "$DEST/tex/xetex/$package/");
}
+sub POSTformation_latex_ul {
+ print "POST$package - move source subdir, doc/* files\n";
+ &SYSTEM ("$MV source $DEST/source/latex/$package");
+ &SYSTEM ("$MV doc/* .");
+ &SYSTEM ("rmdir doc");
+ &POST_rmsymlink ();
+}
+
sub POSTfpl {
print "POST$package - rename README.source\n";
&SYSTEM ("$MV README.source $DEST/source/fonts/fpl/README");