From b410ec78062ac5e20948144ed6d978f00f58fc0f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 2 Mar 2010 01:00:55 +0000 Subject: fltlabels update (1mar10) git-svn-id: svn://tug.org/texlive/trunk@17272 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/flabels/flabels.pdf | Bin 0 -> 362410 bytes Master/texmf-dist/doc/latex/flabels/makedoc | 64 +++++++++++++++++++ .../texmf-dist/doc/latex/flabels/makedoc-patched | 69 +++++++++++++++++++++ Master/texmf-dist/doc/latex/flabels/makedoc.bat | 46 ++++++++++++++ Master/texmf-dist/source/latex/flabels/makedoc | 64 ------------------- Master/texmf-dist/source/latex/flabels/makedoc.bat | 46 -------------- 6 files changed, 179 insertions(+), 110 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/flabels/flabels.pdf create mode 100644 Master/texmf-dist/doc/latex/flabels/makedoc create mode 100644 Master/texmf-dist/doc/latex/flabels/makedoc-patched create mode 100755 Master/texmf-dist/doc/latex/flabels/makedoc.bat delete mode 100644 Master/texmf-dist/source/latex/flabels/makedoc delete mode 100644 Master/texmf-dist/source/latex/flabels/makedoc.bat (limited to 'Master/texmf-dist') diff --git a/Master/texmf-dist/doc/latex/flabels/flabels.pdf b/Master/texmf-dist/doc/latex/flabels/flabels.pdf new file mode 100644 index 00000000000..35a3152e29a Binary files /dev/null and b/Master/texmf-dist/doc/latex/flabels/flabels.pdf differ diff --git a/Master/texmf-dist/doc/latex/flabels/makedoc b/Master/texmf-dist/doc/latex/flabels/makedoc new file mode 100644 index 00000000000..377f6492aed --- /dev/null +++ b/Master/texmf-dist/doc/latex/flabels/makedoc @@ -0,0 +1,64 @@ +#!/bin/sh +# +# Everything after a `#' is ignored +# +# remove the string `> /dev/null' if you want more log-output +# remove the line containing `batchmode' if you want even more +# log-information while running LaTeX +# +#----------------- create a `ltxdoc.cfg': -------------------------- + +# Make sure that we start with an clean 'ltxdoc.cfg': +echo -n > ltxdoc.cfg + +# Put here a (comma-separated) list of options to pass to +# class 'article': +C_OPT=a4paper + +# Put here a (comma-separated) list of options to pass to +# package 'flabels' (color?): +#P_OPT=color + +if [ -n "$C_OPT" ]; then + echo "\PassOptionsToClass{$C_OPT}{article}" >> ltxdoc.cfg +fi +if [ -n "$P_OPT" ]; then + echo "\PassOptionsToPackage{$P_OPT}{flabels}" >> ltxdoc.cfg + if echo $P_OPT | grep color > /dev/null && [ ! -s color.cfg ]; then + echo "Package 'color' needs a file 'color.cfg'!" + fi +fi +echo "\batchmode" >> ltxdoc.cfg + +# The next lines produce full indexes and change logs +# you may not want those (comment the lines out with +# TeX-comment-character '%'!) +cat >> ltxdoc.cfg <> ltxdoc.cfg + +#---------- latex the documentation using `ltxdoc.cfg': -------------- + +ThisDoc=flabels.dtx +Base=flabels + +echo "1st latex $ThisDoc" +if (latex $ThisDoc > /dev/null); then + echo "2nd latex $ThisDoc" + latex $ThisDoc > /dev/null + + echo "makeindex -s gind.ist $Base.idx" + makeindex -s gind.ist $Base.idx + echo "3rd latex $ThisDoc" + latex $ThisDoc > /dev/null +else + echo "!!! LaTeX ERROR: $ThisDoc. (See $Base.log.)" +fi diff --git a/Master/texmf-dist/doc/latex/flabels/makedoc-patched b/Master/texmf-dist/doc/latex/flabels/makedoc-patched new file mode 100644 index 00000000000..ad04d579ad9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/flabels/makedoc-patched @@ -0,0 +1,69 @@ +#!/bin/bash + +# Unfortunately I had to fix several errors in the build script to make the manual compilable!! + +# +# Everything after a `#' is ignored +# +# remove the string `> /dev/null' if you want more log-output +# remove the line containing `batchmode' if you want even more +# log-information while running LaTeX +# +#----------------- create a `ltxdoc.cfg': -------------------------- + +# Make sure that we start with an clean 'ltxdoc.cfg': +echo -n > ltxdoc.cfg + +# Put here a (comma-separated) list of options to pass to +# class 'article': +C_OPT=a4paper + +# Put here a (comma-separated) list of options to pass to +# package 'flabels' (color?): +P_OPT=color + +if [ -n "$C_OPT" ]; then + echo "\PassOptionsToClass{$C_OPT}{article}" >> ltxdoc.cfg +fi +if [ -n "$P_OPT" ]; then + echo "\PassOptionsToPackage{$P_OPT}{flabels}" >> ltxdoc.cfg + if echo $P_OPT | grep color > /dev/null && [ ! -s color.cfg ]; then + echo "Package 'color' needs a file 'color.cfg'!" + fi +fi +#echo "\batchmode" >> ltxdoc.cfg + +# The next lines produce full indexes and change logs +# you may not want those (comment the lines out with +# TeX-comment-character '%'!) +cat >> ltxdoc.cfg <> ltxdoc.cfg + +#---------- latex the documentation using `ltxdoc.cfg': -------------- + +ThisDoc=flabels.dtx +Base=flabels + +echo "1st latex $ThisDoc" +if pdflatex $ThisDoc ; then + echo "2nd latex $ThisDoc" + pdflatex $ThisDoc + + echo "makeindex -s gind.ist $Base.idx" + #ugly + sed -i '.bak' -e 's/\\verb!\*\+\\->/\\verb!*+\\-!>/' "$Base.idx" + makeindex -s gind.ist $Base.idx + echo "3rd latex $ThisDoc" + pdflatex $ThisDoc +else + echo "!!! LaTeX ERROR: $ThisDoc. (See $Base.log.)" +fi diff --git a/Master/texmf-dist/doc/latex/flabels/makedoc.bat b/Master/texmf-dist/doc/latex/flabels/makedoc.bat new file mode 100755 index 00000000000..3e2daba6809 --- /dev/null +++ b/Master/texmf-dist/doc/latex/flabels/makedoc.bat @@ -0,0 +1,46 @@ +@echo off +rem MAKEDOC.BAT (FOR MSDOS) + +rem Everything after a `rem' is ignored + + +rem ----------------- create a `ltxdoc.cfg': -------------------------- + +rem Edit the next line for options to pass to the package flabels: +rem echo \PassOptionsToPackage{color}{flabels}" >> ltxdoc.cfg + +rem Edit the next line for options to pass to the class: +echo \PassOptionsToClass{a4paper}{article} > ltxdoc.cfg +echo \batchmode >> ltxdoc.cfg + +rem The next lines produce full indexes and change logs +rem you may not want those: + +rem echo \AtBeginDocument{\RecordChanges} >> ltxdoc.cfg +rem echo \AtEndDocument{\PrintChanges} >> ltxdoc.cfg +echo \AtBeginDocument{\CodelineIndex\EnableCrossrefs} >> ltxdoc.cfg +echo \AtEndDocument{\PrintIndex} >> ltxdoc.cfg +echo \AtEndDocument{\addcontentsline{toc}{section}{Index}} >> ltxdoc.cfg + +rem If you do not want any code listings, just documentation, then instead +rem of the lines above, uncomment the following: + +rem echo \AtBeginDocument{\OnlyDescription} >> ltxdoc.cfg + +rem ---------- latex the documentation using `ltxdoc.cfg': -------------- + +echo 1st latex flabels.dtx +latex flabels.dtx + +echo 2nd latex flabels.dtx +latex flabels.dtx + +echo If you don't have Makeindex, exit now! +echo makeindx -s gind.ist flabels.idx +makeindx -s gind.ist flabels.idx + +echo 3rd latex flabels.dtx +latex flabels.dtx + +echo +++++++++++++ all done! ++++++++++++ + diff --git a/Master/texmf-dist/source/latex/flabels/makedoc b/Master/texmf-dist/source/latex/flabels/makedoc deleted file mode 100644 index 377f6492aed..00000000000 --- a/Master/texmf-dist/source/latex/flabels/makedoc +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh -# -# Everything after a `#' is ignored -# -# remove the string `> /dev/null' if you want more log-output -# remove the line containing `batchmode' if you want even more -# log-information while running LaTeX -# -#----------------- create a `ltxdoc.cfg': -------------------------- - -# Make sure that we start with an clean 'ltxdoc.cfg': -echo -n > ltxdoc.cfg - -# Put here a (comma-separated) list of options to pass to -# class 'article': -C_OPT=a4paper - -# Put here a (comma-separated) list of options to pass to -# package 'flabels' (color?): -#P_OPT=color - -if [ -n "$C_OPT" ]; then - echo "\PassOptionsToClass{$C_OPT}{article}" >> ltxdoc.cfg -fi -if [ -n "$P_OPT" ]; then - echo "\PassOptionsToPackage{$P_OPT}{flabels}" >> ltxdoc.cfg - if echo $P_OPT | grep color > /dev/null && [ ! -s color.cfg ]; then - echo "Package 'color' needs a file 'color.cfg'!" - fi -fi -echo "\batchmode" >> ltxdoc.cfg - -# The next lines produce full indexes and change logs -# you may not want those (comment the lines out with -# TeX-comment-character '%'!) -cat >> ltxdoc.cfg <> ltxdoc.cfg - -#---------- latex the documentation using `ltxdoc.cfg': -------------- - -ThisDoc=flabels.dtx -Base=flabels - -echo "1st latex $ThisDoc" -if (latex $ThisDoc > /dev/null); then - echo "2nd latex $ThisDoc" - latex $ThisDoc > /dev/null - - echo "makeindex -s gind.ist $Base.idx" - makeindex -s gind.ist $Base.idx - echo "3rd latex $ThisDoc" - latex $ThisDoc > /dev/null -else - echo "!!! LaTeX ERROR: $ThisDoc. (See $Base.log.)" -fi diff --git a/Master/texmf-dist/source/latex/flabels/makedoc.bat b/Master/texmf-dist/source/latex/flabels/makedoc.bat deleted file mode 100644 index 3e2daba6809..00000000000 --- a/Master/texmf-dist/source/latex/flabels/makedoc.bat +++ /dev/null @@ -1,46 +0,0 @@ -@echo off -rem MAKEDOC.BAT (FOR MSDOS) - -rem Everything after a `rem' is ignored - - -rem ----------------- create a `ltxdoc.cfg': -------------------------- - -rem Edit the next line for options to pass to the package flabels: -rem echo \PassOptionsToPackage{color}{flabels}" >> ltxdoc.cfg - -rem Edit the next line for options to pass to the class: -echo \PassOptionsToClass{a4paper}{article} > ltxdoc.cfg -echo \batchmode >> ltxdoc.cfg - -rem The next lines produce full indexes and change logs -rem you may not want those: - -rem echo \AtBeginDocument{\RecordChanges} >> ltxdoc.cfg -rem echo \AtEndDocument{\PrintChanges} >> ltxdoc.cfg -echo \AtBeginDocument{\CodelineIndex\EnableCrossrefs} >> ltxdoc.cfg -echo \AtEndDocument{\PrintIndex} >> ltxdoc.cfg -echo \AtEndDocument{\addcontentsline{toc}{section}{Index}} >> ltxdoc.cfg - -rem If you do not want any code listings, just documentation, then instead -rem of the lines above, uncomment the following: - -rem echo \AtBeginDocument{\OnlyDescription} >> ltxdoc.cfg - -rem ---------- latex the documentation using `ltxdoc.cfg': -------------- - -echo 1st latex flabels.dtx -latex flabels.dtx - -echo 2nd latex flabels.dtx -latex flabels.dtx - -echo If you don't have Makeindex, exit now! -echo makeindx -s gind.ist flabels.idx -makeindx -s gind.ist flabels.idx - -echo 3rd latex flabels.dtx -latex flabels.dtx - -echo +++++++++++++ all done! ++++++++++++ - -- cgit v1.2.3