diff options
author | Thomas Kahle <tomka@gentoo.org> | 2012-10-10 18:39:04 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2012-10-10 18:39:04 +0000 |
commit | d1ecdaee4bcfbf06d8bf0e0f2c6cd09e22ac4dce (patch) | |
tree | 04205af3c897372f5f45a3f9524eafcbf04095fb /app-text/pdfsandwich | |
parent | Version bump. (diff) | |
download | gentoo-2-d1ecdaee4bcfbf06d8bf0e0f2c6cd09e22ac4dce.tar.gz gentoo-2-d1ecdaee4bcfbf06d8bf0e0f2c6cd09e22ac4dce.tar.bz2 gentoo-2-d1ecdaee4bcfbf06d8bf0e0f2c6cd09e22ac4dce.zip |
Bump to 0.0.6
(Portage version: 2.1.11.25/cvs/Linux x86_64)
Diffstat (limited to 'app-text/pdfsandwich')
-rw-r--r-- | app-text/pdfsandwich/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/pdfsandwich/pdfsandwich-0.0.6.ebuild | 28 |
2 files changed, 35 insertions, 3 deletions
diff --git a/app-text/pdfsandwich/ChangeLog b/app-text/pdfsandwich/ChangeLog index 802acc868fee..e56b88446cea 100644 --- a/app-text/pdfsandwich/ChangeLog +++ b/app-text/pdfsandwich/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/pdfsandwich -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/ChangeLog,v 1.4 2011/09/13 14:37:43 tomka Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/ChangeLog,v 1.5 2012/10/10 18:39:04 tomka Exp $ + +*pdfsandwich-0.0.6 (10 Oct 2012) + + 10 Oct 2012; Thomas Kahle <tomka@gentoo.org> +pdfsandwich-0.0.6.ebuild: + Bump to 0.0.6 13 Sep 2011; Thomas Kahle <tomka@gentoo.org> -pdfsandwich-0.0.2.ebuild, pdfsandwich-0.0.3.ebuild: @@ -20,4 +25,3 @@ +metadata.xml: New ebuild: app-text/pdfsandwich, fixes bug 321885, original ebuild by Tobias Elze. - diff --git a/app-text/pdfsandwich/pdfsandwich-0.0.6.ebuild b/app-text/pdfsandwich/pdfsandwich-0.0.6.ebuild new file mode 100644 index 000000000000..020a3a524ac0 --- /dev/null +++ b/app-text/pdfsandwich/pdfsandwich-0.0.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/pdfsandwich-0.0.6.ebuild,v 1.1 2012/10/10 18:39:04 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/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 +} |