summaryrefslogtreecommitdiff
path: root/www/ap-throttle
diff options
context:
space:
mode:
Diffstat (limited to 'www/ap-throttle')
-rw-r--r--www/ap-throttle/DESCR3
-rw-r--r--www/ap-throttle/MESSAGE16
-rw-r--r--www/ap-throttle/Makefile27
-rw-r--r--www/ap-throttle/PLIST3
-rw-r--r--www/ap-throttle/distinfo6
-rw-r--r--www/ap-throttle/patches/patch-aa13
6 files changed, 0 insertions, 68 deletions
diff --git a/www/ap-throttle/DESCR b/www/ap-throttle/DESCR
deleted file mode 100644
index c159d90541a..00000000000
--- a/www/ap-throttle/DESCR
+++ /dev/null
@@ -1,3 +0,0 @@
-mod_throttle allows throttling of connections to the Apache web
-server. It uses System V shared memory and semaphores to implement the
-state information.
diff --git a/www/ap-throttle/MESSAGE b/www/ap-throttle/MESSAGE
deleted file mode 100644
index 39707f99a48..00000000000
--- a/www/ap-throttle/MESSAGE
+++ /dev/null
@@ -1,16 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.1.1.1 2003/02/16 11:19:03 grant Exp $
-
-In order to use this module in your Apache installation, you need to
-add the following to your httpd.conf file:
-
- LoadModule throttle_module lib/httpd/mod_throttle.so
-
- # throttle htdocs to 100k/sec
- <Directory ${PREFIX}/share/httpd/htdocs>
- <IfModule mod_throttle.c>
- ThrottlePolicy Speed 100k 1
- </IfModule>
- </Directory>
-
-===========================================================================
diff --git a/www/ap-throttle/Makefile b/www/ap-throttle/Makefile
deleted file mode 100644
index 224ef23ac13..00000000000
--- a/www/ap-throttle/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# $NetBSD: Makefile,v 1.17 2012/10/28 06:30:05 asau Exp $
-
-DISTNAME= mod_throttle312
-PKGNAME= ap13-throttle-3.1.2
-CATEGORIES= www
-MASTER_SITES= http://www.snert.com/Software/mod_throttle/
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= eric@cirr.com
-HOMEPAGE= ${MASTER_SITES}
-COMMENT= Apache module for limiting bandwidth usage
-
-CONFLICTS= ap-throttle-[0-9]*
-
-WRKSRC= ${WRKDIR}/${PKGNAME_NOREV:S/ap13-/mod_/}
-
-APACHE_MODULE_NAME= mod_throttle.so
-APACHE_MODULE_SRC= mod_throttle.c
-
-INSTALLATION_DIRS+= share/doc/mod_throttle
-
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/index.shtml \
- ${DESTDIR}${PREFIX}/share/doc/mod_throttle/index.html
-
-.include "../../www/apache/module.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/www/ap-throttle/PLIST b/www/ap-throttle/PLIST
deleted file mode 100644
index a55e2fbd069..00000000000
--- a/www/ap-throttle/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2003/06/02 13:26:20 abs Exp $
-lib/httpd/mod_throttle.so
-share/doc/mod_throttle/index.html
diff --git a/www/ap-throttle/distinfo b/www/ap-throttle/distinfo
deleted file mode 100644
index 3c0c804291d..00000000000
--- a/www/ap-throttle/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.3 2006/01/02 21:29:36 joerg Exp $
-
-SHA1 (mod_throttle312.tgz) = a813beb97d4a23f467e07bcc24d9464d2ee91ef5
-RMD160 (mod_throttle312.tgz) = 81a45042d96f01f423b934cf70930c7561e8eb51
-Size (mod_throttle312.tgz) = 41397 bytes
-SHA1 (patch-aa) = 183974becac517d2f95c1bdc073b07d0a9927baf
diff --git a/www/ap-throttle/patches/patch-aa b/www/ap-throttle/patches/patch-aa
deleted file mode 100644
index c8c22b1fe59..00000000000
--- a/www/ap-throttle/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2006/01/02 21:29:37 joerg Exp $
-
---- mod_throttle.c.orig Sun Dec 3 04:15:10 2000
-+++ mod_throttle.c
-@@ -719,7 +719,7 @@ critical_release(t_critical *mp)
- #include <sys/ipc.h>
- #include <sys/sem.h>
-
--#if (defined(__GNU_LIBRARY__) && (!defined(_SEM_SEMUN_UNDEFINED))) || defined(__FreeBSD__) || defined(__NetBSD__)
-+#if (defined(__GNU_LIBRARY__) && (!defined(_SEM_SEMUN_UNDEFINED))) || defined(__FreeBSD__) || defined(__DragonFly__)
- /* union semun is defined by including <sys/sem.h> */
- #else
- /* X/OPEN says we have to define it ourselves (twits). */