diff options
author | Thomas Kahle <tomka@gentoo.org> | 2014-07-29 13:19:03 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2014-07-29 13:19:03 +0000 |
commit | e05a4296cc71611f96d5bfd6fb9e9870516a770b (patch) | |
tree | 7af5e848f66cef0e1ad600cea483a0ea23c22b4d /app-text/pdfsandwich | |
parent | Bump to 1.71 (diff) | |
download | gentoo-2-e05a4296cc71611f96d5bfd6fb9e9870516a770b.tar.gz gentoo-2-e05a4296cc71611f96d5bfd6fb9e9870516a770b.tar.bz2 gentoo-2-e05a4296cc71611f96d5bfd6fb9e9870516a770b.zip |
bump to 0.1.2
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)
Diffstat (limited to 'app-text/pdfsandwich')
-rw-r--r-- | app-text/pdfsandwich/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/pdfsandwich/pdfsandwich-0.1.2.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/app-text/pdfsandwich/ChangeLog b/app-text/pdfsandwich/ChangeLog index a48833715867..cc1ea5aa89e1 100644 --- a/app-text/pdfsandwich/ChangeLog +++ b/app-text/pdfsandwich/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/pdfsandwich -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/ChangeLog,v 1.7 2013/04/21 17:59:49 tomka Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/ChangeLog,v 1.8 2014/07/29 13:19:03 tomka Exp $ + +*pdfsandwich-0.1.2 (29 Jul 2014) + + 29 Jul 2014; Thomas Kahle <tomka@gentoo.org> +pdfsandwich-0.1.2.ebuild: + bump to 0.1.2 *pdfsandwich-0.0.8 (21 Apr 2013) diff --git a/app-text/pdfsandwich/pdfsandwich-0.1.2.ebuild b/app-text/pdfsandwich/pdfsandwich-0.1.2.ebuild new file mode 100644 index 000000000000..a4fe952993cc --- /dev/null +++ b/app-text/pdfsandwich/pdfsandwich-0.1.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/pdfsandwich-0.1.2.ebuild,v 1.1 2014/07/29 13:19:03 tomka Exp $ + +EAPI=4 + +DESCRIPTION="generator of sandwich OCR pdf files" +HOMEPAGE="http://www.tobias-elze.de/pdfsandwich" +SRC_URI="mirror://sourceforge/pdfsandwich/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND=">=app-text/tesseract-3.00 + media-gfx/exact-image + app-text/unpaper + 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 +} + +pkg_postinst() { + elog "pdfsandwich relies on the tesseract library for OCR." + elog "Consequently language support is determined by tesseract's" + elog "language support which in turn is controlled via the LINGUAS" + elog "variable in make.conf." +} |