diff options
Diffstat (limited to 'www/mod_lisp2')
-rw-r--r-- | www/mod_lisp2/Makefile | 21 | ||||
-rw-r--r-- | www/mod_lisp2/distinfo | 2 | ||||
-rw-r--r-- | www/mod_lisp2/files/patch-mod_lisp2.c | 34 | ||||
-rw-r--r-- | www/mod_lisp2/pkg-descr | 4 |
4 files changed, 0 insertions, 61 deletions
diff --git a/www/mod_lisp2/Makefile b/www/mod_lisp2/Makefile deleted file mode 100644 index b58bc9a86d5e..000000000000 --- a/www/mod_lisp2/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Created by: vl -# $FreeBSD$ - -PORTNAME= mod_lisp2 -PORTVERSION= 1.3.1 -PORTREVISION= 2 -CATEGORIES= www -MASTER_SITES= http://freebsd.minira.nl/ - -MAINTAINER= viktor.leis@googlemail.com -COMMENT= Apache2 module for use with Common Lisp - -DEPRECATED= distfile unfetchable -EXPIRATION_DATE=2014-01-01 - -USE_APACHE= 22 -AP_FAST_BUILD= yes -AP_GENPLIST= yes - -NO_STAGE= yes -.include <bsd.port.mk> diff --git a/www/mod_lisp2/distinfo b/www/mod_lisp2/distinfo deleted file mode 100644 index 0908762f52f5..000000000000 --- a/www/mod_lisp2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (mod_lisp2-1.3.1.tar.gz) = 5af4bb8fd46b5f62266e46fcf037015ddc9d24ed4d212cc08fd383110a4d6c20 -SIZE (mod_lisp2-1.3.1.tar.gz) = 7972 diff --git a/www/mod_lisp2/files/patch-mod_lisp2.c b/www/mod_lisp2/files/patch-mod_lisp2.c deleted file mode 100644 index 7a1c2ffa2eea..000000000000 --- a/www/mod_lisp2/files/patch-mod_lisp2.c +++ /dev/null @@ -1,34 +0,0 @@ ---- mod_lisp2.c.orig 2007-07-17 09:11:05.000000000 -0400 -+++ mod_lisp2.c 2009-02-13 10:30:48.000000000 -0500 -@@ -153,11 +153,11 @@ - #include <stdlib.h> - #include <string.h> - --module AP_MODULE_DECLARE_DATA lisp_module; -+module AP_MODULE_DECLARE_DATA lisp2_module; - /* Work out the version of the apache portable runtime (APR) we're - * compiling against... with version 1.2.2 some of the interfaces - * changed a bit. */ --#if (APR_MAJOR_VERSION==1 && APR_MINOR_VERSION==2 && APR_PATCH_VERSION>=2) -+#if (APR_MAJOR_VERSION==1 && ((APR_MINOR_VERSION==2 && APR_PATCH_VERSION>=2) || APR_MINOR_VERSION>=3)) - #define HAVE_APR_1_2_2 1 - #endif - -@@ -576,7 +576,7 @@ - lisp_handler (request_rec * r) - { - lisp_cfg_t * cfg -- = (ap_get_module_config ((r->per_dir_config), (&lisp_module))); -+ = (ap_get_module_config ((r->per_dir_config), (&lisp2_module))); - int content_length = (-1); - int keep_socket_p = 0; - apr_socket_t * socket; -@@ -942,7 +942,7 @@ - ap_hook_handler (lisp_handler, 0, 0, APR_HOOK_MIDDLE); - } - --module AP_MODULE_DECLARE_DATA lisp_module = -+module AP_MODULE_DECLARE_DATA lisp2_module = - { - STANDARD20_MODULE_STUFF, - lisp_create_dir_config, /* create per-directory config structures */ diff --git a/www/mod_lisp2/pkg-descr b/www/mod_lisp2/pkg-descr deleted file mode 100644 index 13275fe8e440..000000000000 --- a/www/mod_lisp2/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -mod_lisp is an Apache 2 module for writing web applications in Common -Lisp. It is distributed with a BSD-style license. - -WWW: http://www.fractalconcept.com/asp/html/mod_lisp.html |