diff options
author | pav <pav@FreeBSD.org> | 2006-05-07 20:20:16 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-05-07 20:20:16 +0800 |
commit | 732546e9c934538135e261e493b747fadb45faac (patch) | |
tree | 5fb943c0644d7c4675b4b24d4e749be7a632ebe2 /www | |
parent | e1d9d9129d247d667df4f9179583d0e6c6b27d8f (diff) | |
download | freebsd-ports-gnome-732546e9c934538135e261e493b747fadb45faac.tar.gz freebsd-ports-gnome-732546e9c934538135e261e493b747fadb45faac.tar.zst freebsd-ports-gnome-732546e9c934538135e261e493b747fadb45faac.zip |
mod_domaintree is a hostname to filesystem mapper for Apache2. It
maps host names like www.example.com to a filesystem tree like
$prefix/com/example/www/$suffix. It can optionally strip the www
prefix of host names.
WWW: http://dev.iworks.at/mod_domaintree/
PR: ports/96839
Submitted by: Daniel Gerzo <danger@rulez.sk>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/mod_domaintree/Makefile | 29 | ||||
-rw-r--r-- | www/mod_domaintree/distinfo | 3 | ||||
-rw-r--r-- | www/mod_domaintree/pkg-descr | 6 |
4 files changed, 39 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 87a27de7dcf7..e11bff107a69 100644 --- a/www/Makefile +++ b/www/Makefile @@ -305,6 +305,7 @@ SUBDIR += mod_cvs SUBDIR += mod_cvs2 SUBDIR += mod_dav + SUBDIR += mod_domaintree SUBDIR += mod_dosevasive20 SUBDIR += mod_dtcl SUBDIR += mod_encoding diff --git a/www/mod_domaintree/Makefile b/www/mod_domaintree/Makefile new file mode 100644 index 000000000000..8a0761f12e2e --- /dev/null +++ b/www/mod_domaintree/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: mod_domaintree +# Date created: May 5th 2006 +# Whom: Daniel Gerzo <danger@rulez.sk> +# +# $FreeBSD$ +# + +PORTNAME= mod_domaintree +PORTVERSION= 1.4 +CATEGORIES= www +MASTER_SITES= http://dev.iworks.at/mod_domaintree/ +DISTNAME= ${PORTNAME}-${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= danger@rulez.sk +COMMENT= Hostname to filesystem mapper for Apache 2 + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_APACHE= 2.0+ +AP_FAST_BUILD= YES +AP_GENPLIST= YES + +PORTDOCS= LICENSE.txt ChangeLog + +post-install: + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + +.include <bsd.port.mk> diff --git a/www/mod_domaintree/distinfo b/www/mod_domaintree/distinfo new file mode 100644 index 000000000000..2bf15448c769 --- /dev/null +++ b/www/mod_domaintree/distinfo @@ -0,0 +1,3 @@ +MD5 (mod_domaintree-1.4.tgz) = 42bbd563b335e2060859b2a8e64abbe5 +SHA256 (mod_domaintree-1.4.tgz) = a2cf3f05eb0594236cfddabd29550a929ebc6b16202e5b196420f2c229ac231b +SIZE (mod_domaintree-1.4.tgz) = 39549 diff --git a/www/mod_domaintree/pkg-descr b/www/mod_domaintree/pkg-descr new file mode 100644 index 000000000000..64c7746cfdc6 --- /dev/null +++ b/www/mod_domaintree/pkg-descr @@ -0,0 +1,6 @@ +mod_domaintree is a hostname to filesystem mapper for Apache2. It +maps host names like www.example.com to a filesystem tree like +$prefix/com/example/www/$suffix. It can optionally strip the www +prefix of host names. + +WWW: http://dev.iworks.at/mod_domaintree/ |