summaryrefslogtreecommitdiff
blob: 724768efeec9d07427fd2ffa4d644b2fdc9e64e3 (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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sary/sary-1.0.5_pre20030426.ebuild,v 1.5 2004/05/22 18:49:56 usata Exp $

IUSE=""

DESCRIPTION="Sary: suffix array library and tools"
HOMEPAGE="http://sary.namazu.org/"
SRC_URI="http://taiyaki.org/tmp/sary/${PN}-cvs_${PV/*_pre/}.tar.gz"

LICENSE="LGPL-2.1"
KEYWORDS="x86 alpha ppc"
SLOT="0"
S="${WORKDIR}/${PN}"

DEPEND=">=dev-libs/glib-2"

src_compile() {

	./autogen.sh
	econf || die
	emake || die

}

src_install() {

	make DESTDIR=${D} \
		docsdir=/usr/share/doc/${PF}/html \
		install || die

	dodoc [A-Z][A-Z]* ChangeLog

}