blob: d14b067f214d5cb40ccead420cd8ab60665be4a0 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
ESVN_REPO_URI="http://tesseract-polish.googlecode.com/svn/trunk/tessdata/"
inherit subversion
DESCRIPTION="Polish data files for tesseract OCR"
HOMEPAGE="http://code.google.com/p/tesseract-polish/"
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
IUSE=""
src_install() {
insinto /usr/share/tessdata
doins pol.* || die "doins failed"
dodoc ATTRIBUTIONS NOTICE || die "dodoc failed"
}
|