From 0c0383248a5869d9927489942780617dc09aebd8 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 30 Dec 2011 23:03:10 +0000 Subject: hhtensor (30dec11) git-svn-id: svn://tug.org/texlive/trunk@24981 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/hhtensor/ChangeLog | 5 ++ Master/texmf-dist/doc/latex/hhtensor/Makefile | 76 +++++++++++++++++++++ Master/texmf-dist/doc/latex/hhtensor/README | 6 +- .../texmf-dist/doc/latex/hhtensor/getversion.tex | 7 ++ Master/texmf-dist/doc/latex/hhtensor/hhtensor.pdf | Bin 178889 -> 360629 bytes 5 files changed, 91 insertions(+), 3 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/hhtensor/ChangeLog create mode 100644 Master/texmf-dist/doc/latex/hhtensor/Makefile create mode 100644 Master/texmf-dist/doc/latex/hhtensor/getversion.tex (limited to 'Master/texmf-dist/doc/latex') diff --git a/Master/texmf-dist/doc/latex/hhtensor/ChangeLog b/Master/texmf-dist/doc/latex/hhtensor/ChangeLog new file mode 100644 index 00000000000..004264604eb --- /dev/null +++ b/Master/texmf-dist/doc/latex/hhtensor/ChangeLog @@ -0,0 +1,5 @@ +2011/12/29 0.61 Harald Harders (harald.harders@gmx.de) + - Avoid usage of \fileversion etc. + +2003/10/15 0.6 Harald Harders (h.harders@tu-bs.de) + - Total new implementation diff --git a/Master/texmf-dist/doc/latex/hhtensor/Makefile b/Master/texmf-dist/doc/latex/hhtensor/Makefile new file mode 100644 index 00000000000..2c4daf366fd --- /dev/null +++ b/Master/texmf-dist/doc/latex/hhtensor/Makefile @@ -0,0 +1,76 @@ + +SRCDIR=hhtensor +INSTALLDIR=`kpsewhich --expand-path='$$TEXMFLOCAL'`/tex/latex/hhtensor +DOCDIR=`kpsewhich --expand-path='$$TEXMFLOCAL'`/doc/latex/hhtensor +VERSION=`latex getversion | grep '^VERSION' | sed 's/^VERSION \\(.*\\)\\.\\(.*\\)/\\1_\\2/'` + + +.SUFFIXES: .sty .ins .dtx .dvi .ps .pdf + +.ins.sty: + pdflatex $< + +.dtx.pdf: + pdflatex $< + pdflatex $< + makeindex -s gind.ist $(*D)/$(*F) + makeindex -s gglo.ist -o $(*D)/$(*F).gls $(*D)/$(*F).glo + pdflatex $< + + +all: hhtensor hhtensor.pdf + +hhtensor: hhtensor.sty + +hhtensor.pdf: hhtensor.dtx hhtensor.ins + pdflatex hhtensor.dtx + pdflatex hhtensor.dtx + makeindex -s gind.ist hhtensor + makeindex -s gglo.ist -o hhtensor.gls hhtensor.glo + pdflatex hhtensor.dtx + +clean: + @-rm -f hhtensor.glo hhtensor.gls hhtensor.idx hhtensor.ilg + @-rm -f hhtensor.ind hhtensor.aux hhtensor.log hhtensor.toc + @-rm -f *~ + +distclean: clean + @-rm -f hhtensor.sty hhtensor.pdf + +tar: all clean + echo Lege hhtensor-$(VERSION).tar.gz an + -rm -f hhtensor-$(VERSION).tar.gz + tar czCf .. hhtensor-$(VERSION).tar.gz \ + $(SRCDIR)/README \ + $(SRCDIR)/ChangeLog \ + $(SRCDIR)/Makefile \ + $(SRCDIR)/hhtensor.pdf \ + $(SRCDIR)/hhtensor.dtx \ + $(SRCDIR)/hhtensor.ins \ + $(SRCDIR)/getversion.tex \ + $(SRCDIR)/hhtensor.xml + rm getversion.log + +zip: all clean + -@rm -f hhtensor-$(VERSION).zip + mkdirhier tex/latex/hhtensor + mkdirhier doc/latex/hhtensor + mkdirhier source/latex/hhtensor + mv hhtensor.sty tex/latex/hhtensor + cp hhtensor.dtx hhtensor.ins hhtensor.xml source/latex/hhtensor + cp Makefile source/latex/hhtensor + cp README hhtensor.pdf doc/latex/hhtensor + zip -r hhtensor-$(VERSION).zip tex doc source + rm -r tex/ doc/ source/ + rm getversion.log + +install: all + if [ ! -d $(INSTALLDIR) ]; then mkdirhier $(INSTALLDIR); fi + if [ ! -d $(DOCDIR) ]; then mkdirhier $(DOCDIR); fi + install -m644 hhtensor.sty $(INSTALLDIR) + install -m644 hhtensor.pdf $(DOCDIR) + texhash + + +hhtensor.sty: hhtensor.ins hhtensor.dtx + diff --git a/Master/texmf-dist/doc/latex/hhtensor/README b/Master/texmf-dist/doc/latex/hhtensor/README index 3f8e932eafc..c037158102b 100644 --- a/Master/texmf-dist/doc/latex/hhtensor/README +++ b/Master/texmf-dist/doc/latex/hhtensor/README @@ -6,7 +6,7 @@ with different styles (arrows as the \LaTeX\ default, underlined, and bold). -Copyright 2003 Harald Harders +Copyright 2003-2011 Harald Harders This program can be redistributed and/or modified under the terms of the LaTeX Project Public License Distributed from CTAN @@ -42,6 +42,6 @@ by hand: - execute latex on hhtensor.ins -2003-10-15 +2011-12-29 Harald Harders -h.harders@tu-bs.de +harald.harders@gmx.de diff --git a/Master/texmf-dist/doc/latex/hhtensor/getversion.tex b/Master/texmf-dist/doc/latex/hhtensor/getversion.tex new file mode 100644 index 00000000000..ab1df503921 --- /dev/null +++ b/Master/texmf-dist/doc/latex/hhtensor/getversion.tex @@ -0,0 +1,7 @@ +\documentclass[english]{ltxdoc} +\nofiles +\usepackage{hhtensor} +\GetFileInfo{hhtensor.sty} +\typeout{VERSION \fileversion} +\begin{document} +\end{document} diff --git a/Master/texmf-dist/doc/latex/hhtensor/hhtensor.pdf b/Master/texmf-dist/doc/latex/hhtensor/hhtensor.pdf index 950c6269505..5627d172e9a 100644 Binary files a/Master/texmf-dist/doc/latex/hhtensor/hhtensor.pdf and b/Master/texmf-dist/doc/latex/hhtensor/hhtensor.pdf differ -- cgit v1.2.3