diff options
Diffstat (limited to 'abs/core/dbus')
-rw-r--r-- | abs/core/dbus/30-dbus | 6 | ||||
-rw-r--r-- | abs/core/dbus/PKGBUILD | 30 |
2 files changed, 16 insertions, 20 deletions
diff --git a/abs/core/dbus/30-dbus b/abs/core/dbus/30-dbus deleted file mode 100644 index 42b3a5f..0000000 --- a/abs/core/dbus/30-dbus +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -# launches a session dbus instance -if [ -z "$DBUS_SESSION_BUS_ADDRESS" ] && type dbus-launch >/dev/null; then - eval $(dbus-launch --sh-syntax --exit-with-session) -fi diff --git a/abs/core/dbus/PKGBUILD b/abs/core/dbus/PKGBUILD index e554405..ddc3ebf 100644 --- a/abs/core/dbus/PKGBUILD +++ b/abs/core/dbus/PKGBUILD @@ -5,19 +5,22 @@ pkgbase=dbus pkgname=('dbus' 'libdbus') -pkgver=1.8.12 -pkgrel=2 +pkgver=1.10.6 +pkgrel=1 pkgdesc="Freedesktop.org message bus system" url="http://www.freedesktop.org/Software/dbus" arch=(i686 x86_64) license=('GPL' 'custom') makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl') -source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc} - 30-dbus) -md5sums=('0ca23fc84c09cb3d29b9c27811ff4475' - 'SKIP' - '3314d727fa57fc443fce25b5cbeebbcc') -validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') +source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}) +md5sums=('26d0cf3a1c9782cb0e342101f0450440' + 'SKIP') +validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90' # Simon McVittie <simon.mcvittie@collabora.co.uk> + '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie <simon.mcvittie@collabora.co.uk> + +prepare() { + cd dbus-$pkgver +} build() { cd dbus-$pkgver @@ -26,11 +29,11 @@ build() { --with-system-pid-file=/run/dbus/pid \ --with-system-socket=/run/dbus/system_bus_socket \ --with-console-auth-dir=/run/console/ \ - --enable-inotify --disable-dnotify \ + --enable-inotify \ --disable-verbose-mode --disable-static \ --disable-tests --disable-asserts \ --with-systemdsystemunitdir=/usr/lib/systemd/system \ - --enable-systemd + --enable-systemd --enable-user-session make } @@ -48,16 +51,15 @@ package_dbus(){ make DESTDIR="$pkgdir" install - rm -rf "${pkgdir}/var/run" - rm -rf "${pkgdir}/usr/lib/pkgconfig" + rm -r "${pkgdir}/var/run" + rm -r "${pkgdir}/usr/lib/pkgconfig" - install -Dm755 ../30-dbus "$pkgdir/etc/X11/xinit/xinitrc.d/30-dbus" install -Dm644 COPYING "$pkgdir/usr/share/licenses/dbus/COPYING" } package_libdbus(){ pkgdesc="DBus library" - depends=('glibc') + depends=('libsystemd') cd dbus-$pkgver make DESTDIR="$pkgdir" -C dbus install |