diff options
author | Cecil <knoppmyth@gmail.com> | 2011-07-05 06:55:13 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2011-07-05 06:55:13 (GMT) |
commit | 764d67eb17ac6dd13af08e8423fe5aa68647347f (patch) | |
tree | 23d198c46610c5b8096a5b8ece11d29f092f3301 /abs/extra/polkit/PKGBUILD | |
parent | e26f6115ec6d3c43ea62e02beb9c4ee58ec58eee (diff) | |
download | linhes_pkgbuild-764d67eb17ac6dd13af08e8423fe5aa68647347f.zip linhes_pkgbuild-764d67eb17ac6dd13af08e8423fe5aa68647347f.tar.gz linhes_pkgbuild-764d67eb17ac6dd13af08e8423fe5aa68647347f.tar.bz2 |
polkit:Bumped to latest.
Diffstat (limited to 'abs/extra/polkit/PKGBUILD')
-rw-r--r-- | abs/extra/polkit/PKGBUILD | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/abs/extra/polkit/PKGBUILD b/abs/extra/polkit/PKGBUILD index 78cbc77..62f3f8b 100644 --- a/abs/extra/polkit/PKGBUILD +++ b/abs/extra/polkit/PKGBUILD @@ -1,29 +1,34 @@ -# $Id: PKGBUILD 72186 2010-03-13 19:06:23Z jgc $ +# $Id: PKGBUILD 90717 2010-09-15 14:26:53Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=polkit -pkgver=0.96 -pkgrel=2 +pkgver=0.98 +pkgrel=1 pkgdesc="Application development toolkit for controlling system-wide privileges" arch=(i686 x86_64) license=('LGPL') -url="http://www.freedesktop.org/wiki/Software/Policykit" -depends=('eggdbus>=0.6' 'pam') -makedepends=('intltool' 'gtk-doc' 'gobject-introspection') +url="http://www.freedesktop.org/wiki/Software/PolicyKit" +depends=('glib2>=2.25.15' 'pam' 'expat>=2.0.1') +makedepends=('intltool>=0.41.1' 'gtk-doc>=1.15' 'gobject-introspection>=0.9.5') replaces=('policykit') options=('!libtool') source=(http://hal.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz + polkit-git-fixes.patch polkit.pam) -md5sums=('e0a06da501b04ed3bab986a9df5b5aa2' +md5sums=('96e583a1177ba5436f034a2fee55f5fa' + 'c5aaa13d6eeda5cec224b273acba9420' '6564f95878297b954f0572bc1610dd15') build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/polkit-git-fixes.patch" + libtoolize --force + autoreconf ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --libexecdir=/usr/lib/polkit-1 \ - --disable-static --enable-gtk-doc || return 1 - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + --disable-static --enable-gtk-doc + make + make DESTDIR="${pkgdir}" install - install -m644 "${srcdir}/polkit.pam" "${pkgdir}/etc/pam.d/polkit-1" || return 1 + install -m644 "${srcdir}/polkit.pam" "${pkgdir}/etc/pam.d/polkit-1" } |