- update to version 2.0.8
- add stage support - add LICENSE Changes: * VERSION: 2.0.8 * mod_vhost_ldap.c: Don't copy server struct if we have per request document root * VERSION: 2.0.7 * mod_vhost_ldap.c: Revert escaping wildcard character as it was already done before by ldap_bv2escaped_filter_value * VERSION: 2.0.6 * mod_vhost_ldap.c: Properly escape wildcard string to search for literal *.hostname * mod_vhost_ldap.c, vhost_ldap.conf: Add new boolean option VhostLDAPWildcard to disable wildcard search completely * mod_vhost_ldap.c: Fix cgi-bin processing (Courtesy of Anders Kaseorg) * VERSION: 2.0.5 * mod_vhost_ldap.c: Make a private copy of server config to each request to be thread safe. (Courtesy Anders Kaseorg) * VERSION: 2.0.3 * mod_vhost_ldap.c: Workaround concurrency issues with ap_document_root by adding mutex before it is set and release before handler is run. * VERSION: 2.0.1 * mod_vhost_ldap.c: Remove cleanup routine, it was causing segfaults. * VERSION: 2.0.0 release * mod_vhost_ldap.c: Sleep for (fibonacci numbers) seconds after LDAP failure * mod_vhost_ldap.c: Add a log WARNING when LDAP is unreachable * mod_vhost_ldap.c: Don't set r->filename, return DECLINE on success, only mangle documentroot and others, and let other apache modules handle real filenames * mod_vhost_ldap.c: Create and use function set_document_root inspired by apache2.2 * mod_vhost_ldap.c: Return correct error codes on failures and not DECLINED * mod_vhost_ldap.c: Put translate_name hook at FIRST place * VERSION: 1.2.0 release * mod_vhost_ldap.c: release apache-2.2 version as 1.2.0 * VERSION: 1.0.1 release * mod_vhost_ldap.c: add support for apache-2.2.x
This commit is contained in:
parent
3b5c638e1a
commit
24f3713903
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=347567
@ -2,18 +2,18 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mod_vhost_ldap
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 3
|
||||
PORTVERSION= 2.0.8
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://alioth.debian.org/frs/download.php/1422/
|
||||
DISTNAME= ${PORTNAME:S/_/-/g}-${PORTVERSION}
|
||||
MASTER_SITES= ${MASTER_SITE_DEBIAN}
|
||||
MASTER_SITE_SUBDIR=pool/main/m/mod-vhost-ldap
|
||||
DISTNAME= ${PORTNAME:S/_/-/g}_${PORTVERSION}.orig
|
||||
DIST_SUBDIR= apache2
|
||||
|
||||
MAINTAINER= apache@FreeBSD.org
|
||||
COMMENT= Virtual Hosting from ldap built on top of mod_ldap
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_OPENLDAP= yes
|
||||
|
||||
USE_APACHE= 22
|
||||
@ -24,15 +24,14 @@ AP_EXTRAS+= -DMOD_VHOST_LDAP_VERSION=\\\"mod_vhost_ldap/${PORTVERSION}\\\"
|
||||
|
||||
PORTDOCS= mod_vhost_ldap.schema vhost_ldap.conf COPYING
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME:S/_/-/g}-${PORTVERSION}.0
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME:S/_/-/g}-${PORTVERSION}
|
||||
|
||||
.if defined(PACKAGE_BUILDING)
|
||||
IGNORE= Requires support of LDAP in apache 2.x port
|
||||
.endif
|
||||
|
||||
NO_STAGE= yes
|
||||
post-install:
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (apache2/mod-vhost-ldap-1.0.tar.bz2) = e14713d736e79ca7760b8ca8bd32fd01e97ef0f14396bdea9373d7bfd8dd1f87
|
||||
SIZE (apache2/mod-vhost-ldap-1.0.tar.bz2) = 7862
|
||||
SHA256 (apache2/mod-vhost-ldap_2.0.8.orig.tar.gz) = 031a48c48e47e3687bf185b3817ae22c05c569bc82bc8dd091803cad25d1fc06
|
||||
SIZE (apache2/mod-vhost-ldap_2.0.8.orig.tar.gz) = 10395
|
||||
|
Loading…
Reference in New Issue
Block a user