diff options
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/support/dtxgen/README | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf | bin | 63803 -> 63803 bytes | |||
-rwxr-xr-x | Master/texmf-dist/scripts/dtxgen/dtxgen | 13 |
3 files changed, 10 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/support/dtxgen/README b/Master/texmf-dist/doc/support/dtxgen/README index 379b62b2198..0d8f68551ac 100644 --- a/Master/texmf-dist/doc/support/dtxgen/README +++ b/Master/texmf-dist/doc/support/dtxgen/README @@ -1,6 +1,6 @@ ---------------------------------------------------------------- dtxgen --- generate template for LaTeX self-extracting .dtx file -Version: 1.01 +Version: 1.03 Author: Wybo Dekker E-mail: wybo@xs4all.nl License: Released under the GNU General Public License @@ -19,6 +19,6 @@ from environment variables, or from command line options and generates a template for the .dtx file with some minimal examples. Of course, the user will have to replace those examples with the real work. -Major changes of release 1.01 relative to 1.00: +Major changes of release 1.03 relative to 1.00: - dtx files contain only one version number - presence of sed executable is tested diff --git a/Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf b/Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf Binary files differindex 8cb379b167e..6f823e61d9f 100644 --- a/Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf +++ b/Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf diff --git a/Master/texmf-dist/scripts/dtxgen/dtxgen b/Master/texmf-dist/scripts/dtxgen/dtxgen index e6b9c58b1d8..b5fa8a8275c 100755 --- a/Master/texmf-dist/scripts/dtxgen/dtxgen +++ b/Master/texmf-dist/scripts/dtxgen/dtxgen @@ -81,7 +81,7 @@ zip & produce a zip file ready for upload to CTAN LATEX -VERSION=1.01 +VERSION=1.03 MYNAME=`basename $0` function help { @@ -119,8 +119,10 @@ function createfile { test ${BASH_VERSINFO[0]} -ge 4 || die Your bash has version $BASH_VERSION, but it should be at least version 4 -type sed >&/dev/null || - die dtxgen needs sed, but sed is not in your PATH +for i in sed getopt; do + type $i >&/dev/null || + die dtxgen needs sed and getopt, but $i is not in your PATH +done if ! options=$(getopt -o s:n:m:c:d:hvqI \ -l help,short:,name:,mail:,class:,date:,version,quiet -- "$@"); then exit 1; fi @@ -208,10 +210,11 @@ $(NAME).pdf: $(NAME).dtx if [ -f $(NAME).glo ]; then makeindex -q -s gglo.ist -o $(NAME).gls $(NAME).glo; fi if [ -f $(NAME).idx ]; then makeindex -q -s gind.ist -o $(NAME).ind $(NAME).idx; fi pdflatex --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null + pdflatex --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null clean: rm -f $(NAME).{aux,fls,glo,gls,hd,idx,ilg,ind,ins,log,out} distclean: clean - rm -f $(NAME).{pdf,%ext%} README Makefile + rm -f $(NAME).{pdf,%ext%} README inst: all mkdir -p $(UTREE)/{tex,source,doc}/latex/$(NAME) cp $(NAME).dtx $(UTREE)/source/latex/$(NAME) @@ -439,4 +442,4 @@ Major changes of release %VERSION% relative to 1.00: - presence of sed executable is tested README -# $Id: dtxgen,v 1.6 2013/04/15 21:13:10 wybo Exp $ +# $Id: dtxgen,v 1.8 2013/04/22 15:33:25 wybo Exp $ |