# Template file for 'systemd' pkgname=systemd version=186 revision=2 distfiles="http://www.freedesktop.org/software/$pkgname/$pkgname-$version.tar.xz" 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 --with-usb-ids-path=/usr/share/hwdata/usb.ids --with-pci-ids-path=/usr/share/hwdata/pci.ids" depends="dbus run-parts kbd>=1.15.3_5 systemd-libs>=$version udev>=$version" 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 gobject-introspection" subpackages="udev libudev libudev-devel libgudev libgudev-devel systemd-analyze systemd-devel systemd-libs" 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" checksum=b2c201f501952e52241827f01541de7ee05c1238fc39bfe97065f5a04e46b27e 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." 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" # Required by loginctl enable-linger. make_dirs=" /etc/local.d 0755 root root /var/lib/systemd 0755 root root" pre_configure() { sed -i -e "s|/bin/loadkeys|/usr/bin/loadkeys|g" Makefile.in sed -i -e "s|/bin/setfont|/usr/bin/setfont|g" Makefile.in } post_install() { for f in etc/binfmt.d etc/sysctl.d etc/modules-load.d etc/tmpfiles.d \ etc/systemd/user etc/systemd/system/local-fs.target.wants \ etc/systemd/system/sysinit.target.wants \ usr/lib/systemd/system-shutdown \ usr/lib/systemd/system/graphical.target.wants \ usr/lib/systemd/user-generators \ usr/lib/systemd/system-sleep \ usr/lib/binfmt.d usr/lib/sysctl.d usr/lib/modules-load.d; do vmkdir ${f} touch ${DESTDIR}/${f}/.owned done 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 /sbin/init for compatibility. ln -sf /usr/lib/systemd/systemd ${DESTDIR}/usr/sbin/init # Do not use /sbin/sulogin, sysvinit has been fully removed. for f in console-shell emergency rescue; do sed -i -e "s|/sbin/sulogin|/bin/sh|" \ ${DESTDIR}/usr/lib/systemd/system/${f}.service done # Install and enable local-d.service for multi-user.target by default. vinstall ${FILESDIR}/local-d.service 644 usr/lib/systemd/system ln -sf /usr/lib/systemd/system/local-d.service \ ${DESTDIR}/usr/lib/systemd/system/multi-user.target.wants/local-d.service }