blob: 8448ce84f81b2f714c4b4cbaa9935f814835e78c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/pdfsandwich-0.0.3.ebuild,v 1.2 2011/09/13 14:37:43 tomka Exp $
EAPI="2"
DESCRIPTION="generator of sandwich OCR pdf files"
HOMEPAGE="http://pdfsandwich.origo.ethz.ch/wiki/pdfsandwich"
SRC_URI="http://download.origo.ethz.ch/pdfsandwich/2161/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
# >=cuneiform-0.9 will break placement of background text with
# exact-image This is discussed on upstream's mailing list.
RDEPEND="app-text/cuneiform[imagemagick]
media-gfx/exact-image
app-text/ghostscript-gpl"
DEPEND="sys-apps/gawk
>=dev-lang/ocaml-3.10[ocamlopt]"
src_prepare() {
sed -i "/^OCAMLOPTFLAGS/s/$/ -ccopt \"\$(CFLAGS) \$(LDFLAGS)\"/" Makefile || die
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|