nss_ldap: Initial commit

This commit is contained in:
Alan Mizrahi 2008-03-27 20:59:51 -04:30
parent 101c77d7c1
commit 00504789dd
3 changed files with 32 additions and 0 deletions

13
nss_ldap/.footprint Normal file
View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/nsswitch.ldap
drwxr-xr-x root/root etc/openldap/
-rw-r--r-- root/root etc/openldap/ldap.conf
drwxr-xr-x root/root lib/
-rwxr-xr-x root/root lib/libnss_ldap-2.6.1.so
lrwxrwxrwx root/root lib/libnss_ldap.so.2 -> libnss_ldap-2.6.1.so
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libnss_ldap.so.2 -> ../../lib/libnss_ldap.so.2
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/nss_ldap.5.gz

1
nss_ldap/.md5sum Normal file
View File

@ -0,0 +1 @@
26514c93db7d675326257cde260ff174 nss_ldap-260.tar.gz

18
nss_ldap/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: LDAP NSS module
# URL: http://www.padl.com/OSS/nss_ldap.html
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: openldap
name=nss_ldap
version=260
release=1
source=(http://www.padl.com/download/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --mandir=/usr/man --with-ldap-lib=openldap --with-ldap-conf-file=/etc/openldap/ldap.conf
make
mkdir -p $PKG/lib $PKG/usr/man
make DESTDIR=$PKG install
rm -f $PKG/etc/ldap.conf
}