123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- # Build recipe for dbus (with X11 support).
- #
- # Copyright (C) 2018, MMPG <mmpg@vp.pl>
- # Copyright (c) 2018 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=dbus
- version=1.12.12
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/daemons"
- pkgname=dbus_x11
- # The installation of this package replaces to
- replace=dbus
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://dbus.freedesktop.org/releases/dbus/$tarname
- description="
- A system daemon and a per user login session daemon (with X11 support).
- The message bus is built on top of a general one-to-one message passing
- framework, which can be used by any two apps to communicate directly
- (without going through the message bus daemon).
- "
- homepage=http://www.freedesktop.org/wiki/Software/dbus/
- license="AFLv2.1 | GPLv2+"
- # Source documentation
- docs="AUTHORS COPYING ChangeLog NEWS README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
-
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
-
- ./configure \
- CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --mandir=$mandir \
- --enable-static=no \
- --enable-shared=yes \
- --enable-debug=no \
- --enable-inotify \
- --enable-epoll \
- --enable-x11-autolaunch \
- --disable-systemd \
- --disable-selinux \
- --with-valgrind \
- --with-dbus-user=messagebus \
- --with-xml=expat \
- --with-console-auth-dir=/var/run/console \
- --with-system-pid-file=/var/run/dbus/dbus.pid \
- --with-system-socket=/var/run/dbus/system_bus_socket \
- --with-session-socket-dir=/tmp \
- --with-x \
- --build="$(cc -dumpmachine)"
-
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
- # Compress and link man pages (if needed)
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 '{}' +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
-
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}/"
- # Install perp service for dbus
- mkdir -p "${destdir}/etc/perp/dbus"
- cp -p "${worktree}/archive/dbus/rc.log" \
- "${worktree}/archive/dbus/rc.main" \
- "${destdir}/etc/perp/dbus/"
- chmod 755 "${destdir}"/etc/perp/dbus/rc.*
- # Be an active service by default
- chmod +t "${destdir}/etc/perp/dbus"
- # To handle config file(s)
- touch "${destdir}/etc/dbus-1/.graft-config" \
- "${destdir}/etc/perp/dbus/.graft-config"
- }
|