Update of /cvsroot/crystaldoc/crystaldoc/de/texinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13213/de/texinfo
Modified Files:
Jamfile
Log Message:
Adaptation of per-language Jamfiles
Index: Jamfile
===================================================================
RCS file: /cvsroot/crystaldoc/crystaldoc/de/texinfo/Jamfile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Jamfile 31 Jan 2005 16:58:36 -0000 1.1
--- Jamfile 14 Jul 2005 18:46:41 -0000 1.2
***************
*** 1,57 ****
SubDir TOP de texinfo ;
- if $(CMD.MAKEINFO)
{
! Texi2Info de_info : [ ConcatDirs $(TOP) de texinfo cs-unix.txi ] : info : de info ;
! FLAGS.MAKEINFO on de_info += --output=crystal.info ;
! Help de_info : "Convert German user manual to Info format" ;
! }
!
! if $(CMD.TEXI2HTML)
! {
! TEXI2HTML.INIT = [ ConcatDirs $(TOP) base texi2html.init ] ;
! FLAGS.TEXI2HTML on de_html += -init_file=$(TEXI2HTML.INIT) -prefix=cs -I\ $(CRYSTAL)/docs/texinfo ;
! Texi2HTML de_html : [ ConcatDirs $(TOP) de texinfo cs-unix.txi ] : de html ;
! Help de_html : "Convert German user manual to HTML format" ;
! }
! if $(CMD.TEXI2DVI)
! {
! #This doesn't work
! #FLAGS.TEXI2DVI on de_dvi += -I\ $(CRYSTAL)/docs/texinfo ;
! Texi2DVI de_dvi : [ ConcatDirs $(TOP) de texinfo cs-unix.txi ] : de dvi ;
! Help de_dvi : "Convert German user manual to DVI format" ;
! }
! if $(CMD.TEXI2DVI) && $(CMD.DVIPS)
! {
! Texi2PS de_ps : cs-unix.txi : de ps ;
! Help de_ps : "Convert German user manual to PostScript format" ;
! }
! if $(CMD.TEXI2DVI) && $(CMD.DVIPDF)
! {
! Texi2PDF de_pdf : [ ConcatDirs $(TOP) de texinfo cs-unix.txi ] : de pdf ;
! Help de_pdf : "Convert German user manual to PDF format" ;
! }
! if $(PERL)
{
! NODEFIX = [ ConcatDirs $(TOP) base nodefix.pl ] ;
! rule RepairNodes
{
! Depends $(<) : $(>) ;
! NotFile $(<) ;
! Always $(<) ;
! TEXINFO.INCDIR on $(<) = $(3) ;
}
! actions RepairNodes
{
! $(PERL) "$(NODEFIX)" --include-dir="$(TEXINFO.INCDIR)" "$(>)" ;
}
! RepairNodes repair_de_doc : [ ConcatDirs $(TOP) de texinfo cs-unix.txi ] : $(SUBDIR) ;
! Help repair_de_doc : "Repair German Texinfo @node and @menu directives" ;
}
--- 1,74 ----
SubDir TOP de texinfo ;
{
! local alltexi = cs-unix.txi [ Filter [ Recurse : .txi ] :
! cs-unix.txi cs-dos.txi cs-mac.txi dosdef.txi macdef.txi unixdef.txi ] ;
! RepairNodes de_repairdoc : $(alltexi[1]) ;
! Help de_repairdoc : "Repair Deutsch Texinfo @node and @menu directives" ;
! Texi2Info de_info : $(alltexi) : info : de info manual : crystalspace.info ;
! Help de_info : "Convert Deutsch user manual to Info format" ;
! Texi2DVI de_dvi : $(alltexi) : de dvi manual : csmanual.dvi : -I\ $(CRYSTAL)/docs/texinfo ;
! Help de_dvi : "Convert Deutsch user manual to DVI format" ;
! Texi2PS de_ps : $(alltexi) : de ps manual : csmanual.ps ;
! Help de_ps : "Convert Deutsch user manual to PostScript format" ;
!
! Texi2PDF de_pdf : $(alltexi) : de pdf manual : csmanual.pdf ;
! Help de_pdf : "Convert Deutsch user manual to PDF format" ;
!
! local htmlroot = [ Texi2HTML de_html : $(alltexi) : de html manual :
! index.html : -prefix=cs -I\ $(CRYSTAL)/docs/texinfo ] ;
! Help de_html : "Convert Deutsch user manual to HTML format" ;
!
! if $(PERL) && $(CMD.HHC)
{
! GENDOCTOC ?= [ ConcatDirs $(TOP) base winhelp gendoctoc.pl ] ;
! actions GenDocToc
{
! $(PERL) -I"$(GENDOCTOC:D)" "$(GENDOCTOC)" manual $(>:D) $(<)
}
! actions CompileCHM
{
! cd $(<:D) ; $(CMD.HHC) $(>:BS)
}
! local outtmp = [ on $(htmlroot) GetVar LOCATE ] ;
! local hhcfile = manualtoc.hhc ;
! local hhkfile = manualindex.hhk ;
! MakeLocate $(hhcfile) $(hhkfile) : $(outtmp) ;
! GenDocToc $(hhcfile) $(hhkfile) : $(htmlroot) ;
! Depends $(hhcfile) $(hhkfile) : $(htmlroot) ;
!
! local hhpfile = csmanual.hhp ;
! local hhpcopy = $(hhpfile:G=copy) ;
! SEARCH on $(hhpfile) = $(GENDOCTOC:D) ;
! MakeLocate $(hhpcopy) : $(outtmp) ;
! Copy $(hhpcopy) : $(hhpfile) ;
! Depends $(hhpcopy) : $(hhpfile) ;
!
! local chmtmp = csmanual.chm ;
! MakeLocate $(chmtmp) : $(outtmp) ;
! CompileCHM $(chmtmp) : $(hhpcopy) ;
! Depends $(chmtmp) : $(hhpcopy) $(hhcfile) $(hhkfile) ;
!
! local outdir = [ FDirName $(LOCATE.DOCS) de chm manual ] ;
! local chmfile = $(chmtmp:G=final) ;
! MakeLocate $(chmfile) : $(outdir) ;
! Copy $(chmfile) : $(chmtmp) ;
! Depends $(chmfile) : $(chmtmp) ;
!
! RmTemps $(chmtmp) : $(hhpcopy) $(hhcfile) $(hhkfile) ;
! RmTemps $(chmfile) : $(chmtmp) ;
! Depends de_manualchm : $(chmfile) ;
! NotFile de_manualchm ;
! Help de_manualchm : "Convert Deutsch user manual to CHM format" ;
! Clean de_manualchmclean : $(chmfile) ;
! CleanDir de_manualchmclean : $(outdir) ;
! Depends clean : de_manualchmclean ;
! }
}
|