1963cea5fb
- Set USE_APACHE to 13 - Assign maintainership to apache@ PR: ports/94457 [1] Submitted by: Panagiotis Christias <p.christias@noc.ntua.gr> [1]
34 lines
750 B
Makefile
34 lines
750 B
Makefile
# New ports collection makefile for: auth_ldap
|
|
# Date created: 25 September 2001
|
|
# Whom: nik
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= auth_ldap
|
|
PORTVERSION= 1.6.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.rudedog.org/auth_ldap/
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache module to authenticate against an LDAP directory
|
|
|
|
USE_OPENLDAP= yes
|
|
USE_APACHE= 13
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= LIBS="-llber"
|
|
CONFIGURE_ARGS= --with-sdk-headers=${LOCALBASE}/include \
|
|
--with-sdk-libs=${LOCALBASE}/lib \
|
|
--with-ldap-sdk=openldap \
|
|
--with-apxs=${APXS}
|
|
USE_GMAKE= yes
|
|
|
|
MAKE_ARGS+= APXS=${APXS}
|
|
|
|
post-patch:
|
|
${CP} -p ${WRKSRC}/auth_ldap.c ${WRKSRC}/mod_auth_ldap.c
|
|
|
|
do-install:
|
|
${APXS} -i -a -n auth_ldap ${WRKSRC}/mod_auth_ldap.so
|
|
|
|
.include <bsd.port.mk>
|