diff options
author | clement <clement@FreeBSD.org> | 2005-09-08 04:18:27 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2005-09-08 04:18:27 +0800 |
commit | 59224be8e38daa6e64adcf7aaa479e7f3d3794c1 (patch) | |
tree | b6a5711c8d4ba0f1c69f0e4bde40ff2686e65230 | |
parent | 529b5123a8b74c3f9a1d46b4d33cfcebe649329f (diff) | |
download | freebsd-ports-gnome-59224be8e38daa6e64adcf7aaa479e7f3d3794c1.tar.gz freebsd-ports-gnome-59224be8e38daa6e64adcf7aaa479e7f3d3794c1.tar.zst freebsd-ports-gnome-59224be8e38daa6e64adcf7aaa479e7f3d3794c1.zip |
- Add mod_curb 1.1
mod_curb is an "volume" limiter apache module. It works on a per-server
basis. It can't be used with virtualhosts.
WWW: http://www.steve.org.uk/Software/mod_curb/
-rw-r--r-- | CVSROOT/modules | 1 | ||||
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/mod_curb/Makefile | 31 | ||||
-rw-r--r-- | www/mod_curb/distinfo | 2 | ||||
-rw-r--r-- | www/mod_curb/pkg-descr | 4 |
5 files changed, 39 insertions, 0 deletions
diff --git a/CVSROOT/modules b/CVSROOT/modules index 24d355fd1767..45479dba7835 100644 --- a/CVSROOT/modules +++ b/CVSROOT/modules @@ -6201,6 +6201,7 @@ mod_blosxom ports/www/mod_blosxom mod_blowchunks ports/www/mod_blowchunks mod_bunzip2 ports/www/mod_bunzip2 mod_cband ports/www/mod_cband +mod_curb ports/www/mod_cburb mod_cfg_ldap ports/www/mod_cfg_ldap mod_cgi_debug ports/www/mod_cgi_debug mod_chroot ports/www/mod_chroot diff --git a/www/Makefile b/www/Makefile index b781d5914891..566a680def9e 100644 --- a/www/Makefile +++ b/www/Makefile @@ -273,6 +273,7 @@ SUBDIR += mod_blowchunks SUBDIR += mod_bunzip2 SUBDIR += mod_cband + SUBDIR += mod_curb SUBDIR += mod_cfg_ldap SUBDIR += mod_cgi_debug SUBDIR += mod_chroot diff --git a/www/mod_curb/Makefile b/www/mod_curb/Makefile new file mode 100644 index 000000000000..3dd83b19c7ff --- /dev/null +++ b/www/mod_curb/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: mod_curb +# Date created: Sep 7 2005 +# Whom: Clement Laforet <clement@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= mod_curb +PORTVERSION= 1.1 +CATEGORIES= www +MASTER_SITES= http://www.steve.org.uk/Software/mod_curb/ +DISTNAME= ${PORTNAME:C/_/-/}-${PORTVERSION} +DIST_SUBDIR= apache + +MAINTAINER= apache@FreeBSD.org +COMMENT= A per-server bandwidth limiter module for Apache 1.3 + +WANT_APACHE= 13 + +AP_FAST_BUILD= YES +AP_GENPLIST= YES +PORTDOCS= README + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/www/apache20/Makefile.modules.3rd" + +post-install: + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + +.include <bsd.port.post.mk> diff --git a/www/mod_curb/distinfo b/www/mod_curb/distinfo new file mode 100644 index 000000000000..fc1f2b3d0549 --- /dev/null +++ b/www/mod_curb/distinfo @@ -0,0 +1,2 @@ +MD5 (apache/mod-curb-1.1.tar.gz) = 89db4cebe55f7301fc8404e409203315 +SIZE (apache/mod-curb-1.1.tar.gz) = 5104 diff --git a/www/mod_curb/pkg-descr b/www/mod_curb/pkg-descr new file mode 100644 index 000000000000..51b84b338eae --- /dev/null +++ b/www/mod_curb/pkg-descr @@ -0,0 +1,4 @@ +mod_curb is an "volume" limiter apache module. It works on a per-server +basis. It can't be used with virtualhosts. + +WWW: http://www.steve.org.uk/Software/mod_curb/ |