source: general/prog/guile.xml@ 0d7900a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 0d7900a was 0d7900a, checked in by Randy McMurchy <randy@…>, 11 years ago

Removed extraneous spaces from blank lines and at the end of lines in the .xml

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

  • Property mode set to 100644
File size: 7.9 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 <!ENTITY guile-download-http "http://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.xz">
8 <!ENTITY guile-download-ftp "ftp://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.xz">
9 <!ENTITY guile-md5sum "30ff9e94663a2e2098b52f8ce9d050b9">
10 <!ENTITY guile-size "4.2 MB">
11 <!ENTITY guile-buildsize "90 MB">
12 <!ENTITY guile-time "8.0 SBU">
13]>
14
15<sect1 id="guile" xreflabel="Guile-&guile-version;">
16<?dbhtml filename="guile.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Guile-&guile-version;</title>
24
25 <indexterm zone="guile">
26 <primary sortas="a-Guile">Guile</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Guile</title>
31
32 <para>
33 The <application>Guile</application> package contains the Project
34 GNU's extension language library. <application>Guile</application> also
35 contains a stand alone <application>Scheme</application> interpreter.
36 </para>
37
38 &lfs72_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&guile-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&guile-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &guile-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &guile-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &guile-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &guile-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Guile Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="pkgconfig"/>,
79 <xref linkend="gc"/>,
80 <xref linkend="libffi"/>, and
81 <xref linkend="libunistring"/>
82 </para>
83
84 <bridgehead renderas="sect4">Optional</bridgehead>
85 <para role="optional">
86 <xref linkend="emacs"/>
87 </para>
88
89 <para condition="html" role="usernotes">
90 User Notes: <ulink url="&blfs-wiki;/guile"/>
91 </para>
92 </sect2>
93
94 <sect2 role="installation">
95 <title>Installation of Guile</title>
96
97 <para>
98 Install <application>Guile</application> by running the following
99 commands:
100 </para>
101
102<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
103make &amp;&amp;
104make html &amp;&amp;
105
106makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
107makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi</userinput></screen>
108
109 <para>
110 If you have <xref linkend="texlive"/> installed and wish to build alternate
111 formats (PDF and postscript) of the documentation, issue the following
112 commands:
113 </para>
114
115<screen><userinput>for DIRNAME in r5rs ref
116do make -k -C doc/${DIRNAME} pdf ps
117done &amp;&amp;
118unset DIRNAME</userinput></screen>
119
120 <para>
121 To test the results, issue: <command>make check</command>.
122 </para>
123
124 <para>
125 Now, as the <systemitem class="username">root</systemitem> user:
126 </para>
127
128<screen role="root"><userinput>make install &amp;&amp;
129
130find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
131install -v -m755 -d /usr/share/doc/guile-&guile-version; &amp;&amp;
132cp -vR examples /usr/share/doc/guile-&guile-version; &amp;&amp;
133
134for DIRNAME in r5rs ref
135do
136 install -v -m755 -d /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
137 install -v -m644 doc/${DIRNAME}/*.txt \
138 /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
139 if [ -d doc/${DIRNAME}/${DIRNAME}.html ]; then
140 cp -v -R doc/${DIRNAME}/${DIRNAME}.html \
141 /usr/share/doc/guile-&guile-version;/${DIRNAME}
142 fi
143done &amp;&amp;
144
145cp -v -R doc/ref/guile.html /usr/share/doc/guile-&guile-version;/ref</userinput></screen>
146
147 <para>
148 If you built the alternate formats of the documentation, install them
149 using the following commands issued by the
150 <systemitem class="username">root</systemitem> user:
151 </para>
152
153<screen role="root"><userinput>for DIRNAME in r5rs ref
154do
155 install -v -m644 doc/${DIRNAME}/*.{pdf,ps,dvi} \
156 /usr/share/doc/guile-&guile-version;/${DIRNAME}
157done</userinput></screen>
158 </sect2>
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Programs</segtitle>
165 <segtitle>Installed Libraries</segtitle>
166 <segtitle>Installed Directories</segtitle>
167
168 <seglistitem>
169 <seg>
170 guild, guile, guile-config, guile-snarf and guile-tools
171 </seg>
172 <seg>
173 libguile-2.0.so and libguilereadline-v-18.so
174 </seg>
175 <seg>
176 /usr/include/guile,
177 /usr/lib/guile,
178 /usr/share/doc/guile-&guile-version; and
179 /usr/share/guile
180 </seg>
181 </seglistitem>
182 </segmentedlist>
183
184 <variablelist>
185 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
186 <?dbfo list-presentation="list"?>
187 <?dbhtml list-presentation="table"?>
188
189 <varlistentry id="guile-prog">
190 <term><command>guile</command></term>
191 <listitem>
192 <para>
193 is a stand-alone Scheme interpreter for
194 <application>Guile</application>.
195 </para>
196 <indexterm zone="guile guile-prog">
197 <primary sortas="b-guile">guile</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201
202 <varlistentry id="guile-config">
203 <term><command>guile-config</command></term>
204 <listitem>
205 <para>
206 is a <application>Guile</application> script which provides the
207 information necessary to link your programs against the
208 <application>Guile</application> library, in much the same way
209 PkgConfig does.
210 </para>
211 <indexterm zone="guile guile-config">
212 <primary sortas="b-guile-config">guile-config</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
217 <varlistentry id="guile-snarf">
218 <term><command>guile-snarf</command></term>
219 <listitem>
220 <para>
221 is a script to parse declarations in your
222 <application>C</application> code for
223 <application>Scheme</application> visible
224 <application>C</application> functions.
225 </para>
226 <indexterm zone="guile guile-snarf">
227 <primary sortas="b-guile-snarf">guile-snarf</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry id="guild">
233 <term><command>guild</command></term>
234 <listitem>
235 <para>
236 is a wrapper program installed along with <command>guile</command>,
237 which knows where a particular module is installed and calls it,
238 passing its arguments to the program.
239 </para>
240 <indexterm zone="guile guild">
241 <primary sortas="b-guild">guild</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 <varlistentry id="guile-tools">
247 <term><command>guile-tools</command></term>
248 <listitem>
249 <para>
250 is a symlink to <command>guild</command>.
251 </para>
252 <indexterm zone="guile guile-tools">
253 <primary sortas="b-guile-tools">guile-tools</primary>
254 </indexterm>
255 </listitem>
256 </varlistentry>
257
258 </variablelist>
259
260 </sect2>
261
262</sect1>
Note: See TracBrowser for help on using the repository browser.