summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-04-07 16:40:25 +0000
committerKarl Berry <karl@freefriends.org>2011-04-07 16:40:25 +0000
commit4e239d6efe51876caaa5faa36bdfc9398b9122dc (patch)
treee2c50b0526c477cb1a88e38ed2862eea8d47ce96 /Master/tlpkg/libexec
parentccb4f088deca18af597bba24553e8e664daa0498 (diff)
bardiag doc update
git-svn-id: svn://tug.org/texlive/trunk@22013 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds31
1 files changed, 14 insertions, 17 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 2229332d5ce..b64c9ccdb21 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -1957,32 +1957,28 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot'
%specialclean = (
'a2ping' => 'README', # not worth whole separate doc subdir
'accfonts' => $standardclean . '|dvips.enc', # dup enc
- 'achemso' => $standardclean . '|jawltxdoc.sty', # temp file for doc
'acmconf' => $standardclean . '|flushend.sty', # dup with sttools
'apalike' => "apalike2.bst", # does not belong
+ 'bardiag' => "example/.*(aux|log)", # junk on CTAN
'bbm-macros' => $standardclean . '|^bbm$', # symlink
'bundledoc' => $standardclean . '|\.pdf$', # regen for a4
- 'chemscheme' => $standardclean . '|jawltxdoc.sty', # temp file for doc
- 'chemstyle' => $standardclean . '|jawltxdoc.sty', # temp file for doc
'cmbright' => 'cmbright.pdf',
'cprotect' => $standardclean . '|\.cpt', # temp files for doc
'dateiliste' => $standardclean . '|dateiliste.README*', # already in dist
- 'elvish' => '\.pk3', # no pk files
- 'epstopdf' => 'epstopdf\.pdf', # we will generate
- 'findhyph' => 'findhyph.pdf', # we will generate from man ourselves
+ 'elvish' => '\.pk3', # no pk files
+ 'epstopdf' => 'epstopdf\.pdf', # we generate
+ 'findhyph' => 'findhyph.pdf', # we generate
'fundus' => $standardclean . '|outline.sty', # in own package
- 'gentle' => 'gentle.ps.gz', # pdf is enough
+ 'gentle' => 'gentle.ps.gz', # pdf is enough
'hyph-utf8' => 'README',
'jadetex' => $standardclean # these sty files are in passivetex
. '|(dummyels|mlnames|ucharacters|unicode)\.sty',
- 'lshort-russian'=>'lshortbk.zip', # sources are enough
- 'lshort-spanish'=>'lshort-letter.pdf', # a4 is enough
+ 'lshort-russian'=>'lshortbk.zip', # sources are enough
+ 'lshort-spanish'=>'lshort-letter.pdf', # a4 is enough
'mathexam' => 'sample.tex~',
- 'notes2bib' => "$standardclean|jawltxdoc.sty", # temp file for doc
'pkfix-helper' => 'pkfix-helper.pdf',
'purifyeps' => 'purifyeps.pdf',
'revtex' => '00readme.tex|DOWNLOAD|README', # already in doc
- 'rsc' => $standardclean . '|jawltxdoc.sty', # temp file for doc
'tufte-latex' => $standardclean . '|.tds.zip$',
'wsuipa' => $standardclean . '|.*pk$', # premade pk files
);
@@ -2885,10 +2881,10 @@ sub MAKEunzipandflatten {
sub MAKEnosymlinks
{
&setup;
- chdir("$DEST/doc/$whichdocformat/$package");
+ &xchdir ("$DEST/doc/$whichdocformat/$package");
print "\t SPECIAL nosymlinks $package\n";
- &SYSTEM("find . -type l | xargs --no-run-if-empty rm");
+ &SYSTEM ("find . -type l | xargs --no-run-if-empty rm");
&buildfilelist;
&donormal ("nosetup");
@@ -3808,7 +3804,7 @@ sub MAKEtexsis {
sub MAKEIEEEtran {
- print "\t SPECIAL renaming README files, then flatten\n";
+ print "\t SPECIAL $package - renaming README files, then flatten\n";
chdir ($packagedir) || die "chdir($packagedir) failed: $!";
&SYSTEM('for f in *; do test -r $f/README && mv $f/README README.$f; done');
chdir ("..");
@@ -3819,13 +3815,14 @@ sub MAKEIEEEtran {
sub MAKEbardiag {
&setup;
- chdir("$DEST/doc/latex/$package");
- &SYSTEM("$MV doc/* .");
+ &xchdir ("$DEST/doc/latex/$package");
+ print "\t SPECIAL $package - no symlinks, one-level flattening of doc dir\n";
+ &SYSTEM ("find . -type l | xargs --no-run-if-empty rm");
+ &SYSTEM ("$MV doc/* .");
&buildfilelist;
&donormal;
}
-
sub MAKEmathpazo {
&setup;
chdir("$DEST/doc/latex/$package");