source: general/prog/guile.xml@ efdbb27

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 efdbb27 was efdbb27, checked in by Krejzi <krejzi@…>, 11 years ago

More package updates.

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

  • Property mode set to 100644
File size: 7.8 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"/> and
80 <xref linkend="libunistring"/>
81 </para>
82
83 <bridgehead renderas="sect4">Optional</bridgehead>
84 <para role="optional">
85 <xref linkend="emacs"/>
86 </para>
87
88 <para condition="html" role="usernotes">
89 User Notes: <ulink url="&blfs-wiki;/guile"/>
90 </para>
91 </sect2>
92
93 <sect2 role="installation">
94 <title>Installation of Guile</title>
95
96 <para>
97 Install <application>Guile</application> by running the following
98 commands:
99 </para>
100
101<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
102make &amp;&amp;
103make html &amp;&amp;
104
105makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
106makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi</userinput></screen>
107
108 <para>
109 If you have <xref linkend="texlive"/> installed and wish to build alternate
110 formats (PDF and postscript) of the documentation, issue the following
111 commands:
112 </para>
113
114<screen><userinput>for DIRNAME in r5rs ref
115do make -k -C doc/${DIRNAME} pdf ps
116done &amp;&amp;
117unset DIRNAME</userinput></screen>
118
119 <para>
120 To test the results, issue: <command>make check</command>.
121 </para>
122
123 <para>
124 Now, as the <systemitem class="username">root</systemitem> user:
125 </para>
126
127<screen role="root"><userinput>make install &amp;&amp;
128
129find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
130install -v -m755 -d /usr/share/doc/guile-&guile-version; &amp;&amp;
131cp -vR examples /usr/share/doc/guile-&guile-version; &amp;&amp;
132
133for DIRNAME in r5rs ref
134do
135 install -v -m755 -d /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
136 install -v -m644 doc/${DIRNAME}/*.txt \
137 /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
138 if [ -d doc/${DIRNAME}/${DIRNAME}.html ]; then
139 cp -v -R doc/${DIRNAME}/${DIRNAME}.html \
140 /usr/share/doc/guile-&guile-version;/${DIRNAME}
141 fi
142done &amp;&amp;
143
144cp -v -R doc/ref/guile.html /usr/share/doc/guile-&guile-version;/ref</userinput></screen>
145
146 <para>
147 If you built the alternate formats of the documentation, install them
148 using the following commands issued by the
149 <systemitem class="username">root</systemitem> user:
150 </para>
151
152<screen role="root"><userinput>for DIRNAME in r5rs ref
153do
154 install -v -m644 doc/${DIRNAME}/*.{pdf,ps,dvi} \
155 /usr/share/doc/guile-&guile-version;/${DIRNAME}
156done</userinput></screen>
157 </sect2>
158
159 <sect2 role="content">
160 <title>Contents</title>
161
162 <segmentedlist>
163 <segtitle>Installed Programs</segtitle>
164 <segtitle>Installed Libraries</segtitle>
165 <segtitle>Installed Directories</segtitle>
166
167 <seglistitem>
168 <seg>
169 guild, guile, guile-config, guile-snarf and guile-tools
170 </seg>
171 <seg>
172 libguile-2.0.so and libguilereadline-v-18.so
173 </seg>
174 <seg>
175 /usr/include/guile,
176 /usr/lib/guile,
177 /usr/share/doc/guile-&guile-version; and
178 /usr/share/guile
179 </seg>
180 </seglistitem>
181 </segmentedlist>
182
183 <variablelist>
184 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
185 <?dbfo list-presentation="list"?>
186 <?dbhtml list-presentation="table"?>
187
188 <varlistentry id="guile-prog">
189 <term><command>guile</command></term>
190 <listitem>
191 <para>
192 is a stand-alone Scheme interpreter for
193 <application>Guile</application>.
194 </para>
195 <indexterm zone="guile guile-prog">
196 <primary sortas="b-guile">guile</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="guile-config">
202 <term><command>guile-config</command></term>
203 <listitem>
204 <para>
205 is a <application>Guile</application> script which provides the
206 information necessary to link your programs against the
207 <application>Guile</application> library, in much the same way
208 PkgConfig does.
209 </para>
210 <indexterm zone="guile guile-config">
211 <primary sortas="b-guile-config">guile-config</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215
216 <varlistentry id="guile-snarf">
217 <term><command>guile-snarf</command></term>
218 <listitem>
219 <para>
220 is a script to parse declarations in your
221 <application>C</application> code for
222 <application>Scheme</application> visible
223 <application>C</application> functions.
224 </para>
225 <indexterm zone="guile guile-snarf">
226 <primary sortas="b-guile-snarf">guile-snarf</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="guild">
232 <term><command>guild</command></term>
233 <listitem>
234 <para>
235 is a wrapper program installed along with <command>guile</command>,
236 which knows where a particular module is installed and calls it,
237 passing its arguments to the program.
238 </para>
239 <indexterm zone="guile guild">
240 <primary sortas="b-guild">guild</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 <varlistentry id="guile-tools">
246 <term><command>guile-tools</command></term>
247 <listitem>
248 <para>
249 is a symlink to <command>guild</command>.
250 </para>
251 <indexterm zone="guile guile-tools">
252 <primary sortas="b-guile-tools">guile-tools</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 </variablelist>
258
259 </sect2>
260
261</sect1>
Note: See TracBrowser for help on using the repository browser.