You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/clara/clara-20031214-r1.ebuild

55 lines
1.2 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="An OCR (Optical Character Recognition) program"
SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="http://www.claraocr.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~sparc-solaris"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}"
# The test provided by clara doesn't seem to make any sense. It just
# calls the binary with an unsupported option, which results in an
# error.
RESTRICT="test"
src_prepare() {
sed -i -re "s/(C|LD)FLAGS =/\1FLAGS +=/" Makefile
epatch "${FILESDIR}/${PN}_open_mode.patch"
epatch "${FILESDIR}/${P}-debian-vararg.patch"
}
src_compile() {
emake CC="$(tc-getCC)" || die
emake doc || die
}
src_install() {
dobin ${PN} selthresh
doman doc/${PN}*.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
}