~ubuntu-branches/ubuntu/precise/dblatex/precise

« back to all changes in this revision

Viewing changes to docs/install.xml

  • Committer: Package Import Robot
  • Author(s): Andreas Hoenen
  • Date: 2011-07-09 15:20:37 UTC
  • mfrom: (0.8.1) (0.6.2) (8.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110709152037-8ao9l07dmgyjn6vn
* New upstram release
* New upstream release fixes the following open Debian BTS issues:
  + Don't crash on XeTeX backend compilation of spanish documents with an
    <appendix> element.  Thanks to W. Martin Borgert for reporting.
    Closes: #629110
* Remove patches that have been integrated upstream:
  + 20_filename_replaceable.patch (#623590)
* Take over actualized copyright period of upstream COPYRIGHT to
  debian/copyright.
* Replace python build helper dh_pysupport with dh_python2.
* In draft mode set draft watermark for XeTeX backend, too.  Thanks to W.
  Martin Borgert for reporting and for the patch.  Closes: #629514

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="UTF-8"?>
2
 
<chapter>
 
2
<chapter id="sec-install">
3
3
<title>Installing the Package</title>
4
4
 
5
5
<section>
51
51
</variablelist>
52
52
</section>
53
53
 
54
 
<section>
 
54
<section id="sec-install-unix">
55
55
<title>Installing on Unix like Systems</title>
56
56
 
57
57
<section>
174
174
</section>
175
175
 
176
176
<section>
177
 
<title>Installing the tool</title>
 
177
<title>Installing from the source tarball</title>
178
178
 
179
179
<para>The steps to follow are the following:</para>
180
180
 
182
182
<listitem>
183
183
<para>Untar the ball. For a bzipped release, do as follow:</para>
184
184
 
185
 
<programlisting>% tar xvfj dblatex-x.x.x.tar.bz2</programlisting>
 
185
<screen>% tar xvfj dblatex-x.x.x.tar.bz2</screen>
186
186
 
187
187
<para>For a gzipped release, do as follow:</para>
188
188
 
189
 
<programlisting>% tar xvfz dblatex-x.x.x.tar.gz</programlisting>
 
189
<screen>% tar xvfz dblatex-x.x.x.tar.gz</screen>
190
190
</listitem>
191
191
 
192
192
<listitem>
203
203
</listitem>
204
204
</orderedlist>
205
205
</section>
 
206
<section id="sec-install-pypi">
 
207
<title>Installing from the Python Egg</title>
 
208
 
 
209
<para>Since version 0.3.2 dblatex is distributed as a Python Egg in the <ulink url="http://pypi.python.org/pypi">Python Package Index (PyPI)</ulink>. It requires to have <command>easy_install</command> installed.</para>
 
210
 
 
211
<para>The procedure to follow is:</para>
 
212
 
 
213
<orderedlist>
 
214
<listitem>
 
215
<para>Call simply easy_install:</para>
 
216
<screen>
 
217
% <userinput>easy_install dblatex</userinput>
 
218
Searching for dblatex
 
219
Reading http://pypi.python.org/simple/dblatex/
 
220
Reading http://dblatex.sf.net
 
221
Best match: dblatex 0.3.1.1
 
222
Downloading http://pypi.python.org/packages/2.5/d/dblatex/dblatex-0.3.1.1-py2.5.egg#md5=8520d596e473ff544eb9dcdc5175d7ae
 
223
Processing dblatex-0.3.1.1-py2.5.egg
 
224
creating /path/to/dblatex-0.3.1.1-py2.5.egg
 
225
Extracting dblatex-0.3.1.1-py2.5.egg to /path/to
 
226
Adding dblatex 0.3.1.1 to easy-install.pth file
 
227
Installing dblatex script to /path/to
 
228
 
 
229
Installed /path/to/dblatex-0.3.1.1-py2.5.egg
 
230
</screen>
 
231
</listitem>
 
232
</orderedlist>
 
233
<para>That's it!</para>
 
234
</section>
206
235
</section>
207
236
</section>
208
237