Update of /cvsroot/crystaldoc/crystaldoc/es/texinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13213/es/texinfo
Modified Files:
Jamfile
Log Message:
Adaptation of per-language Jamfiles
Index: Jamfile
===================================================================
RCS file: /cvsroot/crystaldoc/crystaldoc/es/texinfo/Jamfile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Jamfile 27 Jun 2004 13:31:53 -0000 1.2
--- Jamfile 14 Jul 2005 18:46:41 -0000 1.3
***************
*** 1,55 ****
SubDir TOP es texinfo ;
- if $(CMD.MAKEINFO)
{
! Texi2Info es_info : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : info : es info ;
! FLAGS.MAKEINFO on es_info += --output=crystal.info ;
! Help es_info : "Convert Spanish user manual to Info format" ;
! }
!
! if $(CMD.TEXI2HTML)
! {
! TEXI2HTML.INIT = [ ConcatDirs $(TOP) base texi2html.init ] ;
! FLAGS.TEXI2HTML on es_html += -init_file=$(TEXI2HTML.INIT) -prefix=cs -I\ $(CRYSTAL)/docs/texinfo ;
! Texi2HTML es_html : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : es html ;
! Help es_html : "Convert Spanish user manual to HTML format" ;
! }
! if $(CMD.TEXI2DVI)
! {
! Texi2DVI es_dvi : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : es dvi ;
! Help es_dvi : "Convert Spanish user manual to DVI format" ;
! }
! if $(CMD.TEXI2DVI) && $(CMD.DVIPS)
! {
! Texi2PS es_ps : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : es ps ;
! Help es_ps : "Convert Spanish user manual to PostScript format" ;
! }
! if $(CMD.TEXI2DVI) && $(CMD.DVIPDF)
! {
! Texi2PDF es_pdf : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : es pdf ;
! Help es_pdf : "Convert Spanish 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_es_doc : [ ConcatDirs $(TOP) es texinfo cs-unix.txi ] : $(SUBDIR) ;
! Help repair_es_doc : "Repair Spanish Texinfo @node and @menu directives" ;
}
--- 1,74 ----
SubDir TOP es 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 es_repairdoc : $(alltexi[1]) ;
! Help es_repairdoc : "Repair Spanish Texinfo @node and @menu directives" ;
! Texi2Info es_info : $(alltexi) : info : es info manual : crystalspace.info ;
! Help es_info : "Convert Spanish user manual to Info format" ;
! Texi2DVI es_dvi : $(alltexi) : es dvi manual : csmanual.dvi : -I\ $(CRYSTAL)/docs/texinfo ;
! Help es_dvi : "Convert Spanish user manual to DVI format" ;
! Texi2PS es_ps : $(alltexi) : es ps manual : csmanual.ps ;
! Help es_ps : "Convert Spanish user manual to PostScript format" ;
!
! Texi2PDF es_pdf : $(alltexi) : es pdf manual : csmanual.pdf ;
! Help es_pdf : "Convert Spanish user manual to PDF format" ;
!
! local htmlroot = [ Texi2HTML es_html : $(alltexi) : es html manual :
! index.html : -prefix=cs -I\ $(CRYSTAL)/docs/texinfo ] ;
! Help es_html : "Convert Spanish 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) es 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 es_manualchm : $(chmfile) ;
! NotFile es_manualchm ;
! Help es_manualchm : "Convert Spanish user manual to CHM format" ;
! Clean es_manualchmclean : $(chmfile) ;
! CleanDir es_manualchmclean : $(outdir) ;
! Depends clean : es_manualchmclean ;
! }
}
|