# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: inherit eutils DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" HOMEPAGE="http://clucene.sourceforge.net/" MY_P=${PN}-core-${PV} S=${WORKDIR}/${MY_P} SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.bz2" LICENSE="Apache-2.0 LGPL-2.1" SLOT="1" KEYWORDS="~amd64 ~ppc ~x86" IUSE="static threads strigi" DEPEND="virtual/libc" src_unpack() { unpack ${A} cd ${S} use strigi && epatch ${FILESDIR}/strigi-0.3.8.patch } src_compile() { econf $(use_enable static) \ $(use_enable threads multithreading) || die emake || die } src_install() { make DESTDIR=${D} install || die }