blob: 7998305f287c05ae53c9cc88e87aac577945977e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY librep-download-http "https://download.tuxfamily.org/librep/librep_&librep-version;.tar.xz">
<!ENTITY librep-download-ftp " ">
<!ENTITY librep-md5sum "036195b371006848e29ed6f50ddc8475">
<!ENTITY librep-size "840 KB">
<!ENTITY librep-buildsize "10 MB">
<!ENTITY librep-time "0.3 SBU">
]>
<sect1 id="librep" xreflabel="librep-&librep-version;">
<?dbhtml filename="librep.html" ?>
<title>Librep-&librep-version;</title>
<indexterm zone="librep">
<primary sortas="a-Librep">Librep</primary>
</indexterm>
<sect2 role="package">
<title>Introduction to Librep</title>
<para>
The <application>librep</application> package contains a Lisp system.
This is useful for scripting or for applications that may use the Lisp
interpreter as an extension language.
</para>
&lfs120_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Download (HTTP): <ulink url="&librep-download-http;"/>
</para>
</listitem>
<listitem>
<para>
Download (FTP): <ulink url="&librep-download-ftp;"/>
</para>
</listitem>
<listitem>
<para>
Download MD5 sum: &librep-md5sum;
</para>
</listitem>
<listitem>
<para>
Download size: &librep-size;
</para>
</listitem>
<listitem>
<para>
Estimated disk space required: &librep-buildsize;
</para>
</listitem>
<listitem>
<para>
Estimated build time: &librep-time;
</para>
</listitem>
</itemizedlist>
<!--
<bridgehead renderas="sect3">Librep Dependencies</bridgehead>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional">
<xref linkend="libffi"/>
</para>
-->
</sect2>
<sect2 role="installation">
<title>Installation of Librep</title>
<para>
Install <application>librep</application> by running the following
commands:
</para>
<screen><userinput>./configure --prefix=/usr --disable-static &&
make</userinput></screen>
<para>
This package does not come with a test suite.
</para>
<para>
Now, as the <systemitem class="username">root</systemitem> user:
</para>
<screen role="root"><userinput>sed -i '5043,5044 d' libtool &&
make install</userinput></screen>
</sect2>
<sect2 role="content">
<title>Contents</title>
<segmentedlist>
<segtitle>Installed Programs</segtitle>
<segtitle>Installed Libraries</segtitle>
<segtitle>Installed Directories</segtitle>
<seglistitem>
<seg>rep, <!--rep-config, -->rep-remote, rep-xgettext, and repdoc</seg>
<seg>librep.so and numerous modules installed in the /usr/lib/rep
hierarchy</seg>
<seg>/usr/lib/rep, /usr/share/emacs/site-lisp, and /usr/share/rep</seg>
</seglistitem>
</segmentedlist>
<variablelist>
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
<?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?>
<varlistentry id="rep">
<term><command>rep</command></term>
<listitem>
<para>
is the Lisp interpreter
</para>
<indexterm zone="librep rep">
<primary sortas="b-rep">rep</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="librep-lib">
<term><filename class="libraryfile">librep.so</filename></term>
<listitem>
<para>
contains the functions necessary for the Lisp interpreter
</para>
<indexterm zone="librep librep-lib">
<primary sortas="c-librep">librep.so</primary>
</indexterm>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
|