diff options
Diffstat (limited to 'www/mod_auth_external2')
-rw-r--r-- | www/mod_auth_external2/Makefile | 34 | ||||
-rw-r--r-- | www/mod_auth_external2/distinfo | 2 | ||||
-rw-r--r-- | www/mod_auth_external2/files/patch-mod_auth_external.c | 16 | ||||
-rw-r--r-- | www/mod_auth_external2/pkg-descr | 9 |
4 files changed, 0 insertions, 61 deletions
diff --git a/www/mod_auth_external2/Makefile b/www/mod_auth_external2/Makefile deleted file mode 100644 index 3eb9add84b04..000000000000 --- a/www/mod_auth_external2/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Created by: Clement Laforet <sheepkiller@cultdeadsheep.org> -# $FreeBSD$ - -PORTNAME= mod_auth_external -PORTVERSION= 2.2.11 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= GOGLE_CODE -PKGNAMESUFFIX= 2 -DIST_SUBDIR= apache2 - -MAINTAINER= apache@FreeBSD.org -COMMENT= Allows users authentication based on external mechanisms - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - -LICENSE= APACHE20 - -USES= apache:2.2+ -AP_FAST_BUILD= yes -AP_GENPLIST= yes -SHORTMODNAME= auth_external - -PORTDOCS= AUTHENTICATORS INSTALL README - -OPTIONS_DEFINE= DOCS - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - -.include <bsd.port.mk> diff --git a/www/mod_auth_external2/distinfo b/www/mod_auth_external2/distinfo deleted file mode 100644 index 555570db4c34..000000000000 --- a/www/mod_auth_external2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (apache2/mod_auth_external-2.2.11.tar.gz) = 8068130444e9a93193062494c43e6a2d2d8e03e8ebdc9d378ab9c17c12a9e0c5 -SIZE (apache2/mod_auth_external-2.2.11.tar.gz) = 52542 diff --git a/www/mod_auth_external2/files/patch-mod_auth_external.c b/www/mod_auth_external2/files/patch-mod_auth_external.c deleted file mode 100644 index 21de308e2c57..000000000000 --- a/www/mod_auth_external2/files/patch-mod_auth_external.c +++ /dev/null @@ -1,16 +0,0 @@ ---- mod_auth_external.c.orig 2006-02-15 22:44:53 UTC -+++ mod_auth_external.c -@@ -500,8 +500,13 @@ - if (remote_host != NULL) - child_env[i++]= apr_pstrcat(r->pool, ENV_HOST"=", remote_host, NULL); - -+#if MODULE_MAGIC_NUMBER_MAJOR >= 20111130 -+ if (c->client_ip) -+ child_env[i++]= apr_pstrcat(r->pool, ENV_IP"=", c->client_ip, NULL); -+#else - if (c->remote_ip) - child_env[i++]= apr_pstrcat(r->pool, ENV_IP"=", c->remote_ip, NULL); -+#endif - - if (r->uri) - child_env[i++]= apr_pstrcat(r->pool, ENV_URI"=", r->uri, NULL); diff --git a/www/mod_auth_external2/pkg-descr b/www/mod_auth_external2/pkg-descr deleted file mode 100644 index 0d095b0e65c3..000000000000 --- a/www/mod_auth_external2/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Mod_Auth_External is an Apache module used for authentication. The Apache HTTP -Daemon can be configured to require users to supply logins and passwords -before accessing pages in some directories. Authentication is the process of -checking if the password given is correct for a user. Apache has standard -modules for authenticating out of several different kinds of databases. -Mod_Auth_External is a flexible tool for creating authentication systems based -on other databases. - -WWW: http://www.unixpapa.com/mod_auth_external.html |