Browse Source

Andreas V. Meier:


			
			
				rocklinux
			
			
		
Andreas V. 'netrunner' Meier 19 years ago
parent
commit
7137a0915d
4 changed files with 94 additions and 0 deletions
  1. +25
    -0
      package/avm/dbus/dbus.conf
  2. +49
    -0
      package/avm/dbus/dbus.desc
  3. +16
    -0
      package/avm/dbus/dbus.init
  4. +4
    -0
      package/avm/dbus/postsysfiles.in

+ 25
- 0
package/avm/dbus/dbus.conf

@ -0,0 +1,25 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/avm/dbus/dbus.conf
# ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
var_append confopt " " "--enable-qt"
var_append confopt " " "--disable-mono"
install_init dbus $confdir/dbus.init

+ 49
- 0
package/avm/dbus/dbus.desc

@ -0,0 +1,49 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/avm/dbus/dbus.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] message bus system
[T] D-BUS is a message bus system, a simple way for applications to talk to
[T] one another.
[T]
[T] D-BUS supplies both a system daemon (for events such as "new hardware
[T] device added" or "printer queue changed") and a per-user-login-session
[T] daemon (for general IPC needs among user applications). Also, the message
[T] bus is built on top of a general one-to-one message passing framework,
[T] which can be used by any two apps to communicate directly (without going
[T] through the message bus daemon).
[U] http://freedesktop.org/wiki/Software_2fdbus
[A] Various Authors
[M] Andreas V. 'netrunner' Meier <avmeier@web.de>
[C] extra/configuration
[L] GPL
[S] Beta
[V] 0.50
[P] X -----5---9 800.000
[D] 0 dbus-0.50.tar.gz http://dbus.freedesktop.org/releases/

+ 16
- 0
package/avm/dbus/dbus.init

@ -0,0 +1,16 @@
# Desc: D-Bus Message Bus Daemon
# Runlevel: 61 rcX
main_begin
block_begin(start, `Setting up D-Bus.')
check(`mkdir -p /var/run/dbus')
check(`D_prefix/bin/dbus-daemon --system')
block_end
block_begin(stop, `Shutting down D-Bus.')
check(`D_prefix/bin/killall D_prefix/bin/dbus-daemon')
check(`rm -f /var/run/dbus/{pid,system-socket}')
block_end
main_end

+ 4
- 0
package/avm/dbus/postsysfiles.in

@ -0,0 +1,4 @@
safe_groupadd messagebus 28
safe_useradd messagebus 28 28 "D-Bus Message Daemon User" / /bin/false "*"

Loading…
Cancel
Save