diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-26 22:29:52 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-26 22:29:52 -0300 |
commit | 258bafde6bf3c83e4108230457073e8136719a73 (patch) | |
tree | a6132a3a8316be50ff77e3cfcf5c41f94747bd2c /extra/pam_ldap | |
parent | 9b703cb6980ff009ca181cecd900cb2e78f5d54e (diff) | |
parent | f6a79a3f5989efc8db63af942851c56f0c462bb1 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/pigeonhole/PKGBUILD
community/pv/PKGBUILD
community/python-gnupginterface/PKGBUILD
community/tdl/PKGBUILD
extra/clisp/PKGBUILD
extra/expect/PKGBUILD
extra/gtkpod/PKGBUILD
extra/hspell/PKGBUILD
extra/id3lib/PKGBUILD
extra/imake/PKGBUILD
extra/libfontenc/PKGBUILD
extra/libice/PKGBUILD
extra/libsm/PKGBUILD
extra/libspectre/PKGBUILD
extra/libtasn1/PKGBUILD
extra/libxau/PKGBUILD
extra/libxaw/PKGBUILD
extra/libxxf86dga/PKGBUILD
extra/mp3splt/PKGBUILD
extra/multitail/PKGBUILD
extra/nss_ldap/PKGBUILD
extra/pam_ldap/PKGBUILD
extra/recode/PKGBUILD
extra/ruby/PKGBUILD
extra/squid/PKGBUILD
extra/ssmtp/PKGBUILD
extra/umfpack/PKGBUILD
extra/xorg-xbacklight/PKGBUILD
extra/xorg-xbiff/PKGBUILD
extra/xorg-xcalc/PKGBUILD
extra/xorg-xconsole/PKGBUILD
extra/xorg-xedit/PKGBUILD
extra/xorg-xeyes/PKGBUILD
extra/xorg-xvinfo/PKGBUILD
Diffstat (limited to 'extra/pam_ldap')
-rw-r--r-- | extra/pam_ldap/PKGBUILD | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/extra/pam_ldap/PKGBUILD b/extra/pam_ldap/PKGBUILD index 8b1218e70..74ffd92a3 100644 --- a/extra/pam_ldap/PKGBUILD +++ b/extra/pam_ldap/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 87842 2010-08-18 13:07:56Z jgc $ +# $Id: PKGBUILD 151292 2012-02-25 13:09:27Z pierre $ # Maintainer: Paul Mattal <paul@archlinux.org> # Contributor: Comete <la_comete@tiscali.fr> + pkgname=pam_ldap -pkgver=185 +pkgver=186 pkgrel=1 pkgdesc="LDAP authentication module for the PAM framework" -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') url="http://www.padl.com/OSS/pam_ldap.html" license=('LGPL') -depends=('libldap>=2.4.22' 'pam') -backup=(etc/pam_ldap.conf) -options=(!makeflags) -source=(http://www.padl.com/download/${pkgname}-${pkgver}.tar.gz) -md5sums=('639260f0c81d57a6fcbd1cb47dd6c5e7') +depends=('libldap' 'pam') +backup=('etc/pam_ldap.conf') +options=('!makeflags') +source=("http://www.padl.com/download/${pkgname}-${pkgver}.tar.gz") +md5sums=('58c8689921c5c4578363438acd8503c2') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -20,6 +21,10 @@ build() { --with-ldap-conf-file=/etc/pam_ldap.conf \ --mandir=/usr/share/man PATH="${PATH}:${srcdir}/${pkgname}-${pkgver}" make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install mv "${pkgdir}/etc/ldap.conf" "${pkgdir}/etc/pam_ldap.conf" } |