diff options
author | ohauer <ohauer@FreeBSD.org> | 2011-03-30 20:59:29 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2011-03-30 20:59:29 +0800 |
commit | af2fa0452113e94ba2470f5afa89d00fb2bc8387 (patch) | |
tree | a9e47ebee76716a1362475a6a4f1d48518a0d2c8 /www | |
parent | 43ec326b402002140ee99a9e2b45725243956c50 (diff) | |
download | freebsd-ports-gnome-af2fa0452113e94ba2470f5afa89d00fb2bc8387.tar.gz freebsd-ports-gnome-af2fa0452113e94ba2470f5afa89d00fb2bc8387.tar.zst freebsd-ports-gnome-af2fa0452113e94ba2470f5afa89d00fb2bc8387.zip |
- mark port broken if apache > 13 (maintainer timeout)
PR: ports/154760
Submitted by: ohauer
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_uid/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/www/mod_uid/Makefile b/www/mod_uid/Makefile index dfb74d224cbd..d2ff992365f5 100644 --- a/www/mod_uid/Makefile +++ b/www/mod_uid/Makefile @@ -19,15 +19,18 @@ USE_APACHE= 1.3+ PORTDOCS= README.html -.if !defined(APACHE_PORT) || ${APACHE_PORT} == "www/apache13" +AP_FAST_BUILD= yes +AP_GENPLIST= yes + +.include <bsd.port.pre.mk> + +.if !defined(APACHE_PORT) || ${APACHE_PORT} == "www/apache13" || ${APACHE_VERSION} == "13" MODULENAME= mod_uid .else +IGNORE= does not build with latest apache20/22 MODULENAME= mod_uid2 .endif -AP_FAST_BUILD= yes -AP_GENPLIST= yes - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @@ -36,4 +39,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |