1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- %%
- %% This file generates files required to use the listings package.
- %% At your command prompt write
- %%
- %% tex listings.ins
- %%
- %%
- %% (w)(c) 1996--1999,2002 Carsten Heinz
- %%
- %% This file is distributed under the terms of the LaTeX Project Public
- %% License from CTAN archives in directory macros/latex/base/lppl.txt.
- %% Either version 1.0 or, at your option, any later version.
- %%
- %% This file is completely free and comes without any warranty.
- %%
- %% Permission is granted to change this file. You are not allowed to
- %% distribute any changed version of this file unless you rename it.
- %%
- \input docstrip
- \preamble
- \endpreamble
- \usedir{tex/latex/listings}
- \keepsilent
- \askforoverwritefalse
- %
- % generate base package
- %
- \generate{
- \file{listings.sty}{\from{listings.dtx}{kernel}}
- \file{lstmisc.sty}{\from{listings.dtx}{misc,0.21}}
- \file{lstdoc.sty}{\from{listings.dtx}{doc}}
- \file{lstdrvrs.ins}{\from{lstdrvrs.dtx}{install}}
- \file{listings.cfg}{\from{lstdrvrs.dtx}{config}}
- }
- %
- % generate dummy patch if necessary
- %
- \newif\ifdummypatch
- \def\lstinsIfFileExists#1#2#3{% <filename><pre-input><post-input>
- \openin\inputcheck #1\relax
- \ifeof\inputcheck\else
- \closein\inputcheck
- #2%
- \@@input #1
- #3%
- \fi}
- \def\ProvidesFile#1[#2]{\def\lstpatch{#2}\endinput}
- \def\lstinsCheckVersion#1 #2{%
- \ifx #2v\dummypatchtrue \expandafter\lstinsGobbleNil \fi
- \afterassignment\lstinsCheckVersion@ \count\z@#2}
- \def\lstinsCheckVersion@.{%
- \afterassignment\lstinsGobbleNil \count\tw@}
- \def\lstinsGobbleNil#1\@nil{%
- \ifdummypatch\else
- \edef\patchversion{\the\count\z@.\the\count\tw@}%
- \ifx\lstversion\patchversion\else
- \dummypatchtrue
- \fi
- \fi}
- \Msg{checking listings version ...}
- \lstinsIfFileExists{listings.sty}
- {\def\NeedsTeXFormat#1{\endinput}}
- {\let\lstversion\fileversion
- \lstinsIfFileExists{lstpatch.sty}%
- {\let\fileversion\@undefined}%
- {\ifx\fileversion\@undefined
- \expandafter\lstinsCheckVersion\lstpatch\@nil
- \fi}%
- }
- \ifdummypatch
- \generate{\file{lstpatch.sty}{\from{listings.dtx}{patch}}}
- \fi
- %
- % generate language driver files
- %
- \batchinput{lstdrvrs.ins}
- \Msg{*}
- \Msg{* You probably need to move all created `.sty' and `.cfg'}
- \Msg{* files into a directory searched by TeX.}
- \Msg{*}
- \Msg{* And don't forget to refresh your filename database}
- \Msg{* if your TeX distribution uses such a database.}
- \Msg{*}
- \endbatchfile
|