2011-06-25 22:04:30 +02:00
|
|
|
# Template file for 'systemd'
|
|
|
|
pkgname=systemd
|
2013-07-04 04:04:43 +02:00
|
|
|
version=205
|
2013-07-04 21:46:49 +02:00
|
|
|
revision=2
|
2013-03-27 09:38:23 +01:00
|
|
|
short_desc="A system and service manager for Linux"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
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"
|
2013-07-04 04:04:43 +02:00
|
|
|
checksum=54d6d3e1e9e66b6a484f68a3323cb489f0a8f50bdeb1d5465c3a48c6fc1e0058
|
2013-03-27 09:38:23 +01:00
|
|
|
|
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-01-08 08:07:46 +01:00
|
|
|
--disable-audit --disable-static --disable-ima"
|
2013-03-27 09:38:23 +01:00
|
|
|
|
2013-06-04 10:42:13 +02:00
|
|
|
hostmakedepends="which pkg-config intltool gperf libxslt docbook-xsl
|
|
|
|
libtool automake gettext-devel"
|
2013-03-27 09:38:23 +01:00
|
|
|
|
2013-05-14 10:27:35 +02:00
|
|
|
makedepends="acl-devel pam-devel dbus-devel>=1.6.10_2 libcap-devel libkmod-devel
|
2013-04-09 01:52:33 +02:00
|
|
|
liblzma-devel cryptsetup-devel libblkid-devel libglib-devel libgcrypt-devel
|
2013-05-07 09:15:47 +02:00
|
|
|
systemd-devel>=${version} python-devel gobject-introspection"
|
2013-03-27 09:38:23 +01:00
|
|
|
|
2013-04-09 01:49:27 +02:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-03-08 12:49:16 +01:00
|
|
|
# XXX add support to gudev, introspection and python.
|
2013-06-04 10:42:13 +02:00
|
|
|
hostmakedepends+=" libgcrypt-devel"
|
2013-05-14 10:27:35 +02:00
|
|
|
makedepends="acl-devel pam-devel dbus-devel>=1.6.10_2 libcap-devel
|
2013-03-24 10:27:31 +01:00
|
|
|
libkmod-devel liblzma-devel cryptsetup-devel
|
2013-05-07 09:15:47 +02:00
|
|
|
libblkid-devel libgcrypt-devel libglib-devel
|
|
|
|
systemd-devel>=${version}"
|
2013-04-09 01:49:27 +02:00
|
|
|
configure_args+=" --without-python --disable-gudev
|
2013-02-15 16:44:09 +01:00
|
|
|
--enable-introspection=no
|
|
|
|
ac_cv_func_malloc_0_nonnull=yes
|
2013-03-14 22:34:28 +01:00
|
|
|
ac_cv_func_realloc_0_nonnull=yes"
|
2013-02-15 16:44:09 +01:00
|
|
|
fi
|
|
|
|
|
2013-06-04 10:42:13 +02:00
|
|
|
pre_configure() {
|
|
|
|
autoreconf -fi
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
2013-02-12 18:31:38 +01:00
|
|
|
# Remove files provided in libudev{,-devel} and systemd-{devel,libs}.
|
|
|
|
rm -rf ${DESTDIR}/usr/include/{libudev.h,systemd}
|
|
|
|
rm -rf ${DESTDIR}/usr/share/pkgconfig
|
|
|
|
rm -rf ${DESTDIR}/usr/share/man/man3
|
|
|
|
rm -f ${DESTDIR}/usr/lib/lib{udev,systemd}*
|
|
|
|
rm -f ${DESTDIR}/usr/lib/pkgconfig/lib{udev,systemd}*
|
|
|
|
|
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.
|
|
|
|
rm -rf ${DESTDIR}/etc/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|' {} +
|
2011-06-25 22:04:30 +02:00
|
|
|
}
|
2013-04-13 13:29:34 +02:00
|
|
|
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
|
|
|
|
libgudev_package() {
|
|
|
|
short_desc="GObject-based wrapper library for libudev"
|
|
|
|
depends="libudev>=${version}"
|
|
|
|
pkg_install() {
|
2013-07-04 04:04:43 +02:00
|
|
|
vmove "usr/lib/libgudev*.so.*"
|
2013-04-13 13:29:34 +02:00
|
|
|
vmove usr/lib/girepository-1.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libgudev-devel_package() {
|
|
|
|
depends="libglib-devel libudev-devel libgudev>=${version}"
|
|
|
|
short_desc="GObject-based wrapper library for libudev - development files"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include/gudev-1.0
|
2013-07-04 04:04:43 +02:00
|
|
|
vmove "usr/lib/libgudev*.so"
|
2013-04-13 13:29:34 +02:00
|
|
|
vmove "usr/lib/pkgconfig/gudev*"
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
systemd-python_package() {
|
2013-04-30 10:00:11 +02:00
|
|
|
short_desc+=" - python bindings"
|
2013-04-13 13:29:34 +02:00
|
|
|
pycompile_module="systemd"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/python*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fi # !CROSS_BUILD
|
|
|
|
|
|
|
|
systemd_package() {
|
|
|
|
# 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"
|
|
|
|
depends="xbps-triggers>=0.64 dbus kbd libcap-progs
|
|
|
|
libudev>=${version} systemd-libs>=${version} shadow"
|
|
|
|
pkg_install() {
|
2013-04-19 08:14:39 +02:00
|
|
|
vmove all
|
2013-04-13 13:29:34 +02:00
|
|
|
}
|
|
|
|
}
|