summaryrefslogtreecommitdiff
path: root/www/auth_ldap/Makefile
diff options
context:
space:
mode:
authorNik Clayton <nik@FreeBSD.org>2001-09-28 08:59:50 +0000
committerNik Clayton <nik@FreeBSD.org>2001-09-28 08:59:50 +0000
commit8cc9c35595fae3d7e5833b0440d2097ea16aeb11 (patch)
tree4bce853085fff41d9ec2066128de30b51b9c75d8 /www/auth_ldap/Makefile
parentadd forgotten patchfiles (diff)
Add auth_ldap, an Apache module that can authenticate against an LDAP
directory.
Notes
Notes: svn path=/head/; revision=48237
Diffstat (limited to 'www/auth_ldap/Makefile')
-rw-r--r--www/auth_ldap/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/www/auth_ldap/Makefile b/www/auth_ldap/Makefile
new file mode 100644
index 000000000000..943c980fe507
--- /dev/null
+++ b/www/auth_ldap/Makefile
@@ -0,0 +1,33 @@
+# New ports collection makefile for: auth_ldap
+# Date created: 25 September 2001
+# Whom: nik
+#
+# $FreeBSD$
+#
+
+PORTNAME= auth_ldap
+PORTVERSION= 1.6.0
+CATEGORIES= www
+MASTER_SITES= http://www.rudedog.org/auth_ldap/
+
+MAINTAINER= nik
+
+BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
+LIB_DEPENDS= lber.2:${PORTSDIR}/net/openldap2
+RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --with-sdk-headers=${LOCALBASE}/include \
+ --with-sdk-libs=${LOCALBASE}/lib \
+ --with-ldap-sdk=openldap
+
+USE_GMAKE= yes
+
+APXS?= ${LOCALBASE}/sbin/apxs
+
+MAKE_ARGS+= APXS=${APXS}
+
+do-install:
+ ${APXS} -i -A -n ldap ${WRKSRC}/auth_ldap.so
+
+.include <bsd.port.mk>