sphinx needs docutils libs for man file generation; typo on french version

svn: r20765
This commit is contained in:
Jérôme Rapinat 2012-12-04 08:51:01 +00:00
parent d6b6d09577
commit 159d683ed7
3 changed files with 16 additions and 14 deletions

View File

@ -288,7 +288,7 @@ gramps(1) 4.0.0 gramps(1)
**DOCUMENTATION** **DOCUMENTATION**
La documentation-utilisateur est disponible par via un navigateur La documentation-utilisateur est disponible par un navigateur
standard sous la forme du manuel Gramps. standard sous la forme du manuel Gramps.
La documentation pour développeur est disponible sur le site La documentation pour développeur est disponible sur le site

View File

@ -1,4 +1,4 @@
.TH "GRAMPS" "1" "03 December 2012" "4.0" "Gramps" .TH "GRAMPS" "1" "04 December 2012" "4.0" "Gramps"
.SH NAME .SH NAME
gramps \- Gramps Documentation gramps \- Gramps Documentation
. .
@ -329,7 +329,7 @@ La traduction française:
Jérôme Rapinat <\fI\%romjerome@yahoo.fr\fP> Jérôme Rapinat <\fI\%romjerome@yahoo.fr\fP>
.TP .TP
.B \fBDOCUMENTATION\fP .B \fBDOCUMENTATION\fP
La documentation\-utilisateur est disponible par via un navigateur La documentation\-utilisateur est disponible par un navigateur
standard sous la forme du manuel Gramps. standard sous la forme du manuel Gramps.
.sp .sp
La documentation pour développeur est disponible sur le site La documentation pour développeur est disponible sur le site

View File

@ -130,6 +130,7 @@ def build():
os.system('''%(program)s -b html . _build/html''' % {'program': sphinxCmd}) os.system('''%(program)s -b html . _build/html''' % {'program': sphinxCmd})
os.system('''%(program)s -b htmlhelp . _build/htmlhelp''' % {'program': sphinxCmd}) os.system('''%(program)s -b htmlhelp . _build/htmlhelp''' % {'program': sphinxCmd})
if DOCUTILS:
os.system('''%(program)s -b man . .''' % {'program': sphinxCmd}) os.system('''%(program)s -b man . .''' % {'program': sphinxCmd})
os.system('''%(program)s -b text . _build/text''' % {'program': sphinxCmd}) os.system('''%(program)s -b text . _build/text''' % {'program': sphinxCmd})
os.system('''%(program)s -b changes . _build/changes''' % {'program': sphinxCmd}) os.system('''%(program)s -b changes . _build/changes''' % {'program': sphinxCmd})
@ -141,6 +142,7 @@ def build():
% {'lang': lang, 'program': sphinxCmd}) % {'lang': lang, 'program': sphinxCmd})
os.system('''%(program)s -b htmlhelp -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s''' os.system('''%(program)s -b htmlhelp -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd}) % {'lang': lang, 'program': sphinxCmd})
if DOCUTILS:
os.system('''%(program)s -b man %(lang)s %(lang)s''' os.system('''%(program)s -b man %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd}) % {'lang': lang, 'program': sphinxCmd})
os.system('''%(program)s -b text -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s''' os.system('''%(program)s -b text -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''