dbus: update to 1.4.12.

This commit is contained in:
Juan RP 2011-06-24 22:50:30 +02:00
parent 517f1cfd06
commit 6c43fe473a
2 changed files with 17 additions and 3 deletions

View file

@ -0,0 +1,9 @@
#!/bin/sh
# launches a session dbus instance
dbuslaunch="`which dbus-launch 2>/dev/null`"
if [ -n "$dbuslaunch" ] && [ -x "$dbuslaunch" ] && [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
eval `$dbuslaunch --sh-syntax --exit-with-session`
fi

View file

@ -1,16 +1,16 @@
# Template file for 'dbus' # Template file for 'dbus'
pkgname=dbus pkgname=dbus
version=1.4.10 version=1.4.12
homepage="http://dbus.freedesktop.org/" homepage="http://dbus.freedesktop.org/"
distfiles="${homepage}/releases/dbus/$pkgname-$version.tar.gz" distfiles="${homepage}/releases/dbus/$pkgname-$version.tar.gz"
build_style=gnu_configure build_style=gnu_configure
configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat
--localstatedir=/var --disable-dnotify --enable-inotify --with-dbus-user=dbus --localstatedir=/var --disable-dnotify --enable-inotify --with-dbus-user=dbus
--disable-doxygen-docs --disable-xml-docs" --disable-doxygen-docs --disable-xml-docs --disable-tests"
short_desc="Message bus system" short_desc="Message bus system"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2" license="GPL-2"
checksum=fcb4b41121525d485da32b5c988e1b31cab109c74d72c5abf05ae2a5b7db9517 checksum=da3c97fd546610558d588799e27c4fa81101e754acbcd34747a42c131f30dbe7
long_desc=" long_desc="
D-BUS is a message bus, used for sending messages between applications. D-BUS is a message bus, used for sending messages between applications.
Conceptually, it fits somewhere in between raw sockets and CORBA in terms Conceptually, it fits somewhere in between raw sockets and CORBA in terms
@ -39,6 +39,11 @@ Add_dependency build coreutils
post_install() post_install()
{ {
# install dbus-launch.
install -m755 tools/dbus-launch ${DESTDIR}/bin
install -m644 doc/dbus-launch.1 ${DESTDIR}/usr/share/man/man1
install -Dm755 ${FILESDIR}/30-dbus-xinit \
${DESTDIR}/etc/X11/xinit/xinitrc.d/30-dbus
rm -rf ${DESTDIR}/var/run rm -rf ${DESTDIR}/var/run
# Install the OpenRC service # Install the OpenRC service
install -D -m755 ${FILESDIR}/dbus.rc ${DESTDIR}/etc/init.d/dbus install -D -m755 ${FILESDIR}/dbus.rc ${DESTDIR}/etc/init.d/dbus