summaryrefslogtreecommitdiff
blob: 3de6682ddba0cae4189368eb2384dbf611d40856 (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
26
27
28
29
30
31
32
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2

inherit common-lisp-2

DESCRIPTION="A fast, useful text search engine library written entirely in pure Common Lisp."
HOMEPAGE="http://code.google.com/p/montezuma/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""

RDEPEND="dev-lisp/cl-ppcre
		 dev-lisp/cl-fad
		 dev-lisp/babel"

CLSYSTEMS="${PN} contrib/${PN}-indexfiles/${PN}-indexfiles"

src_prepare() {
	rm -rf "${S}"/contrib/montezuma-indexfiles/{COPYING,_darcs}
}

src_install() {
	common-lisp-install ${PN}.asd src/ contrib/ tests/
	common-lisp-symlink-asdf
	dodoc BUGS.txt README.txt TUTORIAL.txt
}