blob: 8918da0fc7f4b1c9d89c119aec00c83eae70636b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-modlisp/cl-modlisp-0.6.ebuild,v 1.2 2005/04/16 21:00:58 mkennedy Exp $
inherit common-lisp
DESCRIPTION="A Common Lisp interface to the Marc Battyani's mod_lisp apache module."
HOMEPAGE="http://cl-modlisp.b9.com/"
SRC_URI="http://files.b9.com/cl-modlisp/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
DEPEND="dev-lisp/cl-kmrcl"
RDEPEND="${DEPEND}
www-apache/mod_lisp"
CLPACKAGE=modlisp
src_install() {
common-lisp-install *.lisp *.asd
common-lisp-system-symlink
dodoc ChangeLog LICENSE
dohtml doc/readme.html
}
|