Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-foss4g/Makefile @ 63

Revision 61, 2.6 KB checked in by djay, 12 years ago (diff)

Fix default language to french.

Line 
1# Makefile for Sphinx documentation
2#
3
4# You can set these variables from the command line.
5SPHINXOPTS    = -Dlanguage=fr
6SPHINXBUILD   = sphinx-build 
7PAPER         =
8
9# Internal variables.
10DOC             = ./doc
11PAPEROPT_a4     = -D latex_paper_size=a4
12PAPEROPT_letter = -D latex_paper_size=letter
13ALLSPHINXOPTS   = -d $(DOC)/.build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
14
15.PHONY: help clean html web pickle htmlhelp latex changes linkcheck
16
17help:
18        @echo "Please use \`make <target>' where <target> is one of"
19        @echo "  html      to make standalone HTML files"
20        @echo "  pickle    to make pickle files (usable by e.g. sphinx-web)"
21        @echo "  htmlhelp  to make HTML files and a HTML help project"
22        @echo "  latex     to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
23        @echo "  changes   to make an overview over all changed/added/deprecated items"
24        @echo "  linkcheck to check all external links for integrity"
25
26clean:
27        -rm -rf $(DOC)
28
29html:
30        mkdir -p $(DOC) $(DOC)/.build/doctrees
31        $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(DOC)
32        @echo
33        @echo "Build finished. The HTML pages are in $(DOC)."
34
35#       find $(DOC) -name .svn -type d -exec /bin/rm -rf {} ';'
36
37pickle:
38        mkdir -p $(DOC)/.build/pickle $(DOC)/.build/doctrees
39        $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(DOC)/.build/pickle
40        @echo
41        @echo "Build finished; now you can process the pickle files or run"
42        @echo "  sphinx-web $(DOC)/.build/pickle"
43        @echo "to start the sphinx-web server."
44
45web: pickle
46
47htmlhelp:
48        mkdir -p $(DOC)/.build/htmlhelp $(DOC)/.build/doctrees
49        $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(DOC)/.build/htmlhelp
50        @echo
51        @echo "Build finished; now you can run HTML Help Workshop with the" \
52              ".hhp project file in $(DOC)/.build/htmlhelp."
53
54latex:
55        mkdir -p $(DOC)/.build/latex $(DOC)/.build/doctrees
56        $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(DOC)/.build/latex
57        @echo
58        @echo "Build finished; the LaTeX files are in $(DOC)/.build/latex."
59        @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
60              "run these through (pdf)latex."
61       
62#sed -i bak 's/includegraphics/includegraphics\[scale=0.45\]/g' "$(DOC)/.build/latex/PostGISIntro.tex"
63
64changes:
65        mkdir -p $(DOC)/.build/changes $(DOC)/.build/doctrees
66        $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(DOC)/.build/changes
67        @echo
68        @echo "The overview file is in $(DOC)/.build/changes."
69
70linkcheck:
71        mkdir -p $(DOC)/.build/linkcheck $(DOC)/.build/doctrees
72        $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(DOC)/.build/linkcheck
73        @echo
74        @echo "Link check complete; look for any errors in the above output " \
75              "or in $(DOC)/.build/linkcheck/output.txt."
Note: See TracBrowser for help on using the repository browser.