2011-06-25 20:04:30 +00:00
|
|
|
# Template file for 'systemd'
|
|
|
|
pkgname=systemd
|
2013-04-19 06:14:39 +00:00
|
|
|
version=202
|
|
|
|
revision=1
|
2013-03-27 08:38:23 +00: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-04-19 06:14:39 +00:00
|
|
|
checksum=8c43073252a52eb9f9ab9bd698be0192bcb2175ba5daba6057250083dd64e059
|
2013-03-27 08:38:23 +00:00
|
|
|
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2013-01-08 07:07:46 +00:00
|
|
|
configure_args="--libexecdir=/usr/lib
|
2012-10-10 15:29:04 +00:00
|
|
|
--disable-selinux --disable-tcpwrap --with-rootprefix=/usr
|
2013-01-08 07:07:46 +00:00
|
|
|
--with-sysvinit-path= --with-sysvrcnd-path=
|
|
|
|
--disable-audit --disable-static --disable-ima"
|
2013-03-27 08:38:23 +00:00
|
|
|
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="which pkg-config intltool gperf libxslt docbook-xsl"
|
2013-03-27 08:38:23 +00:00
|
|
|
|
|
|
|
makedepends="acl-devel pam-devel dbus-devel libcap-devel libkmod-devel
|
2013-04-08 23:52:33 +00:00
|
|
|
liblzma-devel cryptsetup-devel libblkid-devel libglib-devel libgcrypt-devel
|
2013-03-27 08:38:23 +00:00
|
|
|
python-devel gobject-introspection"
|
|
|
|
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-03-08 11:49:16 +00:00
|
|
|
# XXX add support to gudev, introspection and python.
|
2013-04-13 11:29:34 +00:00
|
|
|
hostmakedepends+=" libtool automake gettext-devel libgcrypt-devel"
|
2013-03-24 09:27:31 +00:00
|
|
|
makedepends="acl-devel pam-devel dbus-devel libcap-devel
|
|
|
|
libkmod-devel liblzma-devel cryptsetup-devel
|
2013-03-26 09:03:26 +00:00
|
|
|
libblkid-devel libgcrypt-devel libglib-devel"
|
2013-04-08 23:49:27 +00:00
|
|
|
configure_args+=" --without-python --disable-gudev
|
2013-02-15 15:44:09 +00:00
|
|
|
--enable-introspection=no
|
|
|
|
ac_cv_func_malloc_0_nonnull=yes
|
2013-03-14 21:34:28 +00:00
|
|
|
ac_cv_func_realloc_0_nonnull=yes"
|
2013-02-15 15:44:09 +00:00
|
|
|
pre_configure() {
|
|
|
|
autoreconf -fi
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2012-01-28 17:08:50 +00:00
|
|
|
post_install() {
|
2013-02-15 15:44:09 +00:00
|
|
|
# Remove useless doc directory.
|
|
|
|
rm -rf ${DESTDIR}/usr/share/doc
|
|
|
|
|
2013-02-12 17:31:38 +00: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 17:09:58 +00:00
|
|
|
vinstall ${FILESDIR}/hostname 644 etc
|
|
|
|
vinstall ${FILESDIR}/vconsole.conf 644 etc
|
2011-10-11 05:10:36 +00:00
|
|
|
vinstall ${FILESDIR}/os-release 644 etc
|
2011-10-08 17:09:58 +00:00
|
|
|
vinstall ${FILESDIR}/locale.conf 644 etc
|
2011-10-10 08:18:06 +00: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 09:50:00 +00:00
|
|
|
|
|
|
|
# Create halt, reboot, shutdown, poweroff compat symlinks. Some
|
|
|
|
# applications expect them for "normal" use!
|
2012-07-09 13:40:04 +00:00
|
|
|
vmkdir usr/sbin
|
2011-10-11 09:50:00 +00:00
|
|
|
for f in halt poweroff shutdown reboot; do
|
2012-07-09 13:40:04 +00:00
|
|
|
ln -sf /usr/bin/systemctl ${DESTDIR}/usr/sbin/${f}
|
2011-10-11 09:50:00 +00:00
|
|
|
done
|
2012-07-27 09:31:08 +00:00
|
|
|
# Create /usr/sbin/init for compatibility.
|
2012-07-09 13:40:04 +00:00
|
|
|
ln -sf /usr/lib/systemd/systemd ${DESTDIR}/usr/sbin/init
|
2011-10-12 12:08:47 +00:00
|
|
|
|
2012-08-30 17:11:42 +00:00
|
|
|
# Remove RPM stuff.
|
|
|
|
rm -rf ${DESTDIR}/etc/rpm
|
2012-09-22 13:57:15 +00:00
|
|
|
|
2013-02-27 13:20:02 +00:00
|
|
|
# Disable units in /etc; we do this at post-install time.
|
|
|
|
rm -rf ${DESTDIR}/etc/systemd/system/getty.target.wants
|
|
|
|
|
2012-10-05 18:58:02 +00: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
|
2011-06-25 20:04:30 +00:00
|
|
|
}
|
2013-04-13 11:29:34 +00:00
|
|
|
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
|
|
|
|
libgudev_package() {
|
|
|
|
short_desc="GObject-based wrapper library for libudev"
|
|
|
|
depends="libudev>=${version}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/libgudev*.so*"
|
|
|
|
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
|
|
|
|
vmove "usr/lib/pkgconfig/gudev*"
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
systemd-python_package() {
|
|
|
|
short_desc="${sourcepkg} - python bindings"
|
|
|
|
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 06:14:39 +00:00
|
|
|
vmove all
|
2013-04-13 11:29:34 +00:00
|
|
|
}
|
|
|
|
}
|