summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-01-15 01:16:15 +0000
committerKarl Berry <karl@freefriends.org>2007-01-15 01:16:15 +0000
commit9df8e72263907fe42ce8d203e82a6e251da3252c (patch)
tree9713ff1ef7fcdebbe42514ba160c2f3474fef502 /Master/texmf-dist
parentfa943c88824be38c97f683bccd10b5c12ab7cead (diff)
pst-blur update
git-svn-id: svn://tug.org/texlive/trunk@3494 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/generic/pst-blur/Changes5
-rw-r--r--Master/texmf-dist/doc/generic/pst-blur/README2
-rw-r--r--Master/texmf-dist/doc/generic/pst-blur/pst-blur.pdfbin98001 -> 98264 bytes
-rw-r--r--Master/texmf-dist/dvips/pst-blur/pst-blur.pro11
-rw-r--r--Master/texmf-dist/source/generic/pst-blur/Makefile46
-rw-r--r--Master/texmf-dist/source/generic/pst-blur/pst-blur.dtx (renamed from Master/texmf-dist/source/latex/pst-blur/pst-blur.dtx)38
-rw-r--r--Master/texmf-dist/source/generic/pst-blur/pst-blur.ins (renamed from Master/texmf-dist/source/latex/pst-blur/pst-blur.ins)0
-rw-r--r--Master/texmf-dist/tex/generic/pst-blur/pst-blur.tex11
-rw-r--r--Master/texmf-dist/tex/latex/pst-blur/pst-blur.sty11
-rw-r--r--Master/texmf-dist/tpm/pst-blur.tpm13
10 files changed, 106 insertions, 31 deletions
diff --git a/Master/texmf-dist/doc/generic/pst-blur/Changes b/Master/texmf-dist/doc/generic/pst-blur/Changes
index 691c22c29d5..92f1e1e601a 100644
--- a/Master/texmf-dist/doc/generic/pst-blur/Changes
+++ b/Master/texmf-dist/doc/generic/pst-blur/Changes
@@ -4,3 +4,8 @@ pst-blur.pro --------
pst-blur.tex --------
2.00 2005-09-08 - switch to pst-xkey (hv)
- new pst-blur.sty (hv)
+
+
+pst-blur.dtx --------
+2007-01-12 - small changes to the documentation (hv)
+ - new email of Martin (hv) \ No newline at end of file
diff --git a/Master/texmf-dist/doc/generic/pst-blur/README b/Master/texmf-dist/doc/generic/pst-blur/README
index 87f8c206438..ae97e1d3bd4 100644
--- a/Master/texmf-dist/doc/generic/pst-blur/README
+++ b/Master/texmf-dist/doc/generic/pst-blur/README
@@ -15,4 +15,4 @@ directories
* Run "latex" on pst-blur.dtx to generate the documentation
--
-For Martin Giese and Herbert Voss (updated September 08, 2005)
+For Martin Giese and Herbert Voss (updated September 09, 2005)
diff --git a/Master/texmf-dist/doc/generic/pst-blur/pst-blur.pdf b/Master/texmf-dist/doc/generic/pst-blur/pst-blur.pdf
index d94d6d18e37..6f425558591 100644
--- a/Master/texmf-dist/doc/generic/pst-blur/pst-blur.pdf
+++ b/Master/texmf-dist/doc/generic/pst-blur/pst-blur.pdf
Binary files differ
diff --git a/Master/texmf-dist/dvips/pst-blur/pst-blur.pro b/Master/texmf-dist/dvips/pst-blur/pst-blur.pro
index f480366f328..0aaa4e3f2ea 100644
--- a/Master/texmf-dist/dvips/pst-blur/pst-blur.pro
+++ b/Master/texmf-dist/dvips/pst-blur/pst-blur.pro
@@ -20,6 +20,17 @@
%% original source files, as listed above, are part of the
%% same distribution. (The sources need not necessarily be
%% in the same archive or directory.)
+%% $Id: pst-blur.dtx,v 2.0 2005/09/08 09:48:33 giese Exp $
+%%
+%% Copyright 1998-2007 Martin Giese, mgiese@risc.uni-linz.ac.at
+%% Herbert Voss, voss@pstricks.de
+%%
+%% This file is under the LaTeX Project Public License
+%% See CTAN archives in directory macros/latex/base/lppl.txt.
+%%
+%% DESCRIPTION:
+%% `pst-blur' is a PSTricks package for blurred shadows
+%%
/tx@PstBlurDict 60 dict def
tx@PstBlurDict begin
/Iterate {
diff --git a/Master/texmf-dist/source/generic/pst-blur/Makefile b/Master/texmf-dist/source/generic/pst-blur/Makefile
new file mode 100644
index 00000000000..9a5fb256b1d
--- /dev/null
+++ b/Master/texmf-dist/source/generic/pst-blur/Makefile
@@ -0,0 +1,46 @@
+
+# `Makefile' for `pst-fill.pdf', RN, 2005/10/07
+
+.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps
+
+PACKAGE = pst-blur
+
+LATEX = latex
+
+ARCHNAME = $(PACKAGE)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).dtx $(PACKAGE).ins Makefile
+
+all : sty doc
+sty :
+ tex $(PACKAGE).ins
+
+doc : $(PACKAGE).pdf
+
+$(PACKAGE).pdf : $(PACKAGE).ps
+ GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $<
+
+$(PACKAGE).ps : $(PACKAGE).dvi
+ dvips $<
+
+$(PACKAGE).dvi : $(PACKAGE).dtx
+ $(LATEX) $<
+ if ! test -f $(basename $<).glo ; then touch $(basename $<).glo; fi
+ if ! test -f $(basename $<).idx ; then touch $(basename $<).idx; fi
+ makeindex -s gglo.ist -t $(basename $<).glg -o $(basename $<).gls \
+ $(basename $<).glo
+ makeindex -s gind.ist -t $(basename $<).ilg -o $(basename $<).ind \
+ $(basename $<).idx
+ $(LATEX) $<
+
+clean :
+ $(RM) $(addprefix $(PACKAGE), .log .aux .glg .glo .gls .ilg .idx .ind)
+ $(RM) $(addprefix $(PACKAGE), .dvi .ps)
+
+veryclean : clean
+ $(RM) $(PACKAGE).pdf
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+# EOF
diff --git a/Master/texmf-dist/source/latex/pst-blur/pst-blur.dtx b/Master/texmf-dist/source/generic/pst-blur/pst-blur.dtx
index c2722d598b9..427b2b8e25e 100644
--- a/Master/texmf-dist/source/latex/pst-blur/pst-blur.dtx
+++ b/Master/texmf-dist/source/generic/pst-blur/pst-blur.dtx
@@ -1,35 +1,26 @@
%\iffalse -*-mode:Latex;tex-command:"latex *;dvips -D600 pst-blur -o"-*- \fi
%\iffalse
-% $Id: pst-blur.dtx,v 2.0 2005/09/08 09:48:33 giese Exp $
-%
-% Copyright 1998 Martin Giese, giese@ira.uka.de
-% 2005 Herbert Voss, voss@pstricks.de
-%
-% This file is distributed in the hope that it will be useful,
-% but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-%
-% IMPORTANT COPYRIGHT NOTICE:
-%
-% Permission is granted to copy this file to another file with a clearly
-% different name and to customize the declarations in that copy to serve
-% the needs of your installation, provided that you comply with
-% the conditions in the file legal.txt from the LaTeX2e distribution.
-%
-% However, NO PERMISSION is granted to produce or to distribute a
-% modified version of this file under its original name.
+%% $Id: pst-blur.dtx,v 2.0 2005/09/08 09:48:33 giese Exp $
+%%
+%% Copyright 1998-2007 Martin Giese, mgiese@risc.uni-linz.ac.at
+%% Herbert Voss, voss@pstricks.de
+%%
+%% This file is under the LaTeX Project Public License
+%% See CTAN archives in directory macros/latex/base/lppl.txt.
+%%
+%% DESCRIPTION:
+%% `pst-blur' is a PSTricks package for blurred shadows
+%%
%
-% You are NOT ALLOWED to change this file.
-%
%\fi
%\iffalse
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\documentclass{ltxdoc}
-\usepackage{pst-char}
\usepackage{pst-node}
-\usepackage{url}
+\usepackage{pst-text}
\usepackage{pst-blur}
+\usepackage{url}
\AtBeginDocument{
% \OnlyDescription % comment out for implementation details
\EnableCrossrefs
@@ -118,8 +109,7 @@
% \setcounter{IndexColumns}{2}
%
% \title{\textsf{pst-blur} package \\ version \fileversion}
-% \author{Martin Giese\thanks{\protect\url{giese@ira.uka.de}} and
-% Herbert Voss\thanks{\protect\url{voss@pstricks.de}}}
+% \author{Martin Giese\thanks{\protect\url{Martin.Giese@oeaw.ac.at}}}
% \date{\filedate}
% \maketitle
%
diff --git a/Master/texmf-dist/source/latex/pst-blur/pst-blur.ins b/Master/texmf-dist/source/generic/pst-blur/pst-blur.ins
index 6f8935d1c1a..6f8935d1c1a 100644
--- a/Master/texmf-dist/source/latex/pst-blur/pst-blur.ins
+++ b/Master/texmf-dist/source/generic/pst-blur/pst-blur.ins
diff --git a/Master/texmf-dist/tex/generic/pst-blur/pst-blur.tex b/Master/texmf-dist/tex/generic/pst-blur/pst-blur.tex
index a3f37982805..900ab6a7796 100644
--- a/Master/texmf-dist/tex/generic/pst-blur/pst-blur.tex
+++ b/Master/texmf-dist/tex/generic/pst-blur/pst-blur.tex
@@ -20,6 +20,17 @@
%% original source files, as listed above, are part of the
%% same distribution. (The sources need not necessarily be
%% in the same archive or directory.)
+%% $Id: pst-blur.dtx,v 2.0 2005/09/08 09:48:33 giese Exp $
+%%
+%% Copyright 1998-2007 Martin Giese, mgiese@risc.uni-linz.ac.at
+%% Herbert Voss, voss@pstricks.de
+%%
+%% This file is under the LaTeX Project Public License
+%% See CTAN archives in directory macros/latex/base/lppl.txt.
+%%
+%% DESCRIPTION:
+%% `pst-blur' is a PSTricks package for blurred shadows
+%%
\csname PstBlurLoaded\endcsname
\let\PstBlurLoaded\endinput
\ifx\PSTricksLoaded\endinput\else
diff --git a/Master/texmf-dist/tex/latex/pst-blur/pst-blur.sty b/Master/texmf-dist/tex/latex/pst-blur/pst-blur.sty
index c7100850cb8..fbe2ee9b440 100644
--- a/Master/texmf-dist/tex/latex/pst-blur/pst-blur.sty
+++ b/Master/texmf-dist/tex/latex/pst-blur/pst-blur.sty
@@ -20,6 +20,17 @@
%% original source files, as listed above, are part of the
%% same distribution. (The sources need not necessarily be
%% in the same archive or directory.)
+%% $Id: pst-blur.dtx,v 2.0 2005/09/08 09:48:33 giese Exp $
+%%
+%% Copyright 1998-2007 Martin Giese, mgiese@risc.uni-linz.ac.at
+%% Herbert Voss, voss@pstricks.de
+%%
+%% This file is under the LaTeX Project Public License
+%% See CTAN archives in directory macros/latex/base/lppl.txt.
+%%
+%% DESCRIPTION:
+%% `pst-blur' is a PSTricks package for blurred shadows
+%%
\RequirePackage{pstricks}
\ProvidesPackage{pst-blur}[2005/09/08 package wrapper for
pst-blur.tex (hv)]
diff --git a/Master/texmf-dist/tpm/pst-blur.tpm b/Master/texmf-dist/tpm/pst-blur.tpm
index d0ff79aa0fe..cd98ff1d783 100644
--- a/Master/texmf-dist/tpm/pst-blur.tpm
+++ b/Master/texmf-dist/tpm/pst-blur.tpm
@@ -3,7 +3,7 @@
<rdf:Description about="http://texlive.dante.de/texlive/Package/pst-blur.zip">
<TPM:Name>pst-blur</TPM:Name>
<TPM:Type>Package</TPM:Type>
- <TPM:Date>2006/01/11 23:56:35</TPM:Date>
+ <TPM:Date>2007/01/13 12:01:46</TPM:Date>
<TPM:Version>1.0</TPM:Version>
<TPM:Creator>rahtz</TPM:Creator>
<TPM:Title>
@@ -19,20 +19,21 @@ apply blurring to the normal shadow function of pstricks.
<TPM:Size>124532</TPM:Size>
<TPM:License></TPM:License>
<TPM:Build/>
- <TPM:RunFiles size="7081">
+ <TPM:RunFiles size="8221">
texmf-dist/dvips/pst-blur/pst-blur.pro
texmf-dist/tex/generic/pst-blur/pst-blur.tex
texmf-dist/tex/latex/pst-blur/pst-blur.sty
texmf-dist/tpm/pst-blur.tpm
</TPM:RunFiles>
- <TPM:DocFiles size="98905">
+ <TPM:DocFiles size="99284">
texmf-dist/doc/generic/pst-blur/Changes
texmf-dist/doc/generic/pst-blur/README
texmf-dist/doc/generic/pst-blur/pst-blur.pdf
</TPM:DocFiles>
- <TPM:SourceFiles size="18546">
-texmf-dist/source/latex/pst-blur/pst-blur.dtx
-texmf-dist/source/latex/pst-blur/pst-blur.ins
+ <TPM:SourceFiles size="19047">
+texmf-dist/source/generic/pst-blur/Makefile
+texmf-dist/source/generic/pst-blur/pst-blur.dtx
+texmf-dist/source/generic/pst-blur/pst-blur.ins
</TPM:SourceFiles>
<TPM:Provides>Package/pst-blur</TPM:Provides>
</rdf:Description>