void-packages/srcpkgs/lightdm/template

76 lines
2.3 KiB
Plaintext
Raw Normal View History

2011-02-16 13:27:20 +00:00
# Template file for 'lightdm'
pkgname=lightdm
2014-08-03 15:27:26 +00:00
version=1.10.1
revision=1
build_style=gnu-configure
2012-04-20 08:22:48 +00:00
configure_args="--with-greeter-session=lightdm-gtk-greeter
2012-10-15 21:30:02 +00:00
--with-greeter-user=lightdm --disable-static --disable-tests"
2011-02-16 13:27:20 +00:00
short_desc="Light Display Manager"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-11-09 07:41:52 +00:00
license="GPL-3, LGPL-3"
2012-07-09 21:05:03 +00:00
homepage="https://launchpad.net/lightdm"
2013-10-11 07:49:48 +00:00
distfiles="https://launchpad.net/lightdm/${version%.*}/$version/+download/$pkgname-$version.tar.xz"
2014-08-03 15:27:26 +00:00
checksum=737123001a7ae2ab126c75f61dcebb767d082ec043c012285eab6fa6b0d6a58f
2011-02-16 13:27:20 +00:00
2014-08-03 15:27:26 +00:00
hostmakedepends="pkg-config intltool itstool gobject-introspection"
2013-10-11 07:49:48 +00:00
makedepends="dbus-glib-devel libxklavier-devel libxml2-devel
qt-devel gtk+3-devel libxcb-devel libXdmcp-devel pam-devel vala-devel
2014-08-03 15:27:26 +00:00
libgcrypt-devel accountsservice-devel"
depends="gnome-icon-theme dbus accountsservice"
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"
2014-08-03 15:27:26 +00:00
lightdm_homedir="/var/lib/lightdm"
systemd_services="lightdm.service off"
2014-08-03 15:27:26 +00:00
make_dirs="
/var/lib/lightdm 0755 lightdm lightdm
/var/lib/lightdm-data 0755 lightdm lightdm"
2011-02-16 13:27:20 +00:00
2012-04-20 08:22:48 +00:00
post_install() {
2011-05-18 10:25:00 +00:00
# Remove provided init file and use our own.
2011-02-16 13:27:20 +00:00
rm -rf ${DESTDIR}/etc/init
2012-07-09 21:05:03 +00:00
vinstall ${FILESDIR}/lightdm.service 644 usr/lib/systemd/system
2013-10-11 07:49:48 +00:00
vinstall ${FILESDIR}/lightdm.tmpfiles 644 usr/lib/tmpfiles.d lightdm.conf
vinstall ${FILESDIR}/lightdm.rules 644 usr/share/polkit-1/rules.d
2013-10-11 08:16:08 +00:00
vinstall ${FILESDIR}/xsession 755 etc/lightdm Xsession
2014-08-03 15:27:26 +00:00
# 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" >> $f
done
2011-02-16 13:27:20 +00:00
}
liblightdm-gobject_package() {
2013-10-11 07:49:48 +00:00
short_desc+=" - GObject support library"
pkg_install() {
2013-10-11 07:49:48 +00:00
vmove "usr/lib/liblightdm-gobject*.so.*"
vmove usr/lib/girepository-1.0
}
}
liblightdm-qt_package() {
2013-10-11 07:49:48 +00:00
short_desc+=" - QT support library"
pkg_install() {
2013-10-11 07:49:48 +00:00
vmove "usr/lib/liblightdm-qt*.so.*"
}
}
lightdm-devel_package() {
2014-01-22 09:28:38 +00:00
depends="libglib-devel liblightdm-gobject>=${version}_${revision}
liblightdm-qt>=${version}_${revision}"
2013-10-11 07:49:48 +00:00
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
2013-10-11 07:49:48 +00:00
vmove "usr/lib/*.so"
}
}