diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-10-07 22:09:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-10-07 22:09:32 +0000 |
commit | 04c70b4d4363561a6aadfebc6b600c0b2112b5d4 (patch) | |
tree | cdd186692b37e203cd3fdeb78eb1218a6cd58bed /www/mod_jail/Makefile | |
parent | 384e66ad674bf1b56658e9a8eeda85056fa6b843 (diff) | |
download | ports-04c70b4d4363561a6aadfebc6b600c0b2112b5d4.tar.gz ports-04c70b4d4363561a6aadfebc6b600c0b2112b5d4.zip |
Notes
Diffstat (limited to 'www/mod_jail/Makefile')
-rw-r--r-- | www/mod_jail/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www/mod_jail/Makefile b/www/mod_jail/Makefile new file mode 100644 index 000000000000..4e413679abbd --- /dev/null +++ b/www/mod_jail/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: mod_jail +# Date created: Oct 7 2005 +# Whom: Frank Laszlo <laszlof@vonostingroup.com> +# +# $FreeBSD$ +# + +PORTNAME= mod_jail +PORTVERSION= 0.1 +CATEGORIES= www +MASTER_SITES= http://igorpopov.newmail.ru/ + +MAINTAINER= laszlof@vonostingroup.com +COMMENT= Apache 1.3.x module to enable an easy alternative to mod_chroot + +WRKSRC= ${WRKDIR}/mod_jail +USE_APACHE= 1.3 +AP_FAST_BUILD= YES +AP_GENPLIST= YES + +PORTDOCS= changelog.html documentation.html download.html \ + index.html + +.include <bsd.port.pre.mk> + +post-extract: + @${REINPLACE_CMD} -e "s|= apxs|= ${APXS}|" ${WRKSRC}/Makefile + +.if defined(WITH_APACHE2) +IGNORE= only works on Apache 1.3.x +.endif + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC}/doc && \ + ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.post.mk> |