1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/net/nss_ldap/Makefile
Tom McLaughlin 6b63eb2573 - Update to 1.251
- Install man page
- Make krb5_ccname option in nss_ldap.conf work
    nss_ldap has two different arguments that can be used at compile time to
    make this work.  The --enable-configurable-krb5-ccname-env configure
    option was chossen because it works with both the Heimdal and MIT
    Kerberos implementations and does not require a kerberos dependency.  A
    note has been made in UPDATING that this now works because
    misconfiguration can lockout users.

PR:             100104
Submitted by:   Joerg Pulz <Joerg.Pulz@frm2.tum.de>
Approved by:    Maintainer
2006-07-29 20:47:45 +00:00

57 lines
1.4 KiB
Makefile

# Ports collection Makefile for: nss_ldap
# Date created: 4/1/2003
# Whom: nectar@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= nss_ldap
PORTVERSION= 1.${NSS_LDAP_VERSION}
CATEGORIES= net
MASTER_SITES= http://www.padl.com/download/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= sem
DISTNAME= ${PORTNAME}-${NSS_LDAP_VERSION}
MAINTAINER= kazakov@gmail.com
COMMENT= RFC 2307 NSS module
USE_OPENLDAP= yes
NSS_LDAP_VERSION=251
GNU_CONFIGURE= yes
USE_GMAKE= yes
INSTALLS_SHLIB= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -Wl,-rpath,${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-ldap-conf-file=${PREFIX}/etc/nss_ldap.conf \
--with-ldap-secret-file=${PREFIX}/etc/nss_ldap.secret \
--enable-rfc2307bis \
--enable-schema-mapping \
--enable-paged-results \
--enable-configurable-krb5-ccname-env
MAN5= nss_ldap.5
post-extract:
${CP} ${FILESDIR}/bsdnss.c ${WRKSRC}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/nss_ldap.so ${PREFIX}/lib/nss_ldap.so.1
${INSTALL_DATA} ${WRKSRC}/ldap.conf ${PREFIX}/etc/nss_ldap.conf.sample
@${REINPLACE_CMD} 's,/etc/ldap.,${PREFIX}/etc/nss_ldap.,g' \
${WRKSRC}/${MAN5}
${INSTALL_MAN} ${WRKSRC}/${MAN5} ${PREFIX}/man/man5
${SED} -e "s,%%PREFIX%%,${PREFIX},g" ${PKGMESSAGE}
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500112
IGNORE= NSS modules only supported on FreeBSD 5.1 or later
.endif
.include <bsd.port.post.mk>