source: general/prog/guile.xml@ 6732c094

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.3 6.3-rc1 6.3-rc2 6.3-rc3 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 6732c094 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: 8.3 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.gz">
8 <!ENTITY guile-download-ftp "ftp://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.gz">
9 <!ENTITY guile-md5sum "c2ff2a2231f0cbb2e838dd8701a587c5">
10 <!ENTITY guile-size "3.0 MB">
11 <!ENTITY guile-buildsize "39.6 MB (additional 32.2 MB to install all the docs)">
12 <!ENTITY guile-time "1.1 SBU (includes building all documentation)">
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>The <application>Guile</application> package contains the Project
33 GNU's extension language library. <application>Guile</application> also
34 contains a stand alone <application>Scheme</application> interpreter.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&guile-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&guile-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &guile-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &guile-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &guile-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &guile-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
59 <itemizedlist spacing="compact">
60 <listitem>
61 <para>Required patch: <ulink
62 url="&patch-root;/guile-&guile-version;-gcc4-1.patch"/></para>
63 </listitem>
64 <listitem>
65 <para>Required patch: <ulink
66 url="&patch-root;/guile-&guile-version;-slib-1.patch"/></para>
67 </listitem>
68 </itemizedlist>
69
70 <bridgehead renderas="sect3">Guile Dependencies</bridgehead>
71
72 <!--
73 <bridgehead renderas="sect4">Required</bridgehead>
74 <para role="required"><xref linkend="gmp"/></para>
75 -->
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="required"><xref linkend="emacs"/></para>
79
80 <para condition="html" role="usernotes">User Notes:
81 <ulink url="&blfs-wiki;/guile"/></para>
82
83 </sect2>
84
85 <sect2 role="installation">
86 <title>Installation of Guile</title>
87
88 <para>Install <application>Guile</application> by running the following
89 commands:</para>
90
91<screen><userinput>patch -Np1 -i ../guile-&guile-version;-gcc4-1.patch &amp;&amp;
92patch -Np1 -i ../guile-&guile-version;-slib-1.patch &amp;&amp;
93./configure --prefix=/usr --with-threads &amp;&amp;
94make</userinput></screen>
95
96 <para>If you have <application>teTeX</application> installed and wish to
97 build alternate formats of the documentation, issue the following
98 commands:</para>
99
100<screen><userinput>for DIRNAME in goops r5rs ref tutorial
101do
102 make -k -C doc/$DIRNAME pdf ps html
103done &amp;&amp;
104makeinfo --plaintext -o doc/goops/goops.txt doc/goops/goops.texi &amp;&amp;
105makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
106makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi &amp;&amp;
107makeinfo --plaintext -o doc/tutorial/guile-tut.txt \
108 doc/tutorial/guile-tut.texi &amp;&amp;
109unset DIRNAME</userinput></screen>
110
111 <para>To test the results, issue: <command>make check</command>.</para>
112
113 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
114
115<screen role="root"><userinput>make install &amp;&amp;
116find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
117install -v -m755 -d /usr/share/doc/guile-&guile-version; &amp;&amp;
118cp -v -R examples /usr/share/doc/guile-&guile-version;</userinput></screen>
119
120 <para>If you built the alternate formats of the documentation, install it
121 using the following commands issued by the
122 <systemitem class="username">root</systemitem> user:</para>
123
124<screen role="root"><userinput>for DIRNAME in goops r5rs ref tutorial
125do
126 install -v -m755 -d /usr/share/doc/guile-&guile-version;/$DIRNAME/html
127 install -v -m644 doc/$DIRNAME/*.{pdf,ps,dvi,txt} \
128 /usr/share/doc/guile-&guile-version;/$DIRNAME
129 if [ -d doc/$DIRNAME/$DIRNAME.html ]; then
130 install -v -m644 doc/$DIRNAME/$DIRNAME.html/* \
131 /usr/share/doc/guile-&guile-version;/$DIRNAME/html
132 fi
133done &amp;&amp;
134
135install -v -m644 doc/goops/hierarchy.{eps,png} \
136 /usr/share/doc/guile-&guile-version;/goops &amp;&amp;
137install -v -m644 doc/ref/guile.html/* \
138 /usr/share/doc/guile-&guile-version;/ref/html &amp;&amp;
139install -v -m644 doc/tutorial/guile-tut.html/* \
140 /usr/share/doc/guile-&guile-version;/tutorial/html</userinput></screen>
141 </sect2>
142
143 <sect2 role="content">
144 <title>Contents</title>
145
146 <segmentedlist>
147 <segtitle>Installed Programs</segtitle>
148 <segtitle>Installed Libraries</segtitle>
149 <segtitle>Installed Directories</segtitle>
150
151 <seglistitem>
152 <seg>guile, guile-config, guile-snarf, and guile-tools</seg>
153 <seg>libguile-ltdl.{so,a}, libguile-srfi-srfi-13-14-v-1.{so,a},
154 libguile-srfi-srfi-4-v-1.{so,a}, libguile.{so,a},
155 /libguilereadline-v-12.{so,a} and libqthreads.{so,a}</seg>
156 <!-- <seg>libguile.{so,a}, libguilereadline-v-17.{so,a},
157 libguile-srfi-srfi-13-14-v-3.{so,a}, libguile-srfi-srfi-1-v-3.{so,a},
158 libguile-srfi-srfi-4-v-3.{so,a} and
159 libguile-srfi-srfi-60-v-2.{so,a}</seg>-->
160 <seg>/usr/include/guile, /usr/include/libguile,
161 /usr/share/doc/guile-&guile-version; and /usr/share/guile</seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="guile-prog">
171 <term><command>guile</command></term>
172 <listitem>
173 <para>is a stand-alone Scheme interpreter for
174 <application>Guile</application>.</para>
175 <indexterm zone="guile guile-prog">
176 <primary sortas="b-guile">guile</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="guile-config">
182 <term><command>guile-config</command></term>
183 <listitem>
184 <para>is a <application>Guile</application> script which provides
185 the information necessary to link your programs against the
186 <application>Guile</application> library, in much the same way
187 <xref linkend="pkgconfig"></xref> does.</para>
188 <indexterm zone="guile guile-config">
189 <primary sortas="b-guile-config">guile-config</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="guile-snarf">
195 <term><command>guile-snarf</command></term>
196 <listitem>
197 <para>is a script to parse declarations in your
198 <application>C</application> code for <application>Scheme</application>
199 visible <application>C</application> functions, i
200 <application>Scheme</application> objects to be used by
201 <application>C</application> code, etc.</para>
202 <indexterm zone="guile guile-snarf">
203 <primary sortas="b-guile-snarf">guile-snarf</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 <varlistentry id="guile-tools">
209 <term><command>guile-tools</command></term>
210 <listitem>
211 <para>is a wrapper program installed along with
212 <command>guile</command> which knows where a particular
213 module is installed and calls it passing its args to a program.</para>
214 <indexterm zone="guile guile-tools">
215 <primary sortas="b-guile-tools">guile-tools</primary>
216 </indexterm>
217 </listitem>
218 </varlistentry>
219
220 </variablelist>
221
222 </sect2>
223
224</sect1>
Note: See TracBrowser for help on using the repository browser.