blob: 35e73ba56703ea9905ee619bfaf76e12cec64781 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/hyphen-2.4.ebuild,v 1.8 2010/02/16 22:29:51 fauli Exp $
EAPI=2
DESCRIPTION="hyphenation library to use converted TeX hyphenation patterns"
HOMEPAGE="http://sourceforge.net/projects/hunspell/"
SRC_URI="mirror://sourceforge/hunspell/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86"
IUSE=""
src_configure() {
econf \
--disable-dependency-tracking \
--disable-static
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
insinto /usr/share/doc/${PF}/pdf
doins doc/*.pdf
find "${D}"/usr -name '*.la' -delete
}
|