Fini la mise à jour pour répertoire pkg. Stage4 compile OK et driver xorg nouveau OK
[hvlinux.git] / stage4 / pkg / dbus
diff --git a/stage4/pkg/dbus b/stage4/pkg/dbus
new file mode 100644 (file)
index 0000000..f576ac7
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+hvconfig_pre()
+{
+    hv_groupadd -g 18 messagebus
+    hv_useradd -c D-BUS-Message-Daemon-User -d /dev/null \
+        -u 18 -g messagebus -s /bin/false messagebus
+
+    CONFIGURE_OPTS="\
+        ${CONFIGURE_OPTS} \
+        --libexecdir=/usr/lib/dbus-1.0 \
+        --localstatedir=/var"
+}
+
+hvbuild_post()
+{
+    # Bootscript
+    install -v -m740 ${SCRDIR}/bootscripts/dbus /etc/rc.d/init.d
+
+    # script-name start stop
+    bootscript_add_rc3 dbus 92 20
+
+    # Starting the session daemon here has the added bonus that it will exit
+    # when you log out of your GNOME session. If you wish to start the daemon
+    #here, use the following command instead of the one shown above:
+    ##echo "exec dbus-launch --exit-with-session gnome-session" >> ~/.xinitrc
+}