Difference between revisions of "D-BUS Core"
From CBLFS
Jump to navigationJump to searchLine 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
| http://dbus.freedesktop.org/releases/dbus/dbus-{{D-BUS-Version}}.tar.gz | | http://dbus.freedesktop.org/releases/dbus/dbus-{{D-BUS-Version}}.tar.gz | ||
− | |||
− | |||
− | |||
|} | |} | ||
Line 37: | Line 34: | ||
Compile the package: | Compile the package: | ||
− | |||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libexecdir=/usr/lib/dbus-1.0 --localstatedir=/var && | --libexecdir=/usr/lib/dbus-1.0 --localstatedir=/var && | ||
Line 55: | Line 51: | ||
Compile the package: | Compile the package: | ||
− | |||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | CC="gcc ${BUILD32}" USE_ARCH=32 \ | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
Line 69: | Line 64: | ||
Compile the package: | Compile the package: | ||
− | |||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
Line 84: | Line 78: | ||
Compile the package: | Compile the package: | ||
− | |||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | CC="gcc ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ |
Revision as of 11:44, 20 July 2008
Download Source: | http://dbus.freedesktop.org/releases/dbus/dbus-1.8.0.tar.gz |
---|
Contents
Introduction to D-BUS Core
Project Homepage: http://www.freedesktop.org/wiki/Software/dbus
Dependencies
Required
Even though expat and libxml2 are considered "optional" the package will fail to compile cleanly without both libraries
Optional
MessageBus User/Group
groupadd -g 27 messagebus && useradd -c "D-BUS Message Daemon User" -d /dev/null \ -u 27 -g messagebus -s /bin/false messagebus
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/dbus-1.0 --localstatedir=/var && make
Install the package
make install && install -v -m755 -d /usr/share/doc/dbus-1.8.0 && install -v -m644 doc/{TODO,*.{dtd,xml,xsl,txt,c}} \ /usr/share/doc/dbus-1.8.0
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \ ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/dbus-1.0 --localstatedir=/var && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib32/dbus-1.0 --localstatedir=/var \ --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \ ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib64/dbus-1.0 --localstatedir=/var \ --libdir=/usr/lib64 && make
Install the package
make install && install -v -m755 -d /usr/share/doc/dbus-1.8.0 && install -v -m644 doc/{TODO,*.{dtd,xml,xsl,txt,c}} \ /usr/share/doc/dbus-1.8.0
Configuring
If you have not already used dbus on this installation, the file /var/lib/dbus/machine-id will not exist. This is needed for successful operation. You can create it by running the following command as root:
dbus-uuidgen --ensure
Bootscript
Install the init script included in the Bootscripts package.
make install-dbus
Contents
Installed Programs: | dbus-daemon, dbus-send, dbus-monitor, dbus-launch, dbus-cleanup-sockets, dbus-uuidgen |
---|---|
Installed Libraries: | libdbus-1.{so,la,a} |
Installed Directories: | /usr/lib/dbus-1.0/include/dbus, /etc/dbus-1, /var/run/dbus, /etc/dbus-1/system.d, /usr/share/dbus-1/services, and /usr/share/doc/dbus-1.8.0 |
Short Descriptions
dbus-cleanup-sockets | is used to clean up leftover sockets in a directory. |
---|---|
dbus-daemon | is the D-BUS message bus daemon. |
dbus-launch | is used to start dbus-daemon from a shell script. It would normally be called from a user's login scripts. |
dbus-monitor | is used to monitor messages going through a D-BUS message bus. |
dbus-send | is used to send a message to a D-BUS message bus. |
dbus-viewer | is a graphical D-BUS frontend utility. |
libdbus-1.{so,a} | contains the API functions used by the D-BUS message daemon. D-BUS is first a library that provides one-to-one communication between any two applications; dbus-daemon is an application that uses this library to implement a message bus daemon. |