blob: ffa786e385e9dfb5522ac029423e18cbacc15d8e (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/clara/clara-20031214.ebuild,v 1.21 2009/03/22 07:56:01 spock Exp $
inherit eutils toolchain-funcs
DESCRIPTION="An OCR (Optical Character Recognition) program"
SRC_URI="http://www.geocities.com/claraocr/clara-20031214.tar.gz"
HOMEPAGE="http://www.geocities.com/claraocr/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -re "s/(C|LD)FLAGS =/\1FLAGS +=/" Makefile
epatch "${FILESDIR}/clara_open_mode.patch"
}
src_compile() {
emake CC="$(tc-getCC)" || die
emake doc || die
}
src_install() {
dobin clara selthresh
doman doc/clara*.1 selthresh.1
dodoc ANNOUNCE CHANGELOG doc/FAQ
insinto /usr/share/doc/${P}
doins imre.pbm
dohtml doc/*.html
}
pkg_postinst() {
elog
elog "Please note that Clara OCR has to be trained to recognize text,"
elog "without a training session it simply won't work. Have a look at"
elog "the docs in /usr/share/doc/${P}/html/ to get more "
elog "info about the training procedure."
elog
}
|