source: gnome/platform/gjs.xml@ 6a4996f

11.0 11.1 11.2 11.3 12.0 12.1 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 6a4996f was 6a4996f, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Update to gtk-4.4.0 (and some tags)

  • Property mode set to 100644
File size: 6.1 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 gjs-download-http "&gnome-download-http;/gjs/1.68/gjs-&gjs-version;.tar.xz">
8 <!ENTITY gjs-download-ftp "&gnome-download-ftp;/gjs/1.68/gjs-&gjs-version;.tar.xz">
9 <!ENTITY gjs-md5sum "031e5a1c3712d43d7130d4b3e11d5bbc">
10 <!ENTITY gjs-size "548 KB">
11 <!ENTITY gjs-buildsize "27 MB (with tests)">
12 <!ENTITY gjs-time "0.9 SBU (with tests)">
13]>
14
15<sect1 id="gjs" xreflabel="Gjs-&gjs-version;">
16 <?dbhtml filename="gjs.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>Gjs-&gjs-version;</title>
23
24 <indexterm zone="gjs">
25 <primary sortas="a-Gjs">Gjs</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Gjs</title>
30
31 <para>
32 <application>Gjs</application> is a set of Javascript bindings for
33 <application>GNOME</application>.
34 </para>
35
36 &lfs110a_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&gjs-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&gjs-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &gjs-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &gjs-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &gjs-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &gjs-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">Gjs Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para role="required">
76 <xref linkend="cairo"/>,
77 <xref linkend="dbus"/>,
78 <xref linkend="gobject-introspection"/>, and
79 <xref linkend="js78"/>
80 </para>
81
82 <bridgehead renderas="sect4">Recommended (required for GNOME)</bridgehead>
83 <para role="recommended">
84 <xref linkend="gtk3"/> and
85 <xref linkend="gtk4"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="sysprof"/>,
91 <xref linkend="valgrind"/> (for tests),
92 <ulink url="http://dtrace.org/blogs/about">DTrace</ulink>,
93 <ulink url="http://ltp.sourceforge.net/coverage/lcov.php">LCOV</ulink>, and
94 <ulink url="https://sourceware.org/systemtap">Systemtap</ulink>
95 </para>
96
97 <para condition="html" role="usernotes">User Notes:
98 <ulink url="&blfs-wiki;/gjs"/>
99 </para>
100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of Gjs</title>
104<!--
105 <para>
106 First, work around a bug in meson caused by support for Windows NT:
107 </para>
108
109 When scripting, 'ninja install' fails because the 'gjs' symlink is
110 generated before 'gjs-console' is installed. This seems to be due
111 to adding symbolic link support for Windows NT-based platforms.
112 This shouldn't affect us, so let's create the symlink manually
113 like we do in other packages.
114 Invalid with 1.64.3. Make sure you don't have DESTDIR
115 set, such as you'd do in an update script.
116
117<screen><userinput remap="pre">sed -i '/symlink-gjs.py/s/^/#/g' meson.build</userinput></screen>-->
118
119 <para>
120 Install <application>Gjs</application> by running the following
121 commands:
122 </para>
123
124<screen><userinput>mkdir gjs-build &amp;&amp;
125cd gjs-build &amp;&amp;
126
127meson --prefix=/usr --buildtype=release .. &amp;&amp;
128ninja</userinput></screen>
129
130 <para>
131 To test the results, issue: <command>ninja test</command>. The
132 <application>GTK</application> and <application>Cairo</application>
133 tests will fail if not running in an Xorg session. The
134 <filename>gjs:JS / Gtk4</filename> test is known to exit with an ERROR
135 on some systems.
136 </para>
137
138 <para>
139 Now, as the <systemitem class="username">root</systemitem> user:
140 </para>
141
142<screen role="root"><userinput>ninja install &amp;&amp;
143ln -sfv gjs-console /usr/bin/gjs</userinput></screen>
144
145 </sect2>
146
147 <sect2 role="commands">
148 <title>Command Explanations</title>
149
150 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
151 href="../../xincludes/meson-buildtype-release.xml"/>
152
153 </sect2>
154
155 <sect2 role="content">
156 <title>Contents</title>
157
158 <segmentedlist>
159 <segtitle>Installed Programs</segtitle>
160 <segtitle>Installed Library</segtitle>
161 <segtitle>Installed Directories</segtitle>
162
163 <seglistitem>
164 <seg>
165 gjs (symlink) and gjs-console
166 </seg>
167 <seg>
168 libgjs.so
169 </seg>
170 <seg>
171 /usr/include/gjs-1.0,
172 /usr/lib/gjs,
173 /usr/libexec/installed-tests/gjs,
174 /usr/share/gjs-1.0, and
175 /usr/share/installed-tests/gjs
176 </seg>
177 </seglistitem>
178 </segmentedlist>
179
180 <variablelist>
181 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
182 <?dbfo list-presentation="list"?>
183 <?dbhtml list-presentation="table"?>
184
185 <varlistentry id="gjs-console">
186 <term><command>gjs-console</command></term>
187 <listitem>
188 <para>
189 contains a console to run <application>JavaScript</application>
190 commands
191 </para>
192 <indexterm zone="gjs gjs-console">
193 <primary sortas="b-gjs-console">gjs-console</primary>
194 </indexterm>
195 </listitem>
196 </varlistentry>
197
198 <varlistentry id="libgjs">
199 <term><filename class="libraryfile">libgjs.so</filename></term>
200 <listitem>
201 <para>
202 contains the <application>GNOME</application> JavaScript bindings
203 </para>
204 <indexterm zone="gjs libgjs">
205 <primary sortas="c-libgjs">libgjs.so</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 </variablelist>
211
212 </sect2>
213
214</sect1>
Note: See TracBrowser for help on using the repository browser.