source: general/prog/librep.xml@ ff104774

6.3 6.3-rc3
Last change on this file since ff104774 was 6732c094, checked in by Randy McMurchy <randy@…>, 17 years ago

Updated all the XML files (and the one stylesheet) to use the 4.5 version of DocBook XML DTD

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6716 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!-- Inserted as a reminder to do this. The mention of a test suite
8 is usually right before the root user installation commands. Please
9 delete these 12 (including one blank) lines after you are done.-->
10
11 <!-- Use one of the two mentions below about a test suite,
12 delete the line that is not applicable. Of course, if the
13 test suite uses syntax other than "make check", revise the
14 line to reflect the actual syntax to run the test suite -->
15
16 <!-- <para>This package does not come with a test suite.</para> -->
17 <!-- <para>To test the results, issue: <command>make check</command>.</para> -->
18
19 <!ENTITY librep-download-http "http://downloads.sourceforge.net/librep/librep-&librep-version;.tar.gz">
20 <!ENTITY librep-download-ftp " ">
21 <!ENTITY librep-md5sum "ad4ad851ff9f82a5d61024cd96bc2998">
22 <!ENTITY librep-size "1.2 MB">
23 <!ENTITY librep-buildsize "13.4 MB">
24 <!ENTITY librep-time "0.47 SBU">
25]>
26
27<sect1 id="librep" xreflabel="librep-&librep-version;">
28 <?dbhtml filename="librep.html" ?>
29
30 <sect1info>
31 <othername>$LastChangedBy$</othername>
32 <date>$Date$</date>
33 </sect1info>
34
35 <title>Librep-&librep-version;</title>
36
37 <indexterm zone="librep">
38 <primary sortas="a-Librep">Librep</primary>
39 </indexterm>
40
41 <sect2 role="package">
42 <title>Introduction to Librep</title>
43
44 <para>The <application>librep</application> package contains a Lisp system.
45 This is useful for scripting or for applications that may use the Lisp
46 interpreter as an extension language.</para>
47
48 <bridgehead renderas="sect3">Package Information</bridgehead>
49 <itemizedlist spacing="compact">
50 <listitem>
51 <para>Download (HTTP): <ulink url="&librep-download-http;"/></para>
52 </listitem>
53 <listitem>
54 <para>Download (FTP): <ulink url="&librep-download-ftp;"/></para>
55 </listitem>
56 <listitem>
57 <para>Download MD5 sum: &librep-md5sum;</para>
58 </listitem>
59 <listitem>
60 <para>Download size: &librep-size;</para>
61 </listitem>
62 <listitem>
63 <para>Estimated disk space required: &librep-buildsize;</para>
64 </listitem>
65 <listitem>
66 <para>Estimated build time: &librep-time;</para>
67 </listitem>
68 </itemizedlist>
69
70 <bridgehead renderas="sect3">Librep Dependencies</bridgehead>
71
72 <bridgehead renderas="sect4">Required</bridgehead>
73 <para role="required"><xref linkend="gdbm"/></para>
74
75 <bridgehead renderas="sect4">Optional</bridgehead>
76 <para role="optional"><xref linkend="gmp"/> and
77 <xref linkend="gcc"/> (build Java so that
78 <filename class='libraryfile'>libffi</filename> is built)</para>
79
80 <para condition="html" role="usernotes">User Notes:
81 <ulink url="&blfs-wiki;/librep"/></para>
82
83 </sect2>
84
85 <sect2 role="installation">
86 <title>Installation of Librep</title>
87
88 <para>Install <application>librep</application> by running the following
89 commands:</para>
90
91<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib &amp;&amp;
92make</userinput></screen>
93
94 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
95
96<screen role="root"><userinput>make install</userinput></screen>
97
98 </sect2>
99
100 <sect2 role="commands">
101 <title>Command Explanations</title>
102
103 <para><parameter>--libexecdir=/usr/lib</parameter>: This parameter installs
104 files to <filename class="directory">/usr/lib/rep</filename> instead of
105 <filename class="directory">/usr/libexec/rep</filename>.</para>
106
107 </sect2>
108
109 <sect2 role="content">
110 <title>Contents</title>
111
112 <segmentedlist>
113 <segtitle>Installed Programs</segtitle>
114 <segtitle>Installed Libraries</segtitle>
115 <segtitle>Installed Directories</segtitle>
116
117 <seglistitem>
118 <seg>rep, rep-config, rep-remote, rep-xgettext, and repdoc</seg>
119 <seg>librep.so and numerous modules installed in the /usr/lib/rep
120 hierarchy</seg>
121 <seg>/usr/lib/rep, /usr/share/emacs/site-lisp, and /usr/share/rep</seg>
122 </seglistitem>
123 </segmentedlist>
124
125 <variablelist>
126 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
127 <?dbfo list-presentation="list"?>
128 <?dbhtml list-presentation="table"?>
129
130 <varlistentry id="rep">
131 <term><command>rep</command></term>
132 <listitem>
133 <para>is the Lisp interpreter.</para>
134 <indexterm zone="librep rep">
135 <primary sortas="b-rep">rep</primary>
136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 <varlistentry id="librep-lib">
141 <term><filename class='libraryfile'>librep.so</filename></term>
142 <listitem>
143 <para> contains the functions necessary for the Lisp interpreter.</para>
144 <indexterm zone="librep librep-lib">
145 <primary sortas="c-librep">librep.so</primary>
146 </indexterm>
147 </listitem>
148 </varlistentry>
149
150 </variablelist>
151
152 </sect2>
153
154</sect1>
155
Note: See TracBrowser for help on using the repository browser.