# $Id: PKGBUILD 211513 2014-04-19 00:38:16Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgbase=gdm pkgname=(gdm libgdm) pkgver=3.12.1 pkgrel=2 pkgdesc="Gnome Display Manager" arch=(i686 x86_64) license=(GPL) url="http://www.gnome.org" depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server xorg-xhost) makedepends=(itstool intltool yelp-tools gobject-introspection) checkdepends=('check') source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz 0001-Add-Arch-Linux-PAM-config-files.patch) sha256sums=('41a009252bf491dadd7644b3e74be5c9364b1971b519a1a9ef31257180c74913' '49f2c70f96c796378ff749bb7283f23fb055424b2179d31e6235d6034c791bfd') prepare() { cd $pkgbase-$pkgver patch -Np1 -i ../0001-Add-Arch-Linux-PAM-config-files.patch AUTOPOINT='intltoolize --automake -c' autoreconf -fi } build() { cd $pkgbase-$pkgver ./configure \ --prefix=/usr \ --sbindir=/usr/bin \ --sysconfdir=/etc \ --libexecdir=/usr/lib/gdm \ --localstatedir=/var \ --disable-static \ --disable-schemas-compile \ --with-at-spi-registryd-directory=/usr/lib/at-spi2-core \ --with-check-accelerated-directory=/usr/lib/gnome-session \ --with-authentication-agent-directory=/usr/lib/polkit-gnome \ --with-gnome-settings-daemon-directory=/usr/lib/gnome-settings-daemon \ --without-tcp-wrappers \ --without-console-kit \ --with-systemd \ --with-default-pam-config=arch sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool make } check() { cd $pkgbase-$pkgver make check } package_gdm() { depends+=(libgdm) optdepends=('fprintd: fingerprint authentication') backup=(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-smartcard etc/gdm/custom.conf etc/gdm/Xsession etc/gdm/PostSession/Default etc/gdm/PreSession/Default) groups=(gnome) install=gdm.install cd $pkgbase-$pkgver make DESTDIR="$pkgdir" install chmod 711 "$pkgdir/var/log/gdm" rm -r "$pkgdir/var/run" ### Split libgdm make -C libgdm DESTDIR="$pkgdir" uninstall mv "$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml" "$srcdir" } package_libgdm() { pkgdesc="GDM support library" depends=(systemd glib2) install=libgdm.install cd $pkgbase-$pkgver make -C libgdm DESTDIR="$pkgdir" install install -Dm644 "$srcdir/org.gnome.login-screen.gschema.xml" \ "$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml" }