[47969a6] | 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" [
|
---|
[f175d6f6] | 4 | <!ENTITY % general-entities SYSTEM "../general.ent">
|
---|
[47969a6] | 5 | %general-entities;
|
---|
| 6 |
|
---|
[209ffd5] | 7 | <!ENTITY libdbusmenu-qt-download-http "http://launchpad.net/ubuntu/+archive/primary/+files/libdbusmenu-qt_&libdbusmenu-qt-version;.orig.tar.gz">
|
---|
[47969a6] | 8 | <!ENTITY libdbusmenu-qt-download-ftp " ">
|
---|
[209ffd5] | 9 | <!ENTITY libdbusmenu-qt-md5sum "8b90312bd8654e026d814d4db986ce5e">
|
---|
| 10 | <!ENTITY libdbusmenu-qt-size "48 KB">
|
---|
| 11 | <!ENTITY libdbusmenu-qt-buildsize "4.6 MB">
|
---|
| 12 | <!ENTITY libdbusmenu-qt-time "0.4 SBU">
|
---|
[47969a6] | 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">
|
---|
[81586492] | 26 | <primary sortas="a-libdbusmenu-qt">libdbusmenu-qt</primary>
|
---|
[47969a6] | 27 | </indexterm>
|
---|
| 28 |
|
---|
| 29 | <sect2 role="package">
|
---|
| 30 | <title>Introduction to libdbusmenu-qt</title>
|
---|
| 31 |
|
---|
[9ca304a] | 32 | <para>This library provides a <application>Qt</application> implementation
|
---|
[eb3dbe3] | 33 | of the DBusMenu specification that exposes menus via DBus.</para>
|
---|
[47969a6] | 34 |
|
---|
[dd8ae08] | 35 | &lfs7a_checked;
|
---|
[47969a6] | 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 | <bridgehead renderas="sect3">libdbusmenu-qt Dependencies</bridgehead>
|
---|
| 60 |
|
---|
| 61 | <bridgehead renderas="sect4">Required</bridgehead>
|
---|
| 62 | <para role="required">
|
---|
[69b2349] | 63 | <xref linkend="qt5"/>
|
---|
[47969a6] | 64 | </para>
|
---|
| 65 |
|
---|
| 66 | <bridgehead renderas="sect4">Optional</bridgehead>
|
---|
| 67 | <para role="optional">
|
---|
[69b2349] | 68 | <xref linkend="doxygen"/> (for building the API documentation)
|
---|
[47969a6] | 69 | </para>
|
---|
| 70 |
|
---|
| 71 | <para condition="html" role="usernotes">User Notes:
|
---|
| 72 | <ulink url="&blfs-wiki;/libdbusmenu-qt"/></para>
|
---|
| 73 |
|
---|
| 74 | </sect2>
|
---|
| 75 |
|
---|
| 76 | <sect2 role="installation">
|
---|
| 77 | <title>Installation of libdbusmenu-qt</title>
|
---|
| 78 |
|
---|
[69b2349] | 79 | <para>Install <application>libdbusmenu-qt</application> by running the
|
---|
| 80 | following commands:</para>
|
---|
[47969a6] | 81 |
|
---|
[f175d6f6] | 82 | <screen><userinput>mkdir build &&
|
---|
| 83 | cd build &&
|
---|
| 84 |
|
---|
| 85 | cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
---|
[92245989] | 86 | -DCMAKE_INSTALL_LIBDIR=lib \
|
---|
[f175d6f6] | 87 | -DCMAKE_BUILD_TYPE=Release \
|
---|
| 88 | -DWITH_DOC=OFF \
|
---|
| 89 | -Wno-dev .. &&
|
---|
| 90 | make</userinput></screen>
|
---|
| 91 |
|
---|
[69b2349] | 92 | <!--
|
---|
[209ffd5] | 93 | <para>
|
---|
| 94 | To test the results (<xref linkend="qjson"/> must be installed),
|
---|
| 95 | issue: <command>make -k check</command>. One test is known to fail.
|
---|
[f175d6f6] | 96 | </para>
|
---|
[69b2349] | 97 | -->
|
---|
| 98 |
|
---|
[77a6d25] | 99 | <para>This packages doe not come with a working test suite.</para>
|
---|
[9ca304a] | 100 |
|
---|
[47969a6] | 101 | <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
---|
| 102 |
|
---|
| 103 | <screen role="root"><userinput>make install</userinput></screen>
|
---|
| 104 |
|
---|
| 105 | </sect2>
|
---|
[2ca2359a] | 106 |
|
---|
[47969a6] | 107 | <sect2 role="commands">
|
---|
| 108 | <title>Command Explanations</title>
|
---|
| 109 |
|
---|
[7830c481] | 110 | <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
|
---|
| 111 | used to build without debugging symbols and apply a higher level of
|
---|
| 112 | compiler optimizations.</para>
|
---|
| 113 |
|
---|
| 114 | <para><parameter>-DWITH_DOC=OFF</parameter>: This option is set to avoid
|
---|
| 115 | building the API documentation. Omit it if you have
|
---|
| 116 | <application>doxygen</application> installed and want the
|
---|
| 117 | documentation.</para>
|
---|
[47969a6] | 118 |
|
---|
| 119 | </sect2>
|
---|
[2ca2359a] | 120 |
|
---|
[47969a6] | 121 | <sect2 role="content">
|
---|
| 122 | <title>Contents</title>
|
---|
| 123 |
|
---|
| 124 | <segmentedlist>
|
---|
[2ca2359a] | 125 | <segtitle>Installed Programs</segtitle>
|
---|
[c3c56b2] | 126 | <segtitle>Installed Library</segtitle>
|
---|
| 127 | <segtitle>Installed Directory</segtitle>
|
---|
[47969a6] | 128 |
|
---|
| 129 | <seglistitem>
|
---|
| 130 | <seg>None</seg>
|
---|
[9e04432] | 131 | <seg>libdbusmenu-qt5.so</seg>
|
---|
| 132 | <seg>/usr/lib/cmake/dbusmenu-qt5 and
|
---|
[f175d6f6] | 133 | /usr/include/dbusmenu-qt5</seg>
|
---|
[47969a6] | 134 | </seglistitem>
|
---|
| 135 | </segmentedlist>
|
---|
| 136 | <!--
|
---|
| 137 | <variablelist>
|
---|
| 138 | <bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
---|
| 139 | <?dbfo list-presentation="list"?>
|
---|
| 140 | <?dbhtml list-presentation="table"?>
|
---|
| 141 |
|
---|
| 142 | <varlistentry id="a-automoc4">
|
---|
| 143 | <term><command>automoc4</command></term>
|
---|
| 144 | <listitem>
|
---|
| 145 | <para>is a testing utility for libdbusmenu-qt-generated build trees.</para>
|
---|
| 146 | <indexterm zone="a-automoc4 automoc4">
|
---|
| 147 | <primary sortas="b-automoc4">automoc4</primary>
|
---|
| 148 | </indexterm>
|
---|
| 149 | </listitem>
|
---|
| 150 | </varlistentry>
|
---|
| 151 |
|
---|
| 152 | </variablelist>
|
---|
| 153 | -->
|
---|
| 154 | </sect2>
|
---|
| 155 |
|
---|
| 156 | </sect1>
|
---|