blob: 07b6429edc643cb55b01c1545a65aaeb8dbdb2c3 (
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.3 2005/05/24 18:48:34 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="~amd64 ~ppc ~sparc x86"
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
}
|