summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-01-03 00:19:27 +0000
committerKarl Berry <karl@freefriends.org>2012-01-03 00:19:27 +0000
commit10c44cd99abef440f50a1da8973ae21a27664576 (patch)
tree2669354677ce7292e88b2e6b474acc98fa408af9 /Master
parentb66ea5c66b9c6b02df3cbd82a85cd2aa2501dad9 (diff)
slantsc (2jan12)
git-svn-id: svn://tug.org/texlive/trunk@25007 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/latex/slantsc/ChangeLog16
-rw-r--r--Master/texmf-dist/doc/latex/slantsc/Makefile (renamed from Master/texmf-dist/source/latex/slantsc/Makefile)40
-rw-r--r--Master/texmf-dist/doc/latex/slantsc/README14
-rw-r--r--Master/texmf-dist/doc/latex/slantsc/slantsc.pdfbin108132 -> 384993 bytes
-rw-r--r--Master/texmf-dist/doc/latex/slantsc/slantsc.xml32
-rw-r--r--Master/texmf-dist/source/latex/slantsc/slantsc.dtx17
-rw-r--r--Master/texmf-dist/source/latex/slantsc/slantsc.ins4
-rw-r--r--Master/texmf-dist/tex/latex/slantsc/slantsc.sty6
8 files changed, 52 insertions, 77 deletions
diff --git a/Master/texmf-dist/doc/latex/slantsc/ChangeLog b/Master/texmf-dist/doc/latex/slantsc/ChangeLog
new file mode 100644
index 00000000000..ff403b40f27
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/slantsc/ChangeLog
@@ -0,0 +1,16 @@
+2012/01/01 2.11 Harald Harders
+ - Update e-mail address
+
+2003/11/09 2.10 Harald Harders
+ - State date and version explicitely in \ProvidesPackage
+
+2003/09/17 2.00 Harald Harders
+ - The booleans caused problems when using \fontshape
+ explicitely, which, for instance, is performed by
+ \normalfont. Thus, the new version does not use them
+ at all and now works with \fontshape.
+
+2003/09/10 1.00 Harald Harders
+ - Entirely new package
+
+
diff --git a/Master/texmf-dist/source/latex/slantsc/Makefile b/Master/texmf-dist/doc/latex/slantsc/Makefile
index e4c9270880e..37d4fe00b6b 100644
--- a/Master/texmf-dist/source/latex/slantsc/Makefile
+++ b/Master/texmf-dist/doc/latex/slantsc/Makefile
@@ -2,26 +2,23 @@
SRCDIR=slantsc
INSTALLDIR=`kpsewhich --expand-path='$$TEXMFLOCAL'`/tex/latex/slantsc
DOCDIR=`kpsewhich --expand-path='$$TEXMFLOCAL'`/doc/latex/slantsc
-VERSION=`latex getversion | grep '^VERSION' | sed 's/^VERSION \\(.*\\)\\.\\(.*\\)/\\1_\\2/'`
+VERSION=`pdflatex getversion | grep '^VERSION' | sed 's/^VERSION \\(.*\\)\\.\\(.*\\)/\\1_\\2/'`
-.SUFFIXES: .sty .ins .dtx .dvi .ps
+.SUFFIXES: .sty .ins .dtx .pdf
.ins.sty:
- latex $<
+ pdflatex $<
-.dtx.dvi:
- latex $<
- latex $<
+.dtx.pdf:
+ pdflatex $<
+ pdflatex $<
makeindex -s gind.ist $(*D)/$(*F)
makeindex -s gglo.ist -o $(*D)/$(*F).gls $(*D)/$(*F).glo
- latex $<
+ pdflatex $<
-.dvi.ps:
- dvips -o $(*D)/$(*F).ps $(*D)/$(*F)
-
-all: slantsc slantsc.dvi
+all: slantsc slantsc.pdf
slantsc: slantsc.sty
@@ -33,14 +30,15 @@ clean:
@-rm -f *~
distclean: clean
- @-rm -f slantsc.{sty,dvi,ps}
+ @-rm -f slantsc.{sty,pdf,ps}
tar: all clean
echo Lege slantsc-$(VERSION).tar.gz an
-rm -f slantsc-$(VERSION).tar.gz
tar czCf .. slantsc-$(VERSION).tar.gz \
$(SRCDIR)/README $(SRCDIR)/Makefile \
- $(SRCDIR)/slantsc.{dtx,ins,dvi} \
+ $(SRCDIR)/ChangeLog \
+ $(SRCDIR)/slantsc.{dtx,ins,pdf} \
$(SRCDIR)/testslantsc.tex \
$(SRCDIR)/slantsc.xml \
$(SRCDIR)/getversion.tex
@@ -48,22 +46,22 @@ tar: all clean
zip: all clean
-rm -f slantsc-$(VERSION).zip
- mkdirhier tex/latex/slantsc
- mkdirhier doc/latex/slantsc
- mkdirhier source/latex/slantsc
+ mkdir -p tex/latex/slantsc
+ mkdir -p doc/latex/slantsc
+ mkdir -p source/latex/slantsc
cp slantsc.sty tex/latex/slantsc/
- cp slantsc.dvi testslantsc.tex doc/latex/slantsc/
- cp Makefile slantsc.dtx slantsc.ins README source/latex/slantsc/
+ cp slantsc.pdf testslantsc.tex doc/latex/slantsc/
+ cp ChangeLog Makefile slantsc.dtx slantsc.ins README source/latex/slantsc/
zip -r slantsc-$(VERSION).zip tex doc source
rm -rf tex doc source
rm -f getversion.log
install: all
- if [ ! -d $(INSTALLDIR) ]; then mkdirhier $(INSTALLDIR); fi
- if [ ! -d $(DOCDIR) ]; then mkdirhier $(DOCDIR); fi
+ if [ ! -d $(INSTALLDIR) ]; then mkdir -p $(INSTALLDIR); fi
+ if [ ! -d $(DOCDIR) ]; then mkdir -p $(DOCDIR); fi
install -m644 slantsc.sty $(INSTALLDIR)
- install -m644 slantsc.dvi $(DOCDIR)
+ install -m644 slantsc.pdf $(DOCDIR)
texhash
diff --git a/Master/texmf-dist/doc/latex/slantsc/README b/Master/texmf-dist/doc/latex/slantsc/README
index e50aa0a8960..263bcf4f46d 100644
--- a/Master/texmf-dist/doc/latex/slantsc/README
+++ b/Master/texmf-dist/doc/latex/slantsc/README
@@ -9,7 +9,7 @@ define the font shapes |scsl| resp.\ |scit| for slanted resp.\
italic small capitals.
-Copyright 2003 Harald Harders
+Copyright 2003, 2012 Harald Harders
This program can be redistributed and/or modified under the terms
of the LaTeX Project Public License Distributed from CTAN
@@ -34,14 +34,6 @@ by hand: - execute latex on slantsc.ins
-Change log:
-- 2.00 2003/09/17 The booleans caused problems when using \fontshape
- explicitely, which, for instance, is performed by
- \normalfont. Thus, the new version does not use them
- at all and now works with \fontshape.
-- 1.00 2003/09/10 Entirely new package
-
-
-2003-09-17
+2012-01-01
Harald Harders
-h.harders@tu-bs.de
+harald.harders@gmx.de
diff --git a/Master/texmf-dist/doc/latex/slantsc/slantsc.pdf b/Master/texmf-dist/doc/latex/slantsc/slantsc.pdf
index 2555f6346e0..4921bd64ac6 100644
--- a/Master/texmf-dist/doc/latex/slantsc/slantsc.pdf
+++ b/Master/texmf-dist/doc/latex/slantsc/slantsc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/slantsc/slantsc.xml b/Master/texmf-dist/doc/latex/slantsc/slantsc.xml
deleted file mode 100644
index ce2a09d5fd0..00000000000
--- a/Master/texmf-dist/doc/latex/slantsc/slantsc.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE entry SYSTEM "../catalogue.dtd">
-<entry id="slantsc"
- datestamp="2003/09/17"
- modifier="h.harders@tu-bs.de">
- <about>
- <name>slantsc</name>
- <caption>Allow to combine slanted and italic with small capitals.</caption>
- <author>
- <name>Harald Harders</name>
- <email>h.harders@tu-bs.de</email>
- </author>
- <license type="lppl"/>
- <version>
- <number>2.00</number>
- </version>
- </about>
- <description>
- <abstract>
- This package enables the use of small capitals in different font
- shapes, e.g., slanted or bold slanted for all fonts that provide
- appropriate font shapes.
- The only prerequisite is that the corresponding |fd| file has to
- define the font shapes |scsl| resp.\ |scit| for slanted resp.\
- italic small capitals.
- </abstract>
- </description>
- <distribution>
- <texlive>latex3</texlive>
- <ctan>macros/latex/contrib/slantsc</ctan>
- </distribution>
-</entry>
diff --git a/Master/texmf-dist/source/latex/slantsc/slantsc.dtx b/Master/texmf-dist/source/latex/slantsc/slantsc.dtx
index e5eadce4358..fd7feb5deb3 100644
--- a/Master/texmf-dist/source/latex/slantsc/slantsc.dtx
+++ b/Master/texmf-dist/source/latex/slantsc/slantsc.dtx
@@ -1,5 +1,5 @@
% \iffalse meta comment
-% File: slantsc.dtx Copyright (C) 2003 Harald Harders
+% File: slantsc.dtx Copyright (C) 2003, 2012 Harald Harders
% \fi
%
% \iffalse
@@ -14,10 +14,9 @@
slantsc.dtx again)^^J}\stop}
\usepackage{longtable}
\GetFileInfo{slantsc.sty}
-\title{The \texttt{slantsc} package\thanks{This file has version
- \fileversion\ last revised \filedate.}}
-\author{Harald Harders\\\texttt{h.harders@tu-bs.de}}
-\date{File Date \filedate, Printed \today}
+\title{The \texttt{slantsc} package}
+\author{Harald Harders\\\texttt{harald.harders@gmx.de}}
+\date{Version \fileversion, \filedate, printed \today}
\newlength{\tempdima}%
\makeatletter
\renewenvironment{table}[1][]{%
@@ -46,7 +45,9 @@
%</driver>
% \fi
%
-% \changes{2.10}{2003/11/09}{Avoid usage of \cs{fileversion} etc.}%
+% \changes{2.11}{2012/01/01}{Update e-mail address}%
+% \changes{2.10}{2003/11/09}{State date and version explicitely in
+% \cs{ProvidesPackage}}%
%
% \maketitle
% \begin{abstract}
@@ -62,7 +63,7 @@
% \tableofcontents
%
% \section*{Copyright}
-% Copyright 2003 Harald Harders.
+% Copyright 2003, 2012 Harald Harders.
%
% This program can be redistributed and/or modified under the terms
% of the LaTeX Project Public License Distributed from \textsc{ctan}
@@ -270,7 +271,7 @@
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{slantsc}
- [2003/11/09 v2.10 Provide Slanted an Italic Small Caps]
+ [2012/01/01 v2.11 Provide Slanted an Italic Small Caps]
% \end{macrocode}
% More robust string comparisons.
% \begin{macrocode}
diff --git a/Master/texmf-dist/source/latex/slantsc/slantsc.ins b/Master/texmf-dist/source/latex/slantsc/slantsc.ins
index 794a5f2e76f..f105125cc6d 100644
--- a/Master/texmf-dist/source/latex/slantsc/slantsc.ins
+++ b/Master/texmf-dist/source/latex/slantsc/slantsc.ins
@@ -4,14 +4,14 @@
slantsc package
- Copyright 2003 Harald Harders
+ Copyright 2003, 2012 Harald Harders
This program can be redistributed and/or modified under the terms
of the LaTeX Project Public License Distributed from CTAN
archives in directory macros/latex/base/lppl.txt; either
version 1 of the License, or any later version.
- h.harders@tu-bs.de
+ harald.harders@gmx.de
\endpreamble
% Files
diff --git a/Master/texmf-dist/tex/latex/slantsc/slantsc.sty b/Master/texmf-dist/tex/latex/slantsc/slantsc.sty
index 61190f91789..d9139f6177b 100644
--- a/Master/texmf-dist/tex/latex/slantsc/slantsc.sty
+++ b/Master/texmf-dist/tex/latex/slantsc/slantsc.sty
@@ -8,18 +8,18 @@
%%
%% slantsc package
%%
-%% Copyright 2003 Harald Harders
+%% Copyright 2003, 2012 Harald Harders
%%
%% This program can be redistributed and/or modified under the terms
%% of the LaTeX Project Public License Distributed from CTAN
%% archives in directory macros/latex/base/lppl.txt; either
%% version 1 of the License, or any later version.
%%
-%% h.harders@tu-bs.de
+%% harald.harders@gmx.de
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{slantsc}
- [2003/11/09 v2.10 Provide Slanted an Italic Small Caps]
+ [2012/01/01 v2.11 Provide Slanted an Italic Small Caps]
\RequirePackage{ifthen}
\DeclareFontFamily{T1}{cmr}{}
\DeclareFontShape{T1}{cmr}{m}{scsl}%