source: general/genlib/libdbusmenuqt.xml@ f7412376

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 f7412376 was f7412376, checked in by Ken Moffat <ken@…>, 9 years ago

My final tags for the moment - for some of these, I'm happy to treat them as a build dep, but for many others they seem to have functionality which I haven't explored, so only 'built'.

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

  • Property mode set to 100644
File size: 5.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 libdbusmenu-qt-download-http "http://launchpad.net/libdbusmenu-qt/trunk/&libdbusmenu-qt-version;/+download/libdbusmenu-qt-&libdbusmenu-qt-version;.tar.bz2">
8 <!ENTITY libdbusmenu-qt-download-ftp " ">
9 <!ENTITY libdbusmenu-qt-md5sum "9a49484927669cd2ec91b3bf9ba8b79e">
10 <!ENTITY libdbusmenu-qt-size "37 KB">
11 <!ENTITY libdbusmenu-qt-buildsize "3.8 MB">
12 <!ENTITY libdbusmenu-qt-time "0.3 SBU">
13]>
14
15<sect1 id="libdbusmenu-qt" xreflabel="libdbusmenu-qt-&libdbusmenu-qt-version;">
16 <?dbhtml filename="libdbusmenu-qt.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libdbusmenu-qt-&libdbusmenu-qt-version;</title>
24
25 <indexterm zone="libdbusmenu-qt">
26 <primary sortas="a-libdbusmenu-qt">libdbusmenu-qt</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libdbusmenu-qt</title>
31
32 <para>This library provides a <application>Qt</application> implementation
33 of the DBusMenu specs, which goal is to expose menus on DBus.</para>
34
35 &lfs77_checked; &gcc5_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&libdbusmenu-qt-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&libdbusmenu-qt-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &libdbusmenu-qt-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &libdbusmenu-qt-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &libdbusmenu-qt-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &libdbusmenu-qt-time;</para>
56 </listitem>
57 </itemizedlist>
58
59<!--
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing='compact'>
62 <listitem>
63 <para>Required patch: <ulink
64 url="&patch-root;/libdbusmenu-qt-&libdbusmenu-qt-version;-fixes-1.patch"/></para>
65 </listitem>
66 </itemizedlist>
67-->
68 <bridgehead renderas="sect3">libdbusmenu-qt Dependencies</bridgehead>
69
70 <bridgehead renderas="sect4">Required</bridgehead>
71 <para role="required">
72 <xref linkend="qt4"/>
73 </para>
74
75 <bridgehead renderas="sect4">Optional</bridgehead>
76 <para role="optional">
77 <xref linkend="qjson"/> (for building the test suite) and
78 <xref linkend="doxygen"/> (for building the API documentation)
79 </para>
80
81 <para condition="html" role="usernotes">User Notes:
82 <ulink url="&blfs-wiki;/libdbusmenu-qt"/></para>
83
84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of libdbusmenu-qt</title>
88
89 <para>Install <application>libdbusmenu-qt</application> by running the following
90 commands:</para>
91
92<screen><userinput>mkdir build &amp;&amp;
93cd build &amp;&amp;
94
95cmake -DCMAKE_INSTALL_PREFIX=/usr \
96 -DCMAKE_BUILD_TYPE=Release \
97 -DWITH_DOC=OFF .. &amp;&amp;
98make</userinput></screen>
99
100 <para>To test the results
101 (<ulink url="http://qjson.sourceforge.net/">QJson</ulink> must be installed),
102 issue: <command>make -k check</command>.</para>
103
104 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
105
106<screen role="root"><userinput>make install</userinput></screen>
107
108 </sect2>
109
110 <sect2 role="commands">
111 <title>Command Explanations</title>
112
113 <para><option>-DCMAKE_BUILD_TYPE=Release</option>: This switch is used to
114 build without debugging symbols and apply a higher level of compiler
115 optimizations.</para>
116
117 <para><option>-DWITH_DOC=OFF</option>: This option is set to avoid building
118 the API documentation. Omit it if you have <application>doxygen</application>
119 installed and want the documentation.</para>
120
121 </sect2>
122
123 <sect2 role="content">
124 <title>Contents</title>
125
126 <segmentedlist>
127 <segtitle>Installed Programs</segtitle>
128 <segtitle>Installed Library</segtitle>
129 <segtitle>Installed Directory</segtitle>
130
131 <seglistitem>
132 <seg>None</seg>
133 <seg>libdbusmenu-qt.so</seg>
134 <seg>&qt4-dir;/include/dbusmenu-qt</seg>
135 </seglistitem>
136 </segmentedlist>
137<!--
138 <variablelist>
139 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
140 <?dbfo list-presentation="list"?>
141 <?dbhtml list-presentation="table"?>
142
143 <varlistentry id="a-automoc4">
144 <term><command>automoc4</command></term>
145 <listitem>
146 <para>is a testing utility for libdbusmenu-qt-generated build trees.</para>
147 <indexterm zone="a-automoc4 automoc4">
148 <primary sortas="b-automoc4">automoc4</primary>
149 </indexterm>
150 </listitem>
151 </varlistentry>
152
153 </variablelist>
154-->
155 </sect2>
156
157</sect1>
Note: See TracBrowser for help on using the repository browser.