# Template file for 'systemd' pkgname=systemd version=196 revision=5 build_style=gnu-configure configure_args="--with-distro=other --libexecdir=/usr/lib --disable-selinux --disable-tcpwrap --with-rootprefix=/usr --with-sysvinit-path= --with-sysvrcd-path= --disable-audit --disable-static" depends="dbus run-parts kbd libcap-progs" makedepends="pkg-config intltool gperf libxslt docbook-xsl acl-devel pam-devel dbus-devel libcap-devel libkmod-devel liblzma-devel cryptsetup-devel libblkid-devel glib-devel libgcrypt-devel python-devel qrencode-devel gobject-introspection" short_desc="A system and service manager for Linux" maintainer="Juan RP " homepage="http://www.freedesktop.org/wiki/Software/systemd" license="LGPL-2.1, GPL-2, MIT" distfiles="http://www.freedesktop.org/software/$pkgname/$pkgname-$version.tar.xz" checksum=6bd4a658a5dd8198235b17ad1b1f0cc56d9e6f00d646ddcffdfc6f058b55e4bf long_desc=" systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts. systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux cgroups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. It can work as a drop-in replacement for sysvinit." subpackages="libudev libudev-devel libgudev libgudev-devel systemd-analyze systemd-devel systemd-libs systemd-python" conf_files=" /etc/hostname /etc/vconsole.conf /etc/locale.conf /etc/systemd/system.conf /etc/systemd/user.conf /etc/systemd/journald.conf /etc/systemd/logind.conf /etc/udev/udev.conf" post_install() { vinstall ${FILESDIR}/hostname 644 etc vinstall ${FILESDIR}/vconsole.conf 644 etc vinstall ${FILESDIR}/os-release 644 etc vinstall ${FILESDIR}/locale.conf 644 etc printf "d /run/console 755 root root\n" > \ ${DESTDIR}/usr/lib/tmpfiles.d/console.conf chmod 644 ${DESTDIR}/usr/lib/tmpfiles.d/console.conf # Create halt, reboot, shutdown, poweroff compat symlinks. Some # applications expect them for "normal" use! vmkdir usr/sbin for f in halt poweroff shutdown reboot; do ln -sf /usr/bin/systemctl ${DESTDIR}/usr/sbin/${f} done # Create /usr/sbin/init for compatibility. ln -sf /usr/lib/systemd/systemd ${DESTDIR}/usr/sbin/init # Install local-d.service. vinstall ${FILESDIR}/local-d.service 644 usr/lib/systemd/system # Remove RPM stuff. rm -rf ${DESTDIR}/etc/rpm # Disable units in /etc; we do this at post-install time. rm -rf ${DESTDIR}/etc/systemd/system/getty.target.wants # Create /usr/sbin/udev symlink just for compatibility. ln -sf /usr/lib/systemd/systemd-udevd ${DESTDIR}/usr/sbin/udevd # Required dirs at run time. vinstall ${FILESDIR}/systemd-dirs.tmpfiles 644 \ usr/lib/tmpfiles.d systemd-dirs.conf }