2008-03-27 20:59:51 -04:30
|
|
|
# Description: LDAP NSS module
|
2013-11-23 19:04:03 +09:00
|
|
|
# URL: http://www.padl.com/OSS/nss_ldap.html
|
2008-03-27 20:59:51 -04:30
|
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
|
|
# Depends on: openldap
|
|
|
|
|
|
|
|
name=nss_ldap
|
2011-07-25 17:58:19 +09:00
|
|
|
version=265
|
2013-11-23 19:04:03 +09:00
|
|
|
release=3
|
2012-12-20 17:13:34 +09:00
|
|
|
source=(http://www.padl.com/download/$name-$version.tar.gz nss_ldap-265-glibc-2.16.patch)
|
2008-03-27 20:59:51 -04:30
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2011-07-25 17:58:19 +09:00
|
|
|
|
2012-12-20 17:13:34 +09:00
|
|
|
patch -p1 -i $SRC/nss_ldap-265-glibc-2.16.patch
|
|
|
|
sed -i -e 's|CVSVERSIONDIR=\$(top_srcdir) vers_string|CVSVERSIONDIR=\$(top_srcdir) ./vers_string|g' Makefile.am Makefile.in
|
2013-11-23 19:04:03 +09:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--with-ldap-lib=openldap \
|
|
|
|
--with-ldap-conf-file=/etc/nss_ldap.conf
|
2012-12-20 17:13:34 +09:00
|
|
|
make
|
2008-03-27 20:59:51 -04:30
|
|
|
mkdir -p $PKG/lib $PKG/usr/man
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|