diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-07-30 00:27:20 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-07-30 00:27:20 +0000 |
commit | 109de17137ec1fa08b4046a6387f9d049132fa5e (patch) | |
tree | bbb95992fbaac3eb338d5ade4b68f5626d44984c /www/mod_vhs/Makefile | |
parent | Remove pgp signature checking. (diff) |
[NEW PORT] www/mod_vhs: Allows mass virtual hosting using libhome system with Apache 2.0.x
mod_vhs is an Apache Web Server module allowing mass virtual
hosting without the need for file based configuration. The
virtual host paths are translated using libhome system to
get the corrects path at request time.
WWW: http://www.oav.net/projects/mod_vhs/
PR: ports/69616
Submitted by: Xavier Beaudouin <kiwi@oav.net>
Notes
Notes:
svn path=/head/; revision=115043
Diffstat (limited to 'www/mod_vhs/Makefile')
-rw-r--r-- | www/mod_vhs/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www/mod_vhs/Makefile b/www/mod_vhs/Makefile new file mode 100644 index 000000000000..327b22a8b0e1 --- /dev/null +++ b/www/mod_vhs/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: mod_vhs +# Date created: Sun Jul 25 2004 +# Whom: Xavier Beaudouin <kiwi@oav.net> +# +# $FreeBSD$ +# + +PORTNAME= mod_vhs +PORTVERSION= 1.0 +CATEGORIES= www +MASTER_SITES= http://www.oav.net/projects/mod_vhs/ +DIST_SUBDIR= apache + +MAINTAINER= kiwi@oav.net +COMMENT= Allows mass virtual hosting using libhome system with Apache 2.0.x + +LIB_DEPENDS+= home:${PORTSDIR}/misc/libhome + +WANT_APACHE= 2 +AP_FAST_BUILD= YES +AP_GENPLIST= YES +WRKSRC= ${WRKDIR}/${PORTNAME} + +AP_INC+= ${LOCALBASE}/include/home +AP_LIB+= ${LOCALBASE}/lib -lhome + +PORTDOCS= AUTHORS README TODO + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/www/apache2/Makefile.modules.3rd" + +post-install: +.if !defined (NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +. for f in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +. endfor +.endif + +.include <bsd.port.post.mk> |