source: xfce/apps/midori.xml@ 37191af

systemd-13485
Last change on this file since 37191af was 37191af, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Sync to trunk r17270. Last round for the night.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17330 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.2 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 midori-download-http
8 "http://www.midori-browser.org/downloads/midori_&midori-version;_all_.tar.bz2">
9 <!ENTITY midori-download-ftp " ">
10 <!ENTITY midori-md5sum "fcc03ef759fce4fe9f2446d9da4a065e">
11 <!ENTITY midori-size "1.4 MB">
12 <!ENTITY midori-buildsize "91 MB">
13 <!ENTITY midori-time "0.8 SBU">
14]>
15
16<sect1 id="midori" xreflabel="Midori-&midori-version;">
17 <?dbhtml filename="midori.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Midori-&midori-version;</title>
25
26 <indexterm zone="midori">
27 <primary sortas="a-Midori">Midori</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Midori</title>
32
33 <para>
34 <application>Midori</application> is a lightweight web browser that uses
35 <application>WebKitGTK+</application>.
36 </para>
37
38 &lfs78_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&midori-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&midori-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &midori-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &midori-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &midori-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &midori-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Midori Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="cmake"/>,
80 <xref linkend="gcr"/>,
81 <xref linkend="libnotify"/>,
82 <xref linkend="webkitgtk"/> (see "Command Explanations"), and
83 <xref linkend="vala"/>
84 </para>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="librsvg"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="gtk-doc"/>,
94 <xref linkend="webkitgtk2"/>, and
95 <xref linkend="libzeitgeist"/>
96 </para>
97
98 <para condition="html" role="usernotes">
99 User Notes: <ulink url="&blfs-wiki;/midori"/>
100 </para>
101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of Midori</title>
105<!--
106 <note>
107 <para>
108 The tarball was not created from a directory, thus it is better to create a directory to uncompress it:
109 </para>
110<screen><userinput>mkdir -v midori-&midori-version; &amp;&amp;
111tar -xf midori_&midori-version;_all_.tar.bz2 -C midori-&midori-version; &amp;&amp;
112cd midori-&midori-version;</userinput></screen>
113 </note>-->
114
115 <para>
116 Install <application>Midori</application> by running the following
117 commands:
118 </para>
119
120<screen><userinput>mkdir build &amp;&amp;
121cd build &amp;&amp;
122
123cmake -DCMAKE_INSTALL_PREFIX=/usr \
124 -DCMAKE_BUILD_TYPE=Release \
125 -DUSE_ZEITGEIST=OFF \
126 -DHALF_BRO_INCOM_WEBKIT2=ON \
127 -DUSE_GTK3=1 \
128 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/midori-&midori-version; \
129 .. &amp;&amp;
130make</userinput></screen>
131
132 <para>
133 This package does not come with a working test suite.
134 </para>
135
136 <para>
137 Now, as the <systemitem class="username">root</systemitem> user:
138 </para>
139
140<screen role="root"><userinput>make install</userinput></screen>
141 </sect2>
142
143 <sect2 role="commands">
144 <title>Command Explanations</title>
145
146 <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
147 used to apply a higher level of compiler optimizations.</para>
148
149 <para>
150 <parameter>-DUSE_ZEITGEIST=OFF</parameter>: Remove this switch if
151 Zeitgeist is installed.
152 </para>
153
154 <para>
155 <parameter>-DHALF_BRO_INCOM_WEBKIT2=ON</parameter>: Links to
156 <xref linkend="webkitgtk"/> instead of <xref linkend="webkitgtk2"/>.
157 Strictly speaking, <xref linkend="webkitgtk"/> is not required and
158 Midori could be linked to <xref linkend="webkitgtk2"/>. The former is
159 deemed <quote>experimental</quote> by upstream, but seems to work well.
160 The latter is an older API and less secure.
161 </para>
162
163 <para>
164 <parameter>-DUSE_GTK3=1</parameter>: Use this switch chooses
165 <application>WebKitGTK+</application> built against
166 <application>GTK+ 3</application>, for <application>WebKit2</application>
167 layer support.
168 </para>
169
170 <para>
171 <option>-DUSE_APIDOCS=1</option>: Use this switch if
172 <application>GTK-Doc</application> is installed and you
173 wish to build and install the API documentation.
174 </para>
175
176 </sect2>
177
178 <sect2 role="content">
179 <title>Contents</title>
180
181 <segmentedlist>
182 <segtitle>Installed Program</segtitle>
183 <segtitle>Installed Libraries</segtitle>
184 <segtitle>Installed Directories</segtitle>
185
186 <seglistitem>
187 <seg>
188 midori
189 </seg>
190 <seg>
191 libmidori-core.so
192 </seg>
193 <seg>
194 /{etc/xdg,/usr/{lib,share}}/midori and
195 /usr/share/doc/midori-&midori-version;
196 </seg>
197 </seglistitem>
198 </segmentedlist>
199
200 <variablelist>
201 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
202 <?dbfo list-presentation="list"?>
203 <?dbhtml list-presentation="table"?>
204
205 <varlistentry id="midori-prog">
206 <term><command>midori</command></term>
207 <listitem>
208 <para>
209 is a lightweight <application>WebKitGTK+</application> browser.
210 </para>
211 <indexterm zone="midori midori-prog">
212 <primary sortas="b-midori">midori</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
217 </variablelist>
218
219 </sect2>
220
221</sect1>
Note: See TracBrowser for help on using the repository browser.