void-packages/srcpkgs/gdm/template

71 lines
2.1 KiB
Bash
Raw Normal View History

# Template file for 'gdm'
pkgname=gdm
2015-09-19 07:10:30 +00:00
version=3.16.4
revision=3
patch_args="-Np1"
build_style=gnu-configure
configure_args="$(vopt_enable gir introspection)
--disable-schemas-compile --disable-static --with-default-pam-config=arch
2012-10-16 07:13:25 +00:00
--with-at-spi-registryd-directory=/usr/libexec --without-tcp-wrappers
2015-03-18 15:23:43 +00:00
--with-screenshot-dir=/var/lib/gdm/greeter --sbindir=/usr/bin --without-plymouth
--with-xauth-dir=/run/gdm --with-pid-file=/run/gdm/gdm.pid
--with-console-kit --without-systemd --disable-systemd-journal --with-initial-vt=7"
hostmakedepends="automake libtool pkg-config itstool intltool gnome-doc-utils
$(vopt_if gir gobject-introspection)"
2015-03-18 15:23:43 +00:00
makedepends="glib-devel iso-codes gettext-devel
pam-devel nss-devel accountsservice-devel gtk+3-devel upower-devel
2014-10-13 16:11:06 +00:00
libSM-devel libcanberra-devel dconf"
conf_files="
/etc/gdm/custom.conf
/etc/pam.d/gdm-autologin
/etc/pam.d/gdm-fingerprint
2015-04-30 05:35:40 +00:00
/etc/pam.d/gdm-launch-environment
/etc/pam.d/gdm-password
2015-04-30 05:35:40 +00:00
/etc/pam.d/gdm-pin
/etc/pam.d/gdm-smartcard"
# Create the 'gdm' system user/group.
system_accounts="gdm"
gdm_homedir="/var/lib/gdm"
2014-10-13 16:11:06 +00:00
depends="iso-codes xrdb xorg-server hicolor-icon-theme
dconf>=0.20 gnome-session>=3.14 gnome-settings-daemon>=3.14 gnome-shell>=3.14"
short_desc="GNOME Display Manager"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2011-05-31 19:26:06 +00:00
homepage="http://www.gnome.org"
license="GPL-2"
2015-07-13 13:44:05 +00:00
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
2015-09-19 07:10:30 +00:00
checksum=281dd28d729eaab2f67e450b5b162299dec537b6f7e81fa1124e35c89d3942fd
# Package build options
build_options="gir"
# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
build_options_default+=" gir"
fi
pre_configure() {
AUTOPOINT='intltoolize --automake -c' NOCONFIGURE=1 autoreconf -fi
}
2012-03-22 16:09:20 +00:00
post_install() {
# runit service
2014-10-13 16:11:06 +00:00
vsv gdm
}
libgdm_package() {
2013-06-14 20:30:54 +00:00
short_desc+=" - runtime libraries"
pkg_install() {
2013-07-31 05:30:53 +00:00
vmove "usr/lib/*.so.*"
}
}
gdm-devel_package() {
2013-10-16 16:18:26 +00:00
depends="libgdm>=${version}_${revision}"
2013-06-14 20:30:54 +00:00
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
2013-07-31 05:30:53 +00:00
vmove "usr/lib/*.so"
}
}