diff options
Diffstat (limited to 'app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild')
-rw-r--r-- | app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild b/app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild new file mode 100644 index 000000000000..6d7d17ee1e30 --- /dev/null +++ b/app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/pdfsandwich-0.0.2.ebuild,v 1.1 2010/10/22 15:11:40 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/1809/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND="<app-text/cuneiform-0.9.0[imagemagick] + media-gfx/exact-image + app-text/ghostscript-gpl" + +DEPEND="sys-apps/gawk + >=dev-lang/ocaml-3.08[ocamlopt]" + +src_prepare() { + sed -i "/^OCAMLOPTFLAGS/s/$/ -ccopt \"\$(CFLAGS) \$(LDFLAGS)\"/" Makefile +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} |