9f09010de1
After a detected intrusion on jabberstudio.org, all projects have been made unavailable so that project owners can review their code to look for possible evil code. Project owners should then contact the site maintainers to reactivate their project. This has never been done for jabber-xdb_ldap and will probably never be done. LDAP support has been integrated into jabberd-2.x so users can switch to that if they need LDAP authentication. PR: ports/82385 Submitted by: maintainer
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# New ports collection makefile for: jabber-xdb_ldap
|
|
# Date created: 03 January 2004
|
|
# Whom: Martijn Lina <martijn@pacno.net>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xdb_ldap
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.jabberstudio.org/files/xdb_ldap/
|
|
PKGNAMEPREFIX= jabber-
|
|
DIST_SUBDIR= jabber
|
|
|
|
MAINTAINER= martijn@pacno.net
|
|
COMMENT= Jabber xdb backend for an LDAP directory
|
|
|
|
BUILD_DEPENDS= ${NON_EXISTENT}:${PORTSDIR}/net/jabber:configure
|
|
|
|
USE_GMAKE= yes
|
|
USE_OPENLDAP= yes
|
|
|
|
FORBIDDEN= "Site is down after intrusion. Probably this project will never be revived"
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}/src
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
JABBER_SRC!= cd ${PORTSDIR}/net/jabber && make -V WRKSRC
|
|
MAKE_ENV= JABBER_SRC=${JABBER_SRC}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/jabber
|
|
${INSTALL_DATA} ${WRKSRC}/xdb_ldap.so ${PREFIX}/lib/jabber/
|
|
${INSTALL_DATA} ${WRKSRC}/../jabber-xdb.xml ${PREFIX}/etc/jabber-xdb.xml.sample
|
|
${MKDIR} ${PREFIX}/etc/openldap/schema
|
|
${INSTALL_DATA} ${WRKSRC}/../jabber.schema ${PREFIX}/etc/openldap/schema/jabber.schema.default
|
|
|
|
.include <bsd.port.post.mk>
|