79 lines
2.5 KiB
Text
79 lines
2.5 KiB
Text
# Template file for 'lightdm'
|
|
pkgname=lightdm
|
|
version=1.12.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-greeter-session=lightdm-gtk-greeter
|
|
--with-greeter-user=lightdm --disable-static --disable-tests"
|
|
short_desc="Light Display Manager"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-3, LGPL-3"
|
|
homepage="https://launchpad.net/lightdm"
|
|
distfiles="https://launchpad.net/lightdm/${version%.*}/$version/+download/$pkgname-$version.tar.xz"
|
|
checksum=ce36bacef7a0ac5b720dc0f4aeb1c37aa56e7b72f7390e290a670fb1b8231736
|
|
|
|
# both install /etc/dbus-1/system.d/org.freedesktop.DisplayManager.conf
|
|
conflicts="sddm>=0"
|
|
|
|
build_options="systemd"
|
|
hostmakedepends="pkg-config intltool itstool gobject-introspection"
|
|
makedepends="dbus-glib-devel libxklavier-devel libxml2-devel
|
|
qt-devel gtk+3-devel libxcb-devel libXdmcp-devel pam-devel vala-devel
|
|
libgcrypt-devel accountsservice-devel $(vopt_if systemd systemd-devel)"
|
|
depends="dbus accountsservice $(vopt_if systemd '' 'ConsoleKit upower0')"
|
|
conf_files="
|
|
/etc/lightdm/keys.conf
|
|
/etc/lightdm/lightdm.conf
|
|
/etc/lightdm/users.conf
|
|
/etc/pam.d/lightdm
|
|
/etc/pam.d/lightdm-greeter
|
|
/etc/pam.d/lightdm-autologin"
|
|
system_accounts="lightdm"
|
|
lightdm_homedir="/var/lib/lightdm"
|
|
|
|
post_install() {
|
|
# Remove provided init file and use our own.
|
|
rm -rf ${DESTDIR}/etc/init
|
|
if [ "$build_option_systemd" ]; then
|
|
vinstall ${FILESDIR}/lightdm.service 644 usr/lib/systemd/system
|
|
vinstall ${FILESDIR}/lightdm.tmpfiles 644 usr/lib/tmpfiles.d lightdm.conf
|
|
fi
|
|
vsv lightdm
|
|
vinstall ${FILESDIR}/lightdm.rules 644 usr/share/polkit-1/rules.d
|
|
vinstall ${FILESDIR}/xsession 755 etc/lightdm Xsession
|
|
# make pam_systemd optional
|
|
for f in ${DESTDIR}/etc/pam.d/*; do
|
|
sed 's|\(.*pam_systemd.*\)|-\1|' -i $f
|
|
echo "-session optional pam_ck_connector.so nox11" >> $f
|
|
done
|
|
sed 's|\#session-wrapper=.*|session-wrapper=/etc/lightdm/Xsession|' -i ${DESTDIR}/etc/lightdm/lightdm.conf
|
|
}
|
|
|
|
liblightdm-gobject_package() {
|
|
short_desc+=" - GObject support library"
|
|
pkg_install() {
|
|
vmove "usr/lib/liblightdm-gobject*.so.*"
|
|
vmove usr/lib/girepository-1.0
|
|
}
|
|
}
|
|
liblightdm-qt_package() {
|
|
short_desc+=" - QT support library"
|
|
pkg_install() {
|
|
vmove "usr/lib/liblightdm-qt*.so.*"
|
|
}
|
|
}
|
|
lightdm-devel_package() {
|
|
depends="
|
|
libglib-devel
|
|
liblightdm-gobject>=${version}_${revision}
|
|
liblightdm-qt>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/gtk-doc
|
|
vmove usr/share/vala
|
|
vmove usr/share/gir-1.0
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|