diff options
author | Gervase Markham <gerv@gerv.net> | 2014-01-17 10:15:14 +0000 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2014-01-17 10:15:14 +0000 |
commit | 4105a4885d093295c71dd5d08e160b3e6cc7ee0f (patch) | |
tree | 317a067c7ca5d1556ba9208f358403cb996b48b2 /docs/en/rst/modules.rst | |
parent | 22c96de30e07d73456cb336896f9c483f8790b8d (diff) | |
download | bugs-4105a4885d093295c71dd5d08e160b3e6cc7ee0f.tar bugs-4105a4885d093295c71dd5d08e160b3e6cc7ee0f.tar.gz bugs-4105a4885d093295c71dd5d08e160b3e6cc7ee0f.tar.bz2 bugs-4105a4885d093295c71dd5d08e160b3e6cc7ee0f.tar.xz bugs-4105a4885d093295c71dd5d08e160b3e6cc7ee0f.zip |
Bug 912064 - convert docs to ReStructured Text (.rst) format. r,a=justdave.
Diffstat (limited to 'docs/en/rst/modules.rst')
-rw-r--r-- | docs/en/rst/modules.rst | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/docs/en/rst/modules.rst b/docs/en/rst/modules.rst new file mode 100644 index 000000000..2dced86bc --- /dev/null +++ b/docs/en/rst/modules.rst @@ -0,0 +1,158 @@ + + +.. _install-perlmodules-manual: + +=================================== +Manual Installation of Perl Modules +=================================== + +.. _modules-manual-instructions: + +Instructions +############ + +If you need to install Perl modules manually, here's how it's done. +Download the module using the link given in the next section, and then +apply this magic incantation, as root: + +:: + + bash# tar -xzvf <module>.tar.gz + bash# cd <module> + bash# perl Makefile.PL + bash# make + bash# make test + bash# make install + +.. note:: In order to compile source code under Windows you will need to obtain + a 'make' utility. The :command:`nmake` utility provided with + Microsoft Visual C++ may be used. As an alternative, there is a + utility called :command:`dmake` available from CPAN which is + written entirely in Perl. + As described in :ref:`modules-manual-download`, however, most + packages already exist and are available from ActiveState or theory58S. + We highly recommend that you install them using the ppm GUI available with + ActiveState and to add the theory58S repository to your list of repositories. + +.. _modules-manual-download: + +Download Locations +################## + +.. note:: Running Bugzilla on Windows requires the use of ActiveState + Perl |min-perl-ver| or higher. Many modules already exist in the core + distribution of ActiveState Perl. Additional modules can be downloaded + from `<http://cpan.uwinnipeg.ca/PPMPackages/10xx/>`_ + if you use Perl |min-perl-ver|. + +CGI: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/CGI.pm/>`_ + Documentation: `<http://perldoc.perl.org/CGI.html>`_ + +Data-Dumper: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/Data-Dumper/>`_ + Documentation: `<http://search.cpan.org/dist/Data-Dumper/Dumper.pm>`_ + +Date::Format (part of TimeDate): + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/TimeDate/>`_ + Documentation: `<http://search.cpan.org/dist/TimeDate/lib/Date/Format.pm>`_ + +DBI: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/DBI/>`_ + Documentation: `<http://dbi.perl.org/docs/>`_ + +DBD::mysql: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/DBD-mysql/>`_ + Documentation: `<http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql.pm>`_ + +DBD::Pg: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/DBD-Pg/>`_ + Documentation: `<http://search.cpan.org/dist/DBD-Pg/Pg.pm>`_ + +Template-Toolkit: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/Template-Toolkit/>`_ + Documentation: `<http://www.template-toolkit.org/docs.html>`_ + +GD: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/GD/>`_ + Documentation: `<http://search.cpan.org/dist/GD/GD.pm>`_ + +Template::Plugin::GD: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/Template-GD/>`_ + Documentation: `<http://www.template-toolkit.org/docs/aqua/Modules/index.html>`_ + +MIME::Parser (part of MIME-tools): + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/MIME-tools/>`_ + Documentation: `<http://search.cpan.org/dist/MIME-tools/lib/MIME/Parser.pm>`_ + +.. _modules-manual-optional: + +Optional Modules +################ + +Chart::Lines: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/Chart/>`_ + Documentation: `<http://search.cpan.org/dist/Chart/Chart.pod>`_ + +GD::Graph: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/GDGraph/>`_ + Documentation: `<http://search.cpan.org/dist/GDGraph/Graph.pm>`_ + +GD::Text::Align (part of GD::Text::Util): + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/GDTextUtil/>`_ + Documentation: `<http://search.cpan.org/dist/GDTextUtil/Text/Align.pm>`_ + +XML::Twig: + +:: + + CPAN Download Page: `<http://search.cpan.org/dist/XML-Twig/>`_ + Documentation: `<http://standards.ieee.org/resources/spasystem/twig/twig_stable.html>`_ + +PatchReader: + +:: + + CPAN Download Page: `<http://search.cpan.org/author/JKEISER/PatchReader/>`_ + Documentation: `<http://www.johnkeiser.com/mozilla/Patch_Viewer.html>`_ + + |