summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-06-05 19:58:05 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-06-05 19:58:05 +0000
commite074bb8a565b5746046ad281dcd293fd39b84d7a (patch)
treec300559cf4cc2056961327898a55c4af6601ad32 /www-apache/mod_lisp2/files
parentCleanup. (diff)
downloadgentoo-2-e074bb8a565b5746046ad281dcd293fd39b84d7a.tar.gz
gentoo-2-e074bb8a565b5746046ad281dcd293fd39b84d7a.tar.bz2
gentoo-2-e074bb8a565b5746046ad281dcd293fd39b84d7a.zip
Cleanup.
(Portage version: 2.1_rc4-r2) (Unsigned Manifest commit)
Diffstat (limited to 'www-apache/mod_lisp2/files')
-rw-r--r--www-apache/mod_lisp2/files/README.Gentoo5
-rw-r--r--www-apache/mod_lisp2/files/apache.conf24
2 files changed, 0 insertions, 29 deletions
diff --git a/www-apache/mod_lisp2/files/README.Gentoo b/www-apache/mod_lisp2/files/README.Gentoo
deleted file mode 100644
index 58d240af67f7..000000000000
--- a/www-apache/mod_lisp2/files/README.Gentoo
+++ /dev/null
@@ -1,5 +0,0 @@
-A basic Apache configuration example has been included in this port's
-documentation path.
-
-zul @ gentoo.org
-mkennedy @ gentoo.org
diff --git a/www-apache/mod_lisp2/files/apache.conf b/www-apache/mod_lisp2/files/apache.conf
deleted file mode 100644
index 5ec8f6e452f1..000000000000
--- a/www-apache/mod_lisp2/files/apache.conf
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# This is an example configuration to get you started.
-
-<IfDefine MODLISP>
- LoadModule lisp_module extramodules/mod_lisp.so
-</IfDefine>
-
-<IfModule mod_lisp.c>
- LispServer 127.0.0.1 3000 "server1"
- AddHandler lisp-handler .lsp
-</IfModule>
-
-# In the Common Lisp implementation, the initialization code
-# corresponding to the above would be:
-#
-# (require :modlisp)
-# (ml:modlisp-start :port 3000)
-#
-# Example requests:
-#
-# http://localhost/debug.lsp
-# http://localhost/fixed.lsp
-
-# Matthew Kennedy <mkennedy@gentoo.org>