dbus: update to 1.4.12.
This commit is contained in:
parent
517f1cfd06
commit
6c43fe473a
9
srcpkgs/dbus/files/30-dbus-xinit
Normal file
9
srcpkgs/dbus/files/30-dbus-xinit
Normal 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
|
||||
|
|
@ -1,16 +1,16 @@
|
|||
# Template file for 'dbus'
|
||||
pkgname=dbus
|
||||
version=1.4.10
|
||||
version=1.4.12
|
||||
homepage="http://dbus.freedesktop.org/"
|
||||
distfiles="${homepage}/releases/dbus/$pkgname-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat
|
||||
--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"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="GPL-2"
|
||||
checksum=fcb4b41121525d485da32b5c988e1b31cab109c74d72c5abf05ae2a5b7db9517
|
||||
checksum=da3c97fd546610558d588799e27c4fa81101e754acbcd34747a42c131f30dbe7
|
||||
long_desc="
|
||||
D-BUS is a message bus, used for sending messages between applications.
|
||||
Conceptually, it fits somewhere in between raw sockets and CORBA in terms
|
||||
|
@ -39,6 +39,11 @@ Add_dependency build coreutils
|
|||
|
||||
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
|
||||
# Install the OpenRC service
|
||||
install -D -m755 ${FILESDIR}/dbus.rc ${DESTDIR}/etc/init.d/dbus
|
||||
|
|
Loading…
Reference in New Issue
Block a user