[arch-commits] Commit in dbus/trunk (PKGBUILD dbus)

Jan de Groot jgc at archlinux.org
Wed Aug 20 20:01:01 UTC 2008


    Date: Wednesday, August 20, 2008 @ 16:00:55
  Author: jgc
Revision: 9898

upgpkg: dbus 1.2.3-1
    Update to 1.2.3: disable static libs, implement FS#10397

Modified:
  dbus/trunk/PKGBUILD
  dbus/trunk/dbus

----------+
 PKGBUILD |    7 ++++---
 dbus     |   14 +++++++++++++-
 2 files changed, 17 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2008-08-20 19:55:39 UTC (rev 9897)
+++ PKGBUILD	2008-08-20 20:00:55 UTC (rev 9898)
@@ -3,7 +3,7 @@
 # Contributor: Link Dupont <link at subpop.net>
 #
 pkgname=dbus
-pkgver=1.2.1
+pkgver=1.2.3
 pkgrel=1
 pkgdesc="Freedesktop.org message bus system"
 url="http://www.freedesktop.org/Software/dbus"
@@ -14,14 +14,15 @@
 install=dbus.install
 source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz
 	dbus)
-md5sums=('b57aa1ba0834cbbb1e7502dc2cbfacc2' 'c109dfdabf11e891dfd6c99e54dd6f56')
+md5sums=('f71641385768e99361bd298568207cee'
+         'f3fd196cc278bd7b45a4ca01fb8f7894')
 
 build() {
   cd ${startdir}/src/${pkgname}-${pkgver}
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   	      --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=81 \
               --with-system-pid-file=/var/run/dbus.pid \
-              --disable-verbose-mode \
+              --disable-verbose-mode --disable-static \
 	      --disable-tests --disable-asserts || return 1
   make || return 1
   make DESTDIR=${startdir}/pkg install || return 1

Modified: dbus
===================================================================
--- dbus	2008-08-20 19:55:39 UTC (rev 9897)
+++ dbus	2008-08-20 20:00:55 UTC (rev 9898)
@@ -38,8 +38,20 @@
 	sleep 1
         $0 start
         ;;
+    reload)
+        stat_busy "Reloading D-BUS configuration"
+        [ -f /var/run/dbus.pid ] && /usr/bin/dbus-send \
+                --system --type=method_call \
+                --dest=org.freedesktop.DBus \
+                / org.freedesktop.DBus.ReloadConfig
+        if [ $? -gt 0 ]; then
+            stat_fail
+        else
+            stat_done
+        fi
+        ;;
     *)
-        echo "usage: $0 {start|stop|restart}"
+        echo "usage: $0 {start|stop|restart|reload}"
 	;;
 esac
 exit 0




More information about the arch-commits mailing list