diff options
author | clement <clement@FreeBSD.org> | 2005-09-11 14:15:18 +0000 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2005-09-11 14:15:18 +0000 |
commit | d4ad8ae5c1347451499a07281c19a7842c1131fc (patch) | |
tree | d7a3a761cbcbe65b173bbf3dfaa655b9390e6645 /www/mod_bw/Makefile | |
parent | a1ae0f80d26fd96fc238b66237006aa61f355ee4 (diff) | |
download | FreeBSD-ports-d4ad8ae5c1347451499a07281c19a7842c1131fc.zip FreeBSD-ports-d4ad8ae5c1347451499a07281c19a7842c1131fc.tar.gz |
- 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/
Diffstat (limited to 'www/mod_bw/Makefile')
-rw-r--r-- | www/mod_bw/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/www/mod_bw/Makefile b/www/mod_bw/Makefile new file mode 100644 index 0000000..228593b --- /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> |