blob: 6f2f4071e42a97b2116539e5d7329578293c339a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Hyphenation patterns for FOP"
HOMEPAGE="http://offo.sourceforge.net/"
SRC_URI="mirror://sourceforge/offo/${P}.zip"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
dev-java/fop
"
src_install() {
dohtml -r .
insinto /usr/share/fop/lib
doins fop-hyph.jar
}
|