vp-build/srcpkgs/gdm/template

74 lines
2.2 KiB
Bash

# Template file for 'gdm'
pkgname=gdm
version=3.30.2
revision=1
build_style=gnu-configure
configure_args="$(vopt_enable gir introspection)
--disable-schemas-compile --disable-static --with-default-pam-config=arch
--with-at-spi-registryd-directory=/usr/libexec --without-tcp-wrappers
--with-screenshot-dir=/var/lib/gdm/greeter --sbindir=/usr/bin --without-plymouth
--with-xauth-dir=/run/gdm --with-pid-file=/run/gdm/gdm.pid
--disable-systemd-journal --with-initial-vt=7 --enable-wayland-support"
hostmakedepends="gnome-doc-utils itstool pkg-config $(vopt_if gir 'gobject-introspection')"
makedepends="accountsservice-devel dconf elogind-devel gettext-devel glib-devel
iso-codes libSM-devel libcanberra-devel nss-devel pam-devel upower-devel"
depends="gnome-settings-daemon gnome-shell xorg-server xorg-server-xwayland
xrdb"
checkdepends="check-devel"
short_desc="GNOME Display Manager"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="GPL-2.0-or-later"
homepage="https://wiki.gnome.org/Projects/GDM"
distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
checksum=be90ede158fd5d2ff0b97db617ffd77c1033964824cb04fcfac0865c8c6f56c1
conf_files="
/etc/gdm/custom.conf
/etc/pam.d/gdm-autologin
/etc/pam.d/gdm-fingerprint
/etc/pam.d/gdm-launch-environment
/etc/pam.d/gdm-password
/etc/pam.d/gdm-pin
/etc/pam.d/gdm-smartcard"
# Create the 'gdm' system user/group.
system_accounts="gdm"
gdm_homedir="/var/lib/gdm"
# Package build options
build_options="gir"
# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
build_options_default+=" gir"
fi
post_install() {
vinstall $FILESDIR/Xsession 755 etc/gdm
sed -i "s/pam_systemd\.so/pam_elogind.so/" $DESTDIR/etc/pam.d/*
# fix with eudev
sed -i 's/\\"//g; s/\[/\\[/; s/\\n/\\\\n/' $DESTDIR/usr/lib/udev/rules.d/61-gdm.rules
# runit service
vsv gdm
}
libgdm_package() {
short_desc+=" - runtime libraries"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
gdm-devel_package() {
depends="libgdm>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
vmove "usr/lib/*.so"
}
}