diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-09-11 14:15:18 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-09-11 14:15:18 +0000 |
commit | 09a0bfa1e0a52f857873d89a7eec3168c1661710 (patch) | |
tree | 0b74dde0642620e12cd1620bcfc8c6631aa4218c /www/mod_bw | |
parent | 91b8bfc1aac9a39624458011b1a5ca8ab32475e1 (diff) | |
download | ports-09a0bfa1e0a52f857873d89a7eec3168c1661710.tar.gz ports-09a0bfa1e0a52f857873d89a7eec3168c1661710.zip |
- Add mod_bw (officially known as bw_mod) v0.6
Bandwidth and Connection control per Virtual Host or Directory.
It can:
* Restrict the number of simultaneous connections per vhost/dir
* Limit the bandwidth for files on vhost/dir
WWW: http://www.ivn.cl/apache/
Notes
Notes:
svn path=/head/; revision=142451
Diffstat (limited to 'www/mod_bw')
-rw-r--r-- | www/mod_bw/Makefile | 33 | ||||
-rw-r--r-- | www/mod_bw/distinfo | 2 | ||||
-rw-r--r-- | www/mod_bw/pkg-descr | 6 |
3 files changed, 41 insertions, 0 deletions
diff --git a/www/mod_bw/Makefile b/www/mod_bw/Makefile new file mode 100644 index 000000000000..228593b69e51 --- /dev/null +++ b/www/mod_bw/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: mod_bw +# Date created: Sep 11 2005 +# Whom: Clement Laforet <clement@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= mod_bw +PORTVERSION= 0.6 +CATEGORIES= www +MASTER_SITES= http://www.ivn.cl/apache/ +DISTNAME= bw_mod-${PORTVERSION} +EXTRACT_SUFX= .tgz +DIST_SUBDIR= apache2 + +MAINTAINER= apache@FreeBSD.org +COMMENT= Bandwidth and Connection control per Virtual Host or Directory + +WANT_APACHE= 2 +AP_FAST_BUILD= YES +AP_GENPLIST= YES + +SRC_FILE= bw_mod-0.6.c +PORTDOCS= APACHE2-LICENSE LICENSE bw_mod-0.6.txt + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/www/apache20/Makefile.modules.3rd" +post-install: + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC} && \ + ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + +.include <bsd.port.post.mk> diff --git a/www/mod_bw/distinfo b/www/mod_bw/distinfo new file mode 100644 index 000000000000..eb34626134a0 --- /dev/null +++ b/www/mod_bw/distinfo @@ -0,0 +1,2 @@ +MD5 (apache2/bw_mod-0.6.tgz) = 0c92fa6344f487321291a592dbb49856 +SIZE (apache2/bw_mod-0.6.tgz) = 50298 diff --git a/www/mod_bw/pkg-descr b/www/mod_bw/pkg-descr new file mode 100644 index 000000000000..8c597384a814 --- /dev/null +++ b/www/mod_bw/pkg-descr @@ -0,0 +1,6 @@ +Bandwidth and Connection control per Virtual Host or Directory. +It can: + * Restrict the number of simultaneous connections per vhost/dir + * Limit the bandwidth for files on vhost/dir + +WWW: http://www.ivn.cl/apache/ |