freebsd-ports/www/web2ldap/Makefile
Boris Samorodov 400b691c59 Update to 1.0.0 release.
Michael Stroder (author):
  Well, 10 years after the first public release (formerly called
  ldap-client-cgi) it was time for 1.0. ;-)

Changes:
  http://www.web2ldap.de/changes-1.0.html
2008-09-03 13:36:27 +00:00

51 lines
1.5 KiB
Makefile

# New ports collection makefile for: web2ldap
# Date created: 21 July 2000
# Whom: Oddbjorn Steffensen <oddbjorn@tricknology.org>
#
# $FreeBSD$
#
PORTNAME= web2ldap
PORTVERSION= 1.0.0
CATEGORIES= www
MASTER_SITES= http://www.web2ldap.de/download/ \
ftp://ftp.ipt.ru/pub/download/
MAINTAINER= bsam@FreeBSD.org
COMMENT= Python-based WWW gateway to LDAP servers
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap2>=2.3.1:${PORTSDIR}/net/py-ldap2 \
${PYTHON_SITELIBDIR}/pyweblib/__init__.py:${PORTSDIR}/www/pyweblib \
${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support
USE_PYTHON= yes
SUB_FILES= pkg-message
post-patch:
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
${WRKSRC}/etc/web2ldap/web2ldapcnf/standalone.py
@${FIND} ${WRKSRC} -name '*.orig' -o -name '*.bak' | ${XARGS} ${RM}
do-build:
@(cd ${WRKSRC} && ${PYTHON_CMD} ./sbin/compile.py)
do-install:
@${ECHO_CMD} "==> Installing program files..."
@${MKDIR} ${DATADIR}
@(cd ${WRKSRC}; \
${FIND} * -type d | ${GREP} -vE "^htdocs" | ${CPIO} -p ${DATADIR}; \
${FIND} * -type f | ${GREP} -vE "^htdocs" | ${CPIO} -pd ${DATADIR})
post-install:
.if !defined(NOPORTDOCS)
@${ECHO_CMD} "==> Installing document files..."
@${MKDIR} ${DOCSDIR}
@(cd ${WRKSRC}; \
${FIND} * -type d | ${GREP} "^htdocs" | ${CPIO} -p ${DOCSDIR}; \
${FIND} * -type f | ${GREP} "^htdocs" | ${CPIO} -pd ${DOCSDIR})
.endif
@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>