blob: fd32c22d553b138f750a499aff030dfb5ca8dd99 (
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
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/hyperestraier/hyperestraier-0.9.1.ebuild,v 1.1 2005/10/06 14:01:46 hattya Exp $
IUSE="debug"
DESCRIPTION="a full-text search system for communities"
HOMEPAGE="http://hyperestraier.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
KEYWORDS="~ppc ~x86"
SLOT="0"
DEPEND=">=dev-db/qdbm-1.8.33
sys-libs/zlib"
src_compile() {
econf `use_enable debug` || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc COPYING README* ChangeLog THANKS
dohtml -r doc/*
rm -f ${D}/usr/share/${PN}/{COPYING,ChangeLog,THANKS}
rm -rf ${D}/usr/share/${PN}/doc
}
|