diff options
author | Karl Berry <karl@freefriends.org> | 2015-10-25 22:57:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-10-25 22:57:55 +0000 |
commit | 4a9225ab54c95efafd2534812e2f53697fd0f6d9 (patch) | |
tree | 0ba9a25e89367efb21e41640876facce6b60d08c /Master/tlpkg/libexec | |
parent | 4a0798e9378fdb2de85f56e1ef1d46653f86cc69 (diff) |
bibtexperllibs (25oct15)
git-svn-id: svn://tug.org/texlive/trunk@38711 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 699d5aee410..235e89544d7 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1202,6 +1202,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'biber' => '&POSTbiber', 'biblatex' => '&POSTbiblatex', 'bibtex' => '&POSTbibtex', + 'bibtexperllibs' => '&POSTbibtexperllibs', 'cfr-lm' => '&POSTcfr_lm', 'context' => '&POSTcontext', 'context-games' => '&POSTcontext_games', @@ -2115,11 +2116,12 @@ $standardsource='\.(bat|c|drv|dtx|fea|fdd|ins|sfd)$|configure.*|install-sh'; 'FAQ-en', 'NULL', 'ae', '\.mtx|\.etx|\.tex|clean|go|install|makepl', 'amsldoc-vn', 'NULL', - 'apl', ".*", # get everything, simplest + 'apl', ".", # everything, simplest 'arabxetex', 'NULL', # dtx with others, why not 'babelbib', 'NULL', # dtx with others, why not 'bbold', $standardsource . '|fonttabl.sty', - 'biber', '.*', # keep all, lots to do in post + 'biber', '.', # everything, lots to do in post + 'bibtexperllibs', '.', # everything 'bigints', 'NULL', 'blacklettert1', '\.dtx|\.ins|\.pl|Makefile', 'booktabs-de', 'NULL', # doc package @@ -2148,7 +2150,7 @@ $standardsource='\.(bat|c|drv|dtx|fea|fdd|ins|sfd)$|configure.*|install-sh'; 'geometry-de', 'NULL', # keep together 'grverb', '\.vpl|' . $standardsource, 'hyper', '\.pl|' . $standardsource, - 'hyphenex', '.*', + 'hyphenex', '.', # everything 'impatient', 'NULL', # doc package 'intro-scientific', 'NULL', # doc package 'js-misc', 'NULL', # no gain in splitting up @@ -5252,6 +5254,13 @@ sub POSTbibtex { &preserve_man_pages ("bibtex"); } +sub POSTbibtexperllibs { + print "POST$package - move modules to scripts/, man pages to doc/\n"; + &xchdir ("$DEST/source/support/$package/"); + &mv_with_mkdir ("*/lib/*", "$DEST/scripts/$package/"); + &mv_with_mkdir ("*/man/*/*", "$DEST/doc/support/$package/"); +} + sub POSTcfr_lm { print "POST$package - move directories around\n"; &rename_with_mkdir ("vf", "$DEST/fonts/vf/public/$package"); |