source: postlfs/editors/gedit.xml@ ddf89fff

12.0 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 ddf89fff was 336ce86, checked in by Douglas R. Reno <renodr@…>, 12 months ago

gedit: remove dependency on gtksourceview

  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[3bef2f0]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
[f95f14cd]7 <!ENTITY gedit-download-http "&gnome-download-http;/gedit/&gnome-45;/gedit-&gedit-version;.tar.xz">
8 <!ENTITY gedit-download-ftp "&gnome-download-ftp;/gedit/&gnome-45;/gedit-&gedit-version;.tar.xz">
9 <!ENTITY gedit-md5sum "dca62f35c6364e1fc4f16c271af687ab">
[c517fd0]10 <!ENTITY gedit-size "2.6 MB">
[f95f14cd]11 <!ENTITY gedit-buildsize "49 MB (with tests)">
12 <!ENTITY gedit-time "0.1 SBU (using parallelism=4; with tests)">
[3bef2f0]13]>
14
15<sect1 id="gedit" xreflabel="Gedit-&gedit-version;">
16 <?dbhtml filename="gedit.html"?>
17
18
19 <title>Gedit-&gedit-version;</title>
20
21 <indexterm zone="gedit">
22 <primary sortas="a-Gedit">Gedit</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Gedit</title>
27
28 <para>
29 The <application>Gedit</application> package contains a lightweight
30 UTF-8 text editor for the <application>GNOME</application> Desktop.
31 </para>
32
[cfd4fa8]33 &lfs113_checked;
[3bef2f0]34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&gedit-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&gedit-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &gedit-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &gedit-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &gedit-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &gedit-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">Gedit Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Required</bridgehead>
72 <para role="required">
[cb6ea7a]73 <!--<xref linkend="git"/>, unneeded -->
[3bef2f0]74 <xref linkend="gsettings-desktop-schemas"/>,
[c517fd0]75 <xref linkend="itstool"/>,
[f95f14cd]76 <xref linkend="libpeas"/>,
77 <xref linkend="libgedit"/>, and
[c517fd0]78 <xref linkend="tepl"/>
[3bef2f0]79 </para>
80
81 <bridgehead renderas="sect4">Recommended</bridgehead>
82 <para role="recommended">
[074eb7b]83 <xref linkend="gspell"/>,
[96e9478]84 <xref role="runtime" linkend="gvfs"/> (runtime),
[fbbe92f]85 <xref linkend="iso-codes"/>, and
[3bef2f0]86 <xref linkend="pygobject3"/>
[ba056d7]87 (<application>Python</application> 3 module)
[3bef2f0]88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
[7007944]92 <xref linkend="gtk-doc"/>,
[3c2936fe]93 <xref linkend="vala"/>, and
[c6b192c]94 <ulink url="https://launchpad.net/zeitgeist">zeitgeist</ulink>
[3bef2f0]95 </para>
96
97 </sect2>
98
99 <sect2 role="installation">
100 <title>Installation of Gedit</title>
101
[73780d5]102 <para>
103 First change the <filename>meson.build</filename> script so that
104 it can accept a <option>release</option> build.
105 </para>
106
107<screen><userinput>sed -i s/plain/release/ meson.build</userinput></screen>
108
[3bef2f0]109 <para>
110 Install <application>Gedit</application> by running the following
111 commands:
112 </para>
113
[c517fd0]114<screen><userinput>mkdir gedit-build &amp;&amp;
115cd gedit-build &amp;&amp;
[3c2936fe]116
[73780d5]117meson setup --prefix=/usr \
118 --buildtype=release \
119 -Dgtk_doc=false \
[3e22581]120 .. &amp;&amp;
[3c2936fe]121ninja</userinput></screen>
[3bef2f0]122
123 <para>
[3c2936fe]124 To test the results, issue: <command>ninja test</command>.
[3bef2f0]125 </para>
126
127 <para>
128 Now, as the <systemitem class="username">root</systemitem> user:
129 </para>
130
[825e41ec]131<screen role="root"><userinput>ninja install</userinput></screen>
132
133 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
134 href="../../xincludes/gsettings-destdir.xml"/>
[3bef2f0]135
136 </sect2>
137
138 <sect2 role="commands">
139 <title>Command Explanations</title>
[eb6cb8f]140<!--
[3918112a]141 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
142 href="../../xincludes/meson-buildtype-release.xml"/>
[eb6cb8f]143-->
[3bef2f0]144 <para>
[3e22581]145 <parameter>-Dgtk_doc=false</parameter>: This switch disables
146 generating the API documentation. Omit this switch if you have
147 <xref linkend="gtk-doc"/> installed and wish to generate the API
[fbbe92f]148 documentation.
149 </para>
150
[3bef2f0]151 </sect2>
152
153 <sect2 role="content">
154 <title>Contents</title>
155
156 <segmentedlist>
157 <segtitle>Installed Program</segtitle>
[c3c56b2]158 <segtitle>Installed Libraries</segtitle>
[3bef2f0]159 <segtitle>Installed Directories</segtitle>
160
161 <seglistitem>
162 <seg>
[8558044]163 gedit
[3bef2f0]164 </seg>
[c3c56b2]165 <seg>
[296a3866]166 libgedit-44.so
[c3c56b2]167 </seg>
[3bef2f0]168 <seg>
[296a3866]169 /usr/include/gedit-44 and
[6e1f9cd]170 /usr/{lib,share,share/help/*}/gedit
[3bef2f0]171 </seg>
172 </seglistitem>
173 </segmentedlist>
174
175 <variablelist>
176 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
177 <?dbfo list-presentation="list"?>
178 <?dbhtml list-presentation="table"?>
179
180 <varlistentry id="gedit-prog">
181 <term><command>gedit</command></term>
182 <listitem>
183 <para>
184 is a lightweight text editor integrated with the
[4c24eb0a]185 <application>GNOME</application> Desktop
[3bef2f0]186 </para>
187 <indexterm zone="gedit gedit-prog">
188 <primary sortas="b-gedit">gedit</primary>
189 </indexterm>
190 </listitem>
191 </varlistentry>
192
193 </variablelist>
194
195 </sect2>
196
197</sect1>
Note: See TracBrowser for help on using the repository browser.