blob: b84a7c6255ad8afc8018bb11e0dbf3774e484c90 (
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
35
36
|
# 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.3.13.ebuild,v 1.1 2005/06/26 12:17:10 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="~x86"
SLOT="0"
DEPEND=">=dev-db/qdbm-1.8.29
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
}
|