mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
added perl modules page
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@360 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
2a20417e61
commit
3d60760d28
@ -65,8 +65,8 @@ evaluate_retval
|
||||
|
||||
<para>Finally, we need to make these scripts executable:</para>
|
||||
|
||||
<para><screen><userinput>chmod 755 ifup-eth0 &&
|
||||
chmod 755 ifdown-eth0</userinput></screen></para>
|
||||
<para><screen><userinput>chmod 755 /etc/sysconfig/network-devices/ifup-eth0 &&
|
||||
chmod 755 /etc/sysconfig/network-devices/ifdown-eth0</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -73,12 +73,14 @@
|
||||
<!-- Programming -->
|
||||
<!ENTITY general-prog SYSTEM "prog/prog.xml">
|
||||
<!ENTITY % python SYSTEM "prog/python/python.ent">
|
||||
<!ENTITY % perl-modules SYSTEM "prog/perl/perl-modules.ent">
|
||||
<!ENTITY % librep SYSTEM "prog/librep/librep.ent">
|
||||
<!ENTITY % jdk SYSTEM "prog/jdk/j2sdk.ent">
|
||||
<!ENTITY % ruby SYSTEM "prog/ruby/ruby.ent">
|
||||
<!ENTITY % gnat SYSTEM "prog/gnat/gnat.ent">
|
||||
<!ENTITY % gcc SYSTEM "prog/gcc/gcc.ent">
|
||||
%python;
|
||||
%perl-modules;
|
||||
%librep;
|
||||
%jdk;
|
||||
%ruby;
|
||||
|
9
general/prog/perl-modules.xml
Normal file
9
general/prog/perl-modules.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<sect1 id="perl-modules" xreflabel="perl-modules">
|
||||
<?dbhtml filename="perl-modules.html" dir="general"?>
|
||||
<title>perl modules</title>
|
||||
|
||||
&perl-modules-intro;
|
||||
&perl-modules-inst;
|
||||
|
||||
</sect1>
|
||||
|
25
general/prog/perl/perl-modules-inst.xml
Normal file
25
general/prog/perl/perl-modules-inst.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<sect2>
|
||||
<title>Installation of perl modules</title>
|
||||
|
||||
<para>Install perl modules by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>perl Makefile.PL &&
|
||||
make &&
|
||||
make install</userinput></screen></para>
|
||||
|
||||
<para>Below are installation instructions for modules that happen to be
|
||||
broken at the present time.</para>
|
||||
|
||||
<para>Gtk-Perl-&Gtk-Perl-version;:
|
||||
<screen><userinput>perl Makefile.PL --without-guessing &&
|
||||
make
|
||||
cp Gtk/Makefile Gtk/Makefile.bak &&
|
||||
sed '/^OBJECT/s/xs/./g' Gtk/Makefile.bak > Gtk/Makefile &&
|
||||
cp Gtk/Makefile Gtk/Makefile.bak &&
|
||||
sed '/^OBJECT/s/build/./g' Gtk/Makefile.bak > Gtk/Makefile &&
|
||||
make &&
|
||||
make install</userinput></screen></para>
|
||||
|
||||
|
||||
</sect2>
|
||||
|
17
general/prog/perl/perl-modules-intro.xml
Normal file
17
general/prog/perl/perl-modules-intro.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<sect2>
|
||||
<title>Introduction to perl modules</title>
|
||||
|
||||
<para>The perl module packages add useful objects to the Perl
|
||||
language. Modules utilized by packages throughout BLFS are listed here
|
||||
along with their dependencies.</para>
|
||||
|
||||
<screen><ulink url="http://search.cpan.org/CPAN/authors/id/C/CS/CSOE/PDL-&PDL-version;.tar.gz">PDL-&PDL-version</ulink>
|
||||
<ulink url="http://search.cpan.org/CPAN/authors/id/A/AA/AALLAN/Astro-FITS-Header-Astro-FITS-Header-version;.tar.gz">Astro-FITS-Header-&Astro-FITS-Header-version;</ulink>
|
||||
<ulink url="http://search.cpan.org/CPAN/authors/id/L/LU/LUPUS/Gtk-Perl-&Gtk-Perl-version;.tar.gz">Gtk-Perl-&Gtk-Perl-version;</ulink>
|
||||
<ulink url="http://search.cpan.org/CPAN/authors/id/D/DM/DMEGG/XML-Writer-&XML-Writer-version;.tar.gz">XML-Writer-&XML-Writer-version;</ulink>
|
||||
<ulink url="http://search.cpan.org/CPAN/authors/id/C/CO/COOPERCL/XML-Parser-&XML-Parser-version;.tar.gz">XML-Parser-&XML-Parser-version;</ulink>
|
||||
<ulink url="http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/Parse-RecDescent-&Parse-RecDescent-version;.tar.gz">Parse-RecDescent-&Parse-RecDescent-version;</ulink>
|
||||
</screen>
|
||||
|
||||
|
||||
</sect2>
|
12
general/prog/perl/perl-modules.ent
Normal file
12
general/prog/perl/perl-modules.ent
Normal file
@ -0,0 +1,12 @@
|
||||
<!ENTITY perl-modules SYSTEM "../perl-modules.xml">
|
||||
<!ENTITY perl-modules-intro SYSTEM "perl-modules-intro.xml">
|
||||
<!ENTITY perl-modules-inst SYSTEM "perl-modules-inst.xml">
|
||||
<!ENTITY perl-modules-exp SYSTEM "perl-modules-exp.xml">
|
||||
<!ENTITY perl-modules-desc SYSTEM "perl-modules-desc.xml">
|
||||
<!ENTITY perl-modules-config SYSTEM "perl-modules-config.xml">
|
||||
<!ENTITY Gtk-Perl-version "0.7008">
|
||||
<!ENTITY PDL-version "2.3.4">
|
||||
<!ENTITY XML-Parser-version "2.31">
|
||||
<!ENTITY XML-Writer-version "0.4">
|
||||
<!ENTITY Astro-FITS-Header-version "2.2">
|
||||
<!ENTITY Parse-RecDescent-version "1.80">
|
@ -3,6 +3,7 @@
|
||||
<title>Programming</title>
|
||||
|
||||
&Python;
|
||||
&perl-modules;
|
||||
&librep;
|
||||
&j2sdk;
|
||||
&ruby;
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
"/usr/share/docbook/docbookx.dtd" [
|
||||
|
||||
<!ENTITY version "20021026">
|
||||
<!ENTITY releasedate "October 26th, 2002">
|
||||
<!ENTITY version "20021027">
|
||||
<!ENTITY releasedate "October 27th, 2002">
|
||||
|
||||
<!ENTITY % book SYSTEM "book/book.ent">
|
||||
<!ENTITY % preface SYSTEM "preface/preface.ent">
|
||||
|
@ -10,6 +10,9 @@ page in Chapter 1 for details on who wrote what.</para>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>October 27th, 2002 [larry]: Prog: Added page for perl
|
||||
modules used in BLFS</para></listitem>
|
||||
|
||||
<listitem><para>October 26th, 2002 [larry]: Basicnet: Update to
|
||||
links-0.98.</para></listitem>
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
<para>Install gimp by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
<para><screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &&
|
||||
make &&
|
||||
make install</userinput></screen></para>
|
||||
|
||||
|
@ -19,6 +19,7 @@ is useful for photo retouching, image composition and image authoring.</para>
|
||||
<xref linkend="GTK"/>
|
||||
gimp will utilize:
|
||||
<xref linkend="libtiff"/>, <xref linkend="libpng"/>, <xref
|
||||
linkend="libjpeg"/>, <ulink url="http://starship.python.net/~gward/mpeglib/mpeg_lib-1.3.1.tar.gz">mpeg_lib-1.3.1</ulink> and <xref linkend="Python"/></screen>
|
||||
linkend="libjpeg"/>, <ulink url="http://starship.python.net/~gward/mpeglib/mpeg_lib-1.3.1.tar.gz">mpeg_lib-1.3.1</ulink>, <xref linkend="Python"/>
|
||||
and <xref linkend="perl-modules"/>:Gtk-Perl-&Gtk-Perl-version;, PDL-&PDL-version; and Parse-RecDescent-&Parse-RecDescent-version;</screen>
|
||||
|
||||
</sect2>
|
||||
|
Loading…
Reference in New Issue
Block a user