diff options
author | ohauer <ohauer@FreeBSD.org> | 2011-06-20 05:01:17 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2011-06-20 05:01:17 +0800 |
commit | ebca194328fa1cac9b5d73b357f1546be36e8a0b (patch) | |
tree | 983d361ae7dfde67628b37e04b4dd405a625f438 /www | |
parent | 3444e744bf4c746a9e4f980f05d00eb5788d8c2d (diff) | |
download | freebsd-ports-gnome-ebca194328fa1cac9b5d73b357f1546be36e8a0b.tar.gz freebsd-ports-gnome-ebca194328fa1cac9b5d73b357f1546be36e8a0b.tar.zst freebsd-ports-gnome-ebca194328fa1cac9b5d73b357f1546be36e8a0b.zip |
- update to mod_authn_sasl-1.2
- fix linker arguments ( reference to libsasl2 was missing ) [1]
- extend portdocs
[1] Noted on apache@FreeBSD list by Felix Janssen
Changelog:
* m4/apache.m4: fix httpd version regex to match vendor extended
version strings
* Makefile.am: add Changelog to tarball
* doc/index.html: let configure update the module version
* mod_authn_sasl.c: fix segfault in cleanup code, closes ID: 3015155
* mod_authn_sasl.c: make AuthSaslRealm a multi-value directive,
if the username contains a realm it must now match one of these
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_authn_sasl/Makefile | 17 | ||||
-rw-r--r-- | www/mod_authn_sasl/distinfo | 4 |
2 files changed, 14 insertions, 7 deletions
diff --git a/www/mod_authn_sasl/Makefile b/www/mod_authn_sasl/Makefile index dfad17d6b7e0..6a4e2657d393 100644 --- a/www/mod_authn_sasl/Makefile +++ b/www/mod_authn_sasl/Makefile @@ -6,25 +6,30 @@ # PORTNAME= mod_authn_sasl -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= www -MASTER_SITES= SF/mod-authn-sasl/mod-authn-sasl/${PORTVERSION} +MASTER_SITES= SF +MASTER_SITE_SUBDIR=mod-authn-sasl/mod-authn-sasl/${PORTVERSION} MAINTAINER= apache@FreeBSD.org COMMENT= Allows user authentication based on libsasl2 mechanisms on apache 2.2 LIB_DEPENDS= sasl2.2:${PORTSDIR}/security/cyrus-sasl2 -MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes OPTIONS= SASLAUTHD "Register dependency for cyrus-sasl2-saslauthd" off +LICENSE= ASL + USE_BZIP2= yes USE_APACHE= 22 AP_FAST_BUILD= YES AP_GENPLIST= YES +AP_LIB= ${LOCALBASE}/lib -lsasl2 -PORTDOCS= AUTHORS LICENSE +PORTDOCS1= AUTHORS LICENSE +PORTDOCS= * .include <bsd.port.options.mk> @@ -35,9 +40,11 @@ RUN_DEPENDS+= saslauthd:${PORTSDIR}/security/cyrus-sasl2-saslauthd post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/ -. for f in ${PORTDOCS} + @${FIND} ${WRKSRC}/doc \( -name "*.in" -o -name "*.am" \) -delete +. for f in ${PORTDOCS1} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ . endfor + @(cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/www/mod_authn_sasl/distinfo b/www/mod_authn_sasl/distinfo index 9b4c54f9fe91..25153e1c80ca 100644 --- a/www/mod_authn_sasl/distinfo +++ b/www/mod_authn_sasl/distinfo @@ -1,2 +1,2 @@ -SHA256 (mod_authn_sasl-1.1.tar.bz2) = d663cf929160d5cea0288f71739c63dc141770cd7ba30996ad8ce357818a04a8 -SIZE (mod_authn_sasl-1.1.tar.bz2) = 249792 +SHA256 (mod_authn_sasl-1.2.tar.bz2) = 4329e1f429560041cebe67b74a588330f382759bcbb91d3e4145b18e59734b57 +SIZE (mod_authn_sasl-1.2.tar.bz2) = 274790 |