1 # Build recipe for dbus.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (c) 2018-2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
27 # Define a category for the output of the package name
30 # The installation of this package replaces to
33 tarname=${program}-${version}.tar.xz
36 fetch=https://dbus.freedesktop.org/releases/dbus/$tarname
39 A system daemon and a per user login session daemon (with X11 support).
41 The message bus is built on top of a general one-to-one message passing
42 framework, which can be used by any two apps to communicate directly
43 (without going through the message bus daemon).
46 homepage=https://www.freedesktop.org/wiki/Software/dbus/
47 license="AFLv2.1 | GPLv2+"
49 # Source documentation
50 docs="AUTHORS CONTRIBUTING.md COPYING NEWS README"
51 docsdir="${docdir}/${pkgname}-${version}"
55 unpack "${tardir}/$tarname"
59 # Apply a patch to allow root to do anything (Thanks to "Slackware Linux").
61 -i "${worktree}/patches/dbus/dbus-1.12.x-allow_root_globally.diff"
63 # Set sane permissions
64 chmod -R u+w,go-w,a+rX-s .
66 ./configure CPPFLAGS="$QICPPFLAGS" \
67 CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
69 --libdir=/usr/lib${libSuffix} \
76 --enable-x11-autolaunch \
78 --disable-doxygen-docs \
80 --with-system-socket=/var/run/dbus/system_bus_socket \
81 --with-system-pid-file=/var/run/dbus/dbus.pid \
82 --with-console-auth-dir=/dev/console \
83 --with-systemduserunitdir=no \
84 --with-systemdsystemunitdir=no \
85 --build="$(gcc -dumpmachine)"
89 make -j${jobs} DESTDIR="$destdir" install
91 chown root:messagebus "${destdir}/usr/libexec/dbus-daemon-launch-helper"
92 chmod 4750 "${destdir}/usr/libexec/dbus-daemon-launch-helper"
94 mkdir -p "${destdir}/etc/dbus-1/system.d"
96 # Compress and link man pages (if needed)
97 if test -d "${destdir}/$mandir"
100 cd "${destdir}/$mandir"
101 find . -type f -exec lzip -9 {} +
102 find . -type l | while read -r file
104 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
111 mkdir -p "${destdir}/$docsdir"
112 cp -p $docs "${destdir}/$docsdir"
114 # Install perp service for DBUS
116 mkdir -p "${destdir}/etc/perp/dbus"
117 cp -p "${worktree}/archive/dbus/rc.log" \
118 "${worktree}/archive/dbus/rc.main" \
119 "${destdir}/etc/perp/dbus/"
121 chmod 755 "${destdir}"/etc/perp/dbus/rc.*
123 # Be an active service by default
124 chmod +t "${destdir}/etc/perp/dbus"
126 # To handle config file(s)
127 touch "${destdir}/etc/dbus-1/.graft-config" \
128 "${destdir}/etc/perp/dbus/.graft-config"