mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
parent
98459617d5
commit
4107944236
6 changed files with 8 additions and 139 deletions
|
@ -1,9 +0,0 @@
|
||||||
case "${ACTION}" in
|
|
||||||
post)
|
|
||||||
[ ! -d var/lib/dbus ] && install -d var/lib/dbus
|
|
||||||
[ ! -d etc/dbus-1/session.d ] && install -d etc/dbus-1/session.d
|
|
||||||
chown root:22 usr/libexec/dbus-daemon-launch-helper
|
|
||||||
chmod 4750 usr/libexec/dbus-daemon-launch-helper
|
|
||||||
usr/bin/dbus-uuidgen --ensure || :
|
|
||||||
;;
|
|
||||||
esac
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
exec dbus-send --system / org.freedesktop.DBus.Peer.Ping > /dev/null 2> /dev/null
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
exec 2>&1
|
|
||||||
[ ! -d /run/dbus ] && install -m755 -g 22 -o 22 -d /run/dbus
|
|
||||||
exec dbus-daemon --system --nofork --nopidfile
|
|
|
@ -1,73 +0,0 @@
|
||||||
--- a/dbus/dbus-userdb-util.c 2015-09-30 16:48:40.000000000 +0200
|
|
||||||
+++ b/dbus/dbus-userdb-util.c 2016-11-03 11:09:42.550520587 +0100
|
|
||||||
@@ -32,6 +32,9 @@
|
|
||||||
#if HAVE_SYSTEMD
|
|
||||||
#include <systemd/sd-login.h>
|
|
||||||
#endif
|
|
||||||
+#if HAVE_ELOGIND
|
|
||||||
+#include <elogind/sd-login.h>
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @addtogroup DBusInternalsUtils
|
|
||||||
@@ -54,7 +57,7 @@
|
|
||||||
const DBusUserInfo *info;
|
|
||||||
dbus_bool_t result = FALSE;
|
|
||||||
|
|
||||||
-#ifdef HAVE_SYSTEMD
|
|
||||||
+#if defined(HAVE_SYSTEMD) || defined(HAVE_ELOGIND)
|
|
||||||
/* check if we have logind */
|
|
||||||
if (access ("/run/systemd/seats/", F_OK) >= 0)
|
|
||||||
{
|
|
||||||
--- a/configure.ac 2016-11-03 11:13:58.286528265 +0100
|
|
||||||
+++ b/configure.ac 2016-11-03 11:22:11.210543063 +0100
|
|
||||||
@@ -185,6 +185,7 @@
|
|
||||||
AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support]),enable_kqueue=$enableval,enable_kqueue=auto)
|
|
||||||
AC_ARG_ENABLE(console-owner-file, AS_HELP_STRING([--enable-console-owner-file],[enable console owner file]),enable_console_owner_file=$enableval,enable_console_owner_file=auto)
|
|
||||||
AC_ARG_ENABLE(launchd, AS_HELP_STRING([--enable-launchd],[build with launchd auto-launch support]),enable_launchd=$enableval,enable_launchd=auto)
|
|
||||||
+AC_ARG_ENABLE(elogind, AS_HELP_STRING([--enable-elogind],[build with elogind user seat support]),enable_elogind=$enableval,enable_elogind=auto)
|
|
||||||
AC_ARG_ENABLE(systemd, AS_HELP_STRING([--enable-systemd],[build with systemd at_console support]),enable_systemd=$enableval,enable_systemd=auto)
|
|
||||||
|
|
||||||
AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
|
|
||||||
@@ -1184,6 +1185,24 @@
|
|
||||||
|
|
||||||
AM_CONDITIONAL(HAVE_CONSOLE_OWNER_FILE, test x$have_console_owner_file = xyes)
|
|
||||||
|
|
||||||
+dnl elogind detection
|
|
||||||
+if test x$enable_elogind = xno ; then
|
|
||||||
+ have_elogind=no;
|
|
||||||
+else
|
|
||||||
+ PKG_CHECK_MODULES([ELOGIND],
|
|
||||||
+ [libelogind >= 209],
|
|
||||||
+ [have_elogind=yes],
|
|
||||||
+ [have_elogind=no])
|
|
||||||
+fi
|
|
||||||
+
|
|
||||||
+if test x$have_elogind = xyes; then
|
|
||||||
+ AC_DEFINE(HAVE_ELOGIND,1,[Have elogind])
|
|
||||||
+fi
|
|
||||||
+
|
|
||||||
+if test x$enable_elogind = xyes -a x$have_elogind != xyes ; then
|
|
||||||
+ AC_MSG_ERROR([Explicitly requested elogind support, but libelogind not found])
|
|
||||||
+fi
|
|
||||||
+
|
|
||||||
dnl systemd detection
|
|
||||||
if test x$enable_systemd = xno ; then
|
|
||||||
have_systemd=no;
|
|
||||||
@@ -1290,7 +1309,7 @@
|
|
||||||
fi
|
|
||||||
|
|
||||||
#### Set up final flags
|
|
||||||
-LIBDBUS_LIBS="$THREAD_LIBS $NETWORK_libs $SYSTEMD_LIBS"
|
|
||||||
+LIBDBUS_LIBS="$THREAD_LIBS $NETWORK_libs $SYSTEMD_LIBS $ELOGIND_LIBS"
|
|
||||||
AC_SUBST([LIBDBUS_LIBS])
|
|
||||||
|
|
||||||
### X11 detection
|
|
||||||
@@ -1949,6 +1968,7 @@
|
|
||||||
Building AppArmor support: ${have_apparmor}
|
|
||||||
Building inotify support: ${have_inotify}
|
|
||||||
Building kqueue support: ${have_kqueue}
|
|
||||||
+ Building elogind support: ${have_elogind}
|
|
||||||
Building systemd support: ${have_systemd}
|
|
||||||
Building X11 code: ${have_x11}
|
|
||||||
Building Doxygen docs: ${enable_doxygen_docs}
|
|
|
@ -1,61 +1,20 @@
|
||||||
# Template file for 'dbus-elogind'
|
# Template file for 'dbus-elogind'
|
||||||
# NOTE: keep this pkg synchronized with dbus
|
|
||||||
pkgname=dbus-elogind
|
pkgname=dbus-elogind
|
||||||
version=1.14.6
|
version=1.14.6
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=meta
|
||||||
configure_args="--disable-selinux --enable-inotify --with-dbus-user=dbus
|
depends="dbus>=1.14.6_2"
|
||||||
--enable-xml-docs --disable-static --disable-tests --enable-epoll
|
short_desc="Message bus system (transitional dummy package)"
|
||||||
--disable-asserts --disable-systemd --disable-user-session
|
|
||||||
--with-system-socket=/run/dbus/system_bus_socket --disable-doxygen-docs
|
|
||||||
--with-system-pid-file=/run/dbus/pid --with-console-auth-dir=/run/console
|
|
||||||
--enable-elogind"
|
|
||||||
hostmakedepends="gperf intltool pkg-config xmlto
|
|
||||||
automake libtool autoconf autoconf-archive"
|
|
||||||
makedepends="expat-devel libX11-devel libcap-devel elogind-devel"
|
|
||||||
short_desc="Message bus system (built with elogind support)"
|
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
license="GPL-2.0-or-later"
|
license="GPL-2.0-or-later"
|
||||||
homepage="https://dbus.freedesktop.org/"
|
homepage="https://dbus.freedesktop.org/"
|
||||||
changelog="https://raw.githubusercontent.com/freedesktop/dbus/dbus-1.14/NEWS"
|
|
||||||
distfiles="https://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.xz"
|
|
||||||
checksum=fd2bdf1bb89dc365a46531bff631536f22b0d1c6d5ce2c5c5e59b55265b3d66b
|
|
||||||
conf_files="/etc/dbus-1/*.conf"
|
|
||||||
replaces="dbus>=0"
|
|
||||||
provides="dbus-${version}_${revision}"
|
|
||||||
|
|
||||||
# Create dbus:22 system account.
|
|
||||||
system_accounts="dbus:22"
|
|
||||||
|
|
||||||
pre_configure() {
|
|
||||||
autoreconf -fi
|
|
||||||
}
|
|
||||||
|
|
||||||
post_install() {
|
|
||||||
vsv dbus
|
|
||||||
rm -r "${DESTDIR}/usr/include"
|
|
||||||
rm -r "${DESTDIR}"/usr/lib/dbus-*
|
|
||||||
rm -r "${DESTDIR}/usr/lib/pkgconfig"
|
|
||||||
rm "${DESTDIR}"/usr/lib/*.so
|
|
||||||
rm -r "${DESTDIR}/usr/share/doc"
|
|
||||||
rm -r "${DESTDIR}/usr/lib/cmake"
|
|
||||||
}
|
|
||||||
|
|
||||||
dbus-elogind-libs_package() {
|
dbus-elogind-libs_package() {
|
||||||
short_desc+=" - shared libraries"
|
short_desc="Message bus system - shared libraries (transitional dummy package)"
|
||||||
provides="dbus-libs-${version}_${revision}"
|
depends="dbus-libs>=1.14.6_2"
|
||||||
replaces="dbus-libs>=0"
|
|
||||||
pkg_install() {
|
|
||||||
vmove "usr/lib/*.so.*"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dbus-elogind-x11_package() {
|
dbus-elogind-x11_package() {
|
||||||
short_desc+=" - X11 support"
|
short_desc="Message bus system - X11 support (transitional dummy package)"
|
||||||
provides="dbus-x11-${version}_${revision}"
|
depends="dbus-x11>=1.14.6_2"
|
||||||
replaces="dbus-x11>=0"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/bin/dbus-launch
|
|
||||||
vmove usr/share/man/man1/dbus-launch.1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
pkgname="dbus"
|
|
||||||
ignore="*.[0-9]*[13579].*"
|
|
Loading…
Add table
Reference in a new issue