2011-06-25 22:04:30 +02:00
|
|
|
# Template file for 'systemd'
|
2014-03-16 19:29:43 +01:00
|
|
|
#
|
|
|
|
# We use the v208 stable branch, which is the branch that does not use IFUNC.
|
|
|
|
_gitbranch="v208-stable"
|
2014-06-26 22:21:54 +02:00
|
|
|
_gitcommit="722b7000a9973c9f3460fd5c41dfd613041a0976"
|
|
|
|
_gitshort="${_gitcommit:0:7}"
|
2014-03-16 19:29:43 +01:00
|
|
|
|
2011-06-25 22:04:30 +02:00
|
|
|
pkgname=systemd
|
2013-10-02 15:24:03 +02:00
|
|
|
version=208
|
2014-06-26 22:21:54 +02:00
|
|
|
revision=10
|
|
|
|
short_desc="A system and service manager for Linux (${_gitbranch} ${_gitshort})"
|
2013-03-27 09:38:23 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
homepage="http://www.freedesktop.org/wiki/Software/systemd"
|
|
|
|
license="LGPL-2.1, GPL-2, MIT"
|
|
|
|
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2013-05-27 17:36:46 +02:00
|
|
|
configure_args="--libexecdir=/usr/lib --with-rootprefix=/usr
|
|
|
|
--disable-selinux --with-sysvinit-path= --with-sysvrcnd-path=
|
2013-09-23 09:49:05 +02:00
|
|
|
--with-rc-local-script-path-start= --with-rc-local-script-path-stop=
|
2013-10-27 09:25:13 +01:00
|
|
|
--disable-audit --disable-static --disable-ima --disable-gudev
|
2014-06-26 22:21:54 +02:00
|
|
|
--disable-introspection --without-python"
|
2014-03-16 19:29:43 +01:00
|
|
|
|
|
|
|
hostmakedepends="automake gettext-devel libtool which pkg-config
|
|
|
|
intltool gperf libxslt docbook-xsl libgcrypt-devel"
|
2013-10-27 09:25:13 +01:00
|
|
|
|
|
|
|
makedepends="acl-devel dbus-devel>=1.6.10_2 libcap-devel libkmod-devel
|
|
|
|
liblzma-devel cryptsetup-devel libblkid-devel libgcrypt-devel pam-devel"
|
2014-03-16 19:29:43 +01:00
|
|
|
|
2014-01-01 16:10:11 +01:00
|
|
|
depends="xbps-triggers>=0.64 dbus kbd libcap-progs shadow"
|
2014-03-16 19:29:43 +01:00
|
|
|
|
2014-01-01 16:10:11 +01:00
|
|
|
# Create systemd-journal (gid 24) system group.
|
|
|
|
system_groups="systemd-journal:24"
|
|
|
|
replaces="nss-myhostname>=0 systemd-analyze>0"
|
|
|
|
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/systemd/bootchart.conf
|
|
|
|
/etc/udev/udev.conf"
|
2014-04-01 16:18:28 +02:00
|
|
|
lib32disabled=yes
|
2013-02-15 16:44:09 +01:00
|
|
|
|
2013-04-30 10:00:11 +02:00
|
|
|
# Package build options
|
|
|
|
build_options="efi microhttpd qrencode tcpwrappers"
|
|
|
|
desc_option_efi="Enable support for EFI"
|
|
|
|
desc_option_microhttpd="Enable support for microhttpd"
|
|
|
|
desc_option_qrencode="Enable support for qrencode"
|
|
|
|
desc_option_tcpwrappers="Enable support for tcpwrappers"
|
|
|
|
|
|
|
|
# Enable EFI by default on x86.
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
|
|
build_options_default="efi"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_efi" ]; then
|
|
|
|
configure_args+=" --enable-efi"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-efi"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_microhttpd" ]; then
|
|
|
|
configure_args+=" --enable-microhttpd"
|
|
|
|
makedepends+=" libmicrohttpd-devel"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-microhttpd"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_qrencode" ]; then
|
|
|
|
configure_args+=" --enable-qrencode"
|
|
|
|
makedepends+=" qrencode-devel"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-qrencode"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_tcpwrappers" ]; then
|
2013-05-27 17:36:46 +02:00
|
|
|
configure_args+=" --enable-tcpwrap"
|
2013-04-30 10:00:11 +02:00
|
|
|
makedepends+=" tcp_wrappers-devel"
|
|
|
|
else
|
2013-05-27 17:36:46 +02:00
|
|
|
configure_args+=" --disable-tcpwrap"
|
2013-04-30 10:00:11 +02:00
|
|
|
fi
|
|
|
|
|
2014-03-16 19:29:43 +01:00
|
|
|
do_fetch() {
|
|
|
|
git clone -b ${_gitbranch} git://anongit.freedesktop.org/systemd/systemd-stable ${pkgname}-${version}
|
|
|
|
cd ${pkgname}-${version}
|
|
|
|
git checkout ${_gitcommit}
|
|
|
|
}
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
./autogen.sh
|
|
|
|
}
|
|
|
|
|
2012-01-28 18:08:50 +01:00
|
|
|
post_install() {
|
2013-02-15 16:44:09 +01:00
|
|
|
# Remove useless doc directory.
|
|
|
|
rm -rf ${DESTDIR}/usr/share/doc
|
|
|
|
|
2011-10-08 19:09:58 +02:00
|
|
|
vinstall ${FILESDIR}/hostname 644 etc
|
|
|
|
vinstall ${FILESDIR}/vconsole.conf 644 etc
|
2011-10-11 07:10:36 +02:00
|
|
|
vinstall ${FILESDIR}/os-release 644 etc
|
2011-10-08 19:09:58 +02:00
|
|
|
vinstall ${FILESDIR}/locale.conf 644 etc
|
2011-10-10 10:18:06 +02:00
|
|
|
|
|
|
|
printf "d /run/console 755 root root\n" > \
|
|
|
|
${DESTDIR}/usr/lib/tmpfiles.d/console.conf
|
|
|
|
chmod 644 ${DESTDIR}/usr/lib/tmpfiles.d/console.conf
|
2011-10-11 11:50:00 +02:00
|
|
|
|
|
|
|
# Create halt, reboot, shutdown, poweroff compat symlinks. Some
|
|
|
|
# applications expect them for "normal" use!
|
2012-07-09 15:40:04 +02:00
|
|
|
vmkdir usr/sbin
|
2011-10-11 11:50:00 +02:00
|
|
|
for f in halt poweroff shutdown reboot; do
|
2012-07-09 15:40:04 +02:00
|
|
|
ln -sf /usr/bin/systemctl ${DESTDIR}/usr/sbin/${f}
|
2011-10-11 11:50:00 +02:00
|
|
|
done
|
2012-07-27 11:31:08 +02:00
|
|
|
# Create /usr/sbin/init for compatibility.
|
2012-07-09 15:40:04 +02:00
|
|
|
ln -sf /usr/lib/systemd/systemd ${DESTDIR}/usr/sbin/init
|
2011-10-12 14:08:47 +02:00
|
|
|
|
2012-08-30 19:11:42 +02:00
|
|
|
# Remove RPM stuff.
|
2013-07-23 07:40:06 +02:00
|
|
|
rm -rf ${DESTDIR}/etc/rpm ${DESTDIR}/usr/lib/rpm
|
2012-09-22 15:57:15 +02:00
|
|
|
|
2013-02-27 14:20:02 +01:00
|
|
|
# Disable units in /etc; we do this at post-install time.
|
|
|
|
rm -rf ${DESTDIR}/etc/systemd/system/getty.target.wants
|
|
|
|
|
2012-10-05 20:58:02 +02:00
|
|
|
# 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
|
2013-05-15 11:28:07 +02:00
|
|
|
|
|
|
|
# fix .so links in manpage stubs
|
|
|
|
find ${DESTDIR}/usr/share/man -type f -name '*.[[:digit:]]' \
|
|
|
|
-exec sed -ri '1s|^\.so (.*)\.([0-9]+)|.so man\2/\1.\2|' {} +
|
2013-09-13 17:17:57 +02:00
|
|
|
|
|
|
|
# XXX We don't have pam.d/system-auth, use login pam service instead.
|
|
|
|
sed -e 's,system-auth,login,g' -i ${DESTDIR}/etc/pam.d/systemd-user
|
2011-06-25 22:04:30 +02:00
|
|
|
}
|
2013-04-13 13:29:34 +02:00
|
|
|
|
2013-10-27 09:25:13 +01:00
|
|
|
libudev-devel_package() {
|
|
|
|
depends="libudev>=${version}_${revision}"
|
|
|
|
short_desc+=" - udev library (development files)"
|
2013-04-13 13:29:34 +02:00
|
|
|
pkg_install() {
|
2013-10-27 09:25:13 +01:00
|
|
|
vmove usr/include/libudev.h
|
|
|
|
vmove usr/lib/pkgconfig/libudev.pc
|
|
|
|
vmove "usr/lib/libudev*.so"
|
2013-04-13 13:29:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 09:25:13 +01:00
|
|
|
libudev_package() {
|
|
|
|
short_desc+=" - udev library"
|
2013-04-13 13:29:34 +02:00
|
|
|
pkg_install() {
|
2013-10-27 09:25:13 +01:00
|
|
|
vmove "usr/lib/libudev.so.*"
|
2013-04-13 13:29:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 09:25:13 +01:00
|
|
|
systemd-devel_package() {
|
|
|
|
depends="systemd-libs>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
2013-04-13 13:29:34 +02:00
|
|
|
pkg_install() {
|
2013-10-27 09:25:13 +01:00
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
vmove "usr/lib/*.so"
|
|
|
|
vmove usr/share/man/man3
|
|
|
|
vmove usr/share/pkgconfig
|
2013-04-13 13:29:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 09:25:13 +01:00
|
|
|
systemd-libs_package() {
|
|
|
|
short_desc+=" - runtime libraries"
|
|
|
|
replaces="systemd<43_1"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/libsystemd*.so.*"
|
|
|
|
}
|
|
|
|
}
|