blob: 187b538fa53605617e1e0040890cdb77df654d1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $NetBSD: Makefile,v 1.12 2004/03/26 02:27:53 wiz Exp $
#
DISTNAME= pam_ldap-150
PKGNAME= ${DISTNAME:S/_/-/}
PKGREVISION= 2
CATEGORIES= security
MASTER_SITES= ftp://ftp.padl.com/pub/
MAINTAINER= rh@NetBSD.org
HOMEPAGE= http://www.padl.com/pam_ldap.html
COMMENT= Pluggable authentication module for LDAP directories
GNU_CONFIGURE= YES
USE_BUILDLINK2= YES
CONFIGURE_ARGS+= --with-ldap-lib=openldap
CONFIGURE_ARGS+= --with-ldap-dir=${BUILDLINK_PREFIX.openldap}
CONFIGURE_ARGS+= --with-ldap-conf-file=${BUILDLINK_PREFIX.pam}/etc/pam/pam.conf
CONFIGURE_ARGS+= --sysconfdir=${BUILDLINK_PREFIX.pam}/etc/pam
INSTALL_TARGET= install install-data
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pam-ldap
.for doc in COPYING COPYING.LIB INSTALL ChangeLog
cd ${WRKSRC} && ${INSTALL_DATA} ${doc} ${PREFIX}/share/doc/pam-ldap
.endfor
.include "../../databases/openldap/buildlink2.mk"
.include "../../security/PAM/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|