source: gnome/applications/gnome-terminal.xml@ 7b8bec72

12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 7b8bec72 was 5bb3ce05, checked in by Douglas R. Reno <renodr@…>, 11 months ago

Tag GNOME Applications

  • Property mode set to 100644
File size: 6.0 KB
RevLine 
[8e16ba1]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 gnome-terminal-download-http
[0235588]8 "https://gitlab.gnome.org/GNOME/gnome-terminal/-/archive/&gnome-terminal-version;/gnome-terminal-&gnome-terminal-version;.tar.gz">
[8e16ba1]9 <!ENTITY gnome-terminal-download-ftp
[0235588]10 " ">
[8c0499c]11 <!ENTITY gnome-terminal-md5sum "d7b0b8bdce595bb0eb83ef99b43e8869">
[0235588]12 <!ENTITY gnome-terminal-size "2.8 MB">
[8c0499c]13 <!ENTITY gnome-terminal-buildsize "32 MB">
14 <!ENTITY gnome-terminal-time "0.4 SBU">
[8e16ba1]15]>
16
17<sect1 id="gnome-terminal" xreflabel="gnome-terminal-&gnome-terminal-version;">
18 <?dbhtml filename="gnome-terminal.html"?>
19
20
21 <title>gnome-terminal-&gnome-terminal-version;</title>
22
23 <indexterm zone="gnome-terminal">
24 <primary sortas="a-gnome-terminal">gnome-terminal</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to GNOME Terminal</title>
29
30 <para>
31 The <application>GNOME Terminal</application> package contains the
32 terminal emulator for <application>GNOME</application> Desktop.
33 </para>
34
[5bb3ce05]35 &lfs120_checked;
[8e16ba1]36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&gnome-terminal-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&gnome-terminal-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &gnome-terminal-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &gnome-terminal-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &gnome-terminal-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &gnome-terminal-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">GNOME Terminal Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Required</bridgehead>
74 <para role="required">
[2cd1071]75 <xref linkend="dconf"/>,
[36bbe491]76 <phrase revision="systemd"><xref linkend="gnome-shell"/>,</phrase>
[8e16ba1]77 <xref linkend="gsettings-desktop-schemas"/>,
[0129a2f5]78 <xref linkend="itstool"/>,
79 <xref linkend="pcre2"/>, and
[43ca148]80 <xref linkend="vte"/>
[8e16ba1]81 </para>
82
[a8f943ff]83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
[eb305e7b]85 <phrase revision="sysv"><xref linkend="gnome-shell"/> and</phrase>
[a8f943ff]86 <xref linkend="nautilus"/>
87 </para>
88
[0a76c13]89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
[8558044]91 <xref linkend="desktop-file-utils"/>, and
[a5026b6]92 <ulink url="&appstream-glib-url;">appstream-glib</ulink>
[0a76c13]93 </para>
94
[8e16ba1]95
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of GNOME Terminal</title>
100
[b5db2361]101 <para>
[bc58b26]102 First, fix some deprecated schema entries:
[b5db2361]103 </para>
104
105<screen><userinput remap="pre">sed -i -r 's:"(/system):"/org/gnome\1:g' src/external.gschema.xml</userinput></screen>
106
[8e16ba1]107 <para>
108 Install <application>GNOME Terminal</application> by
109 running the following commands:
110 </para>
111
[b5db2361]112<screen><userinput>mkdir build &amp;&amp;
[0235588]113cd build &amp;&amp;
[b5db2361]114
[91318eb]115meson setup --prefix=/usr --buildtype=release .. &amp;&amp;
[b5db2361]116ninja</userinput></screen>
[36bbe491]117
[8e16ba1]118 <para>
[0235588]119 To test the results, issue: <command>ninja test</command>.
[8e16ba1]120 </para>
121
122 <para>
123 Now, as the <systemitem class="username">root</systemitem> user:
124 </para>
125
[b5db2361]126<screen role="root" revision="systemd"><userinput>ninja install</userinput></screen>
[448f3c0]127
[b5db2361]128<screen role="root" revision="sysv"><userinput>ninja install &amp;&amp;
[448f3c0]129rm -v /usr/lib/systemd/user/gnome-terminal-server.service</userinput></screen>
[8e16ba1]130
[82192a18]131 <note>
132 <para>
133 To run <application>GNOME Terminal</application>, the environment
134 variable <envar>LANG</envar> must be set to a UTF-8 locale
135 <emphasis>prior</emphasis> to starting the graphical environment.
136 </para>
137 </note>
[9b175e27]138
[8e16ba1]139 </sect2>
140
[2cd1071]141 <sect2 role="commands">
142 <title>Command Explanations</title>
143
[0235588]144 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
145 href="../../xincludes/meson-buildtype-release.xml"/>
146
[fe1e1de]147 <para>
[b5db2361]148 <option>-Dsearch_provider=false</option>: This switch disables
[0129a2f5]149 the <quote>search <application>gnome-shell</application></quote>
[fe1e1de]150 provider. Use this option if you do not have gnome-shell installed.
[2cd1071]151 </para>
152
[fe1e1de]153 <para>
[b5db2361]154 <option>-Dnautilus_extension=false</option>: This switch disables
[fe1e1de]155 a dependency on the <application>nautilus</application> file
156 manager. Use this option if you do not have Nautilus installed.
[200806a6]157 </para>
[2cd1071]158
159 </sect2>
160
[8e16ba1]161 <sect2 role="content">
162 <title>Contents</title>
163
164 <segmentedlist>
165 <segtitle>Installed Program</segtitle>
166 <segtitle>Installed Libraries</segtitle>
167 <segtitle>Installed Directories</segtitle>
168
169 <seglistitem>
170 <seg>
[251551f]171 gnome-terminal
[8e16ba1]172 </seg>
173 <seg>
[31970bc3]174 /usr/lib/nautilus/extensions-4/libterminal-nautilus.so
[36bbe491]175 (Nautilus Extension)
[8e16ba1]176 </seg>
177 <seg>
[0235588]178 /usr/{lib,share/help/*}/gnome-terminal and
179 /usr/share/xdg-terminals
[8e16ba1]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="gnome-terminal-prog">
190 <term><command>gnome-terminal</command></term>
191 <listitem>
192 <para>
[4c24eb0a]193 is the <application>GNOME</application> Terminal Emulator
[8e16ba1]194 </para>
195 <indexterm zone="gnome-terminal gnome-terminal-prog">
196 <primary sortas="b-gnome-terminal">gnome-terminal</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 </variablelist>
202
203 </sect2>
204
205</sect1>
Note: See TracBrowser for help on using the repository browser.