diff options
author | Thomas Kahle <tomka@gentoo.org> | 2013-04-21 17:59:49 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2013-04-21 17:59:49 +0000 |
commit | 1a12b70bee3ddb74e021b01d42720cf2cfebe827 (patch) | |
tree | 357f1feb6da962ee6c64a5eaadcdc9935412ccbd /app-text/pdfsandwich | |
parent | Version bump (diff) | |
download | gentoo-2-1a12b70bee3ddb74e021b01d42720cf2cfebe827.tar.gz gentoo-2-1a12b70bee3ddb74e021b01d42720cf2cfebe827.tar.bz2 gentoo-2-1a12b70bee3ddb74e021b01d42720cf2cfebe827.zip |
Bump to 0.0.8
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)
Diffstat (limited to 'app-text/pdfsandwich')
-rw-r--r-- | app-text/pdfsandwich/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/pdfsandwich/pdfsandwich-0.0.8.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-text/pdfsandwich/ChangeLog b/app-text/pdfsandwich/ChangeLog index 9ca9a42649e5..a48833715867 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.6 2013/01/14 12:48:32 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/ChangeLog,v 1.7 2013/04/21 17:59:49 tomka Exp $ + +*pdfsandwich-0.0.8 (21 Apr 2013) + + 21 Apr 2013; Thomas Kahle <tomka@gentoo.org> +pdfsandwich-0.0.8.ebuild: + Bump to 0.0.8 *pdfsandwich-0.0.7 (14 Jan 2013) diff --git a/app-text/pdfsandwich/pdfsandwich-0.0.8.ebuild b/app-text/pdfsandwich/pdfsandwich-0.0.8.ebuild new file mode 100644 index 000000000000..05cccb04b99a --- /dev/null +++ b/app-text/pdfsandwich/pdfsandwich-0.0.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfsandwich/pdfsandwich-0.0.8.ebuild,v 1.1 2013/04/21 17:59:49 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 +} |