# $Id: PKGBUILD 138127 2011-09-17 02:26:42Z allan $ # Maintainer: AndyRTR # Contributor: tobias pkgname=xfce4-session pkgver=4.8.2 pkgrel=1 pkgdesc="A session manager for Xfce" arch=('i686' 'x86_64') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') # keep xorg-server-utils for https://bugs.archlinux.org/task/21096 'xorg-server-utils' # upower and consolekit for reboot/shutdown/hibernate/suspend depends=('xfce4-panel' 'gconf' 'libgnome-keyring' 'libwnck' 'libsm' 'xorg-iceauth' 'upower' 'consolekit' 'hicolor-icon-theme' ) makedepends=('intltool') optdepends=('fortune-mod: for xfce4-tips') replaces=('xfce4-toys') backup=(etc/polkit-1/localauthority/50-local.d/org.freedesktop.consolekit.pkla etc/polkit-1/localauthority/50-local.d/org.freedesktop.upower.pkla) options=('!libtool') install=${pkgname}.install source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2 org.freedesktop.consolekit.pkla org.freedesktop.upower.pkla) md5sums=('48780cbcf784ab64debc9312f17765f2' '2e2519950d8c591dc9440ed8957a49ed' '5fa270637b5e685f033863d8664795a2') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib/xfce4 \ --localstatedir=/var \ --disable-static \ --disable-hal \ --enable-gnome \ --enable-libgnome-keyring \ --enable-session-screenshots \ --enable-upower \ --enable-consolekit \ --enable-polkit \ --enable-panel-plugin \ --disable-debug make } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install # install polkit/consolekit permission file needed for usage without a display manager install -dm700 ${pkgdir}/etc/polkit-1/localauthority install -dm755 ${pkgdir}/etc/polkit-1/localauthority/50-local.d install -m644 ${srcdir}/org.freedesktop.consolekit.pkla ${pkgdir}/etc/polkit-1/localauthority/50-local.d/ install -m644 ${srcdir}/org.freedesktop.upower.pkla ${pkgdir}/etc/polkit-1/localauthority/50-local.d/ }