forked from ports/contrib
25 lines
618 B
Plaintext
25 lines
618 B
Plaintext
# Description: LDAP PAM module
|
|
# URL: http://www.padl.com/OSS/pam_ldap.html
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on: linux-pam openldap cyrus-sasl
|
|
|
|
name=pam_ldap
|
|
version=186
|
|
release=3
|
|
source=(http://www.padl.com/download/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/lib \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--with-ldap-lib=openldap \
|
|
--with-ldap-conf-file=/etc/pam_ldap.conf
|
|
PERL5LIB="$PWD" PATH="$PATH:$SRC/$name-$version" make
|
|
make DESTDIR=$PKG install
|
|
|
|
mv $PKG/etc/ldap.conf $PKG/etc/pam_ldap.conf
|
|
}
|