source: chapter06/libdbus.xml@ 0a59df2

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 0a59df2 was 0a59df2, checked in by Krejzi <krejzi@…>, 11 years ago

Unmerge XML::Parser from Perl page as discussed. Add Libdbus page which installs D-Bus library to satisfy circular dependency between Systemd and D-Bus.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10281 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.9 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
8<sect1 id="ch-system-libdbus" role="wrap">
9 <?dbhtml filename="libdbus.html"?>
10
11 <sect1info condition="script">
12 <productname>libdbus</productname>
13 <productnumber>&dbus-version;</productnumber>
14 <address>&dbus-url;</address>
15 </sect1info>
16
17 <title>Libdbus-&dbus-version;</title>
18
19 <indexterm zone="ch-system-libdbus">
20 <primary sortas="a-libdbus">Libdbus</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>Libdbus package provides a library to communicate with
27 D-Bus messagebus daemon. It is only installed to satisfy
28 circular dependency between Systemd and D-Bus.</para>
29
30 <segmentedlist>
31 <segtitle>&buildtime;</segtitle>
32 <segtitle>&diskspace;</segtitle>
33
34 <seglistitem>
35 <seg>&dbus-ch6-sbu;</seg>
36 <seg>&dbus-ch6-du;</seg>
37 </seglistitem>
38 </segmentedlist>
39
40 </sect2>
41
42 <sect2 role="installation">
43 <title>Installation of Libdbus</title>
44
45 <para>Prepare Libdbus for compilation:</para>
46
47<screen><userinput remap="configure">./configure --prefix=/usr --disable-static</userinput></screen>
48
49 <para>Compile the package:</para>
50
51<screen><userinput remap="make">make -C dbus libdbus-1.la</userinput></screen>
52
53 <para>This package does come with a testsuite, but it is not
54 possible to run it because only part of the package is
55 installed.</para>
56
57 <para>Install the package:</para>
58
59<screen><userinput remap="install">make -C dbus lib_LTLIBRARIES=libdbus-1.la \
60 install-libLTLIBRARIES \
61 install-dbusincludeHEADERS \
62 install-nodist_dbusarchincludeHEADERS
63make install-pkgconfigDATA</userinput></screen>
64
65 </sect2>
66
67 <sect2 id="contents-libdbus" role="content">
68 <title>Contents of Libdbus</title>
69
70 <segmentedlist>
71 <segtitle>Installed programs</segtitle>
72 <segtitle>Installed libraries</segtitle>
73 <segtitle>Installed directories</segtitle>
74
75 <seglistitem>
76 <seg>none</seg>
77 <seg>libdbus-1.so</seg>
78 <seg>/usr/include/dbus-1.0 and /usr/lib/dbus-1.0</seg>
79 </seglistitem>
80 </segmentedlist>
81
82 <variablelist>
83 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
84 <?dbfo list-presentation="list"?>
85 <?dbhtml list-presentation="table"?>
86
87 <varlistentry id="libdbus-lib">
88 <term><filename class="libraryfile">libdbus-1.so</filename></term>
89 <listitem>
90 <para>Contains API functions used to communicate with the D-Bus
91 message bus.</para>
92 <indexterm zone="ch-system-libdbus libdbus-lib">
93 <primary sortas="c-libdbus">libdbus</primary>
94 </indexterm>
95 </listitem>
96 </varlistentry>
97
98 </variablelist>
99
100 </sect2>
101
102</sect1>
Note: See TracBrowser for help on using the repository browser.