source: general/genlib/js60.xml@ fc935fb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.1 bdubbs/svn kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since fc935fb was f93f09e, checked in by Douglas R. Reno <renodr@…>, 6 years ago

Update to gc-8.0.0
Note that gc-8 seems to be a major version with a lot of API changes (both new and removed), however guile seems to compile and function properly with it.

Fix a typo that I made when adding js60. Thanks Spiky

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

  • Property mode set to 100644
File size: 6.0 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 js60-download-http "http://ftp.gnome.org/pub/gnome/teams/releng/tarballs-needing-help/mozjs/mozjs-&JS60-version;.tar.bz2">
8 <!ENTITY js60-download-ftp "ftp://ftp.gnome.org/pub/gnome/teams/releng/tarballs-needing-help/mozjs/mozjs-&JS60-version;.tar.bz2">
9 <!ENTITY js60-md5sum "202f71313e53d9b92e7c578107541539">
10 <!ENTITY js60-size "31 MB">
11 <!ENTITY js60-buildsize "640 MB"> <!-- The buildsize is over 4GB! Actually installed is much smaller. -->
12 <!ENTITY js60-time "6.6 SBU">
13]>
14
15<sect1 id="js60" xreflabel="js60-&JS60-version;">
16 <?dbhtml filename="js60.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>JS-&JS60-version;</title>
24
25 <indexterm zone="js60">
26 <primary sortas="a-js60">js60</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to JS</title>
31
32 <para>
33 <application>JS</application> is Mozilla's JavaScript engine
34 written in C. This package is present for GJS.
35 </para>
36
37 &lfs83_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&js60-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&js60-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &js60-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &js60-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &js60-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &js60-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">JS60 Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="autoconf213"/>,
78 <xref linkend="icu"/>,
79 <xref linkend="nspr"/>,
80 <xref linkend="python2"/>,
81 <xref linkend="xorg7-lib"/>,
82 <xref linkend="yasm"/>, and
83 <xref linkend="zip"/>
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <xref linkend="doxygen"/>
89 </para>
90
91 <para condition="html" role="usernotes">
92 User Notes: <ulink url="&blfs-wiki;/js60"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of JS</title>
98
99 <para>
100 Install <application>JS</application> by running the following
101 commands:
102 </para>
103
104 &shell-env;
105
106<screen><userinput>mkdir mozjs-build &amp;&amp;
107cd mozjs-build &amp;&amp;
108
109../js/src/configure --prefix=/usr \
110 --with-intl-api \
111 --with-system-zlib \
112 --with-system-nspr \
113 --with-system-icu \
114 --disable-jemalloc \
115 --enable-readline &amp;&amp;
116make</userinput></screen>
117
118 <para>
119 This package does not come with a working test suite.
120 </para>
121
122 <para>
123 Now, as the <systemitem class="username">root</systemitem> user:
124 </para>
125
126<screen role="root"><userinput>make install</userinput></screen>
127
128 </sect2>
129
130 <sect2 role="commands">
131 <title>Command Explanations</title>
132
133 <para>
134 <parameter>--with-*</parameter>: These parameters allow the build system
135 to use system versions of the above libriares. These are required for
136 stability.
137 </para>
138
139 <para>
140 <parameter>--enable-readline</parameter>: This switch enables Readline
141 support in the JS shell.
142 </para>
143
144 <para>
145 <parameter>--disable-jemalloc</parameter>: This switch disables the
146 internal memory allocator used in JS60. jemalloc causes a conflict with glibc.
147 </para>
148
149 </sect2>
150
151 <sect2 role="content">
152 <title>Contents</title>
153
154 <segmentedlist>
155 <segtitle>Installed Programs</segtitle>
156 <segtitle>Installed Libraries)</segtitle>
157 <segtitle>Installed Directories</segtitle>
158
159 <seglistitem>
160 <seg>
161 js60 and js60-config
162 </seg>
163 <!-- Yes, the static library is required. -->
164 <seg>
165 libmozjs-60.so and libjs_static.ajs <!-- These two may conflict, can't
166 verify without a rebuild unfortunately :-( -->
167 </seg>
168 <seg>
169 /usr/include/mozjs-60
170 </seg>
171 </seglistitem>
172 </segmentedlist>
173
174 <variablelist>
175 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
176 <?dbfo list-presentation="list"?>
177 <?dbhtml list-presentation="table"?>
178
179 <varlistentry id="js6-js60">
180 <term><command>js60</command></term>
181 <listitem>
182 <para>
183 provides a command line interface to the
184 <application>JavaScript</application> engine.
185 </para>
186 <indexterm zone="js60 js60">
187 <primary sortas="b-js60">js60</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="js60-config">
193 <term><command>js60-config</command></term>
194 <listitem>
195 <para>
196 is used to find the JS compiler and linker flags.
197 </para>
198 <indexterm zone="js60 js60-config">
199 <primary sortas="b-js60-config">js60-config</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 <varlistentry id="libmozjs-60">
205 <term><filename class="libraryfile">libmozjs-60.so</filename></term>
206 <listitem>
207 <para>
208 contains the Mozilla JavaScript API functions.
209 </para>
210 <indexterm zone="js60 libmozjs-60">
211 <primary sortas="c-libmozjs60">libmozjs-60.so</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215 </variablelist>
216 </sect2>
217</sect1>
Note: See TracBrowser for help on using the repository browser.