Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdfgrep/
Date: Fri, 14 Apr 2017 19:31:36
Message-Id: 1492198287.71f80e5fadc6bdff9447183bb48f07c8cd4ac2f3.jlec@gentoo
1 commit: 71f80e5fadc6bdff9447183bb48f07c8cd4ac2f3
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 14 19:31:18 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 14 19:31:27 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f80e5f
7
8 app-text/pdfgrep: Version Bump
9
10 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=614244
11 Package-Manager: Portage-2.3.5, Repoman-2.3.2
12 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
13
14 app-text/pdfgrep/Manifest | 1 +
15 app-text/pdfgrep/pdfgrep-2.0.1.ebuild | 31 +++++++++++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/app-text/pdfgrep/Manifest b/app-text/pdfgrep/Manifest
19 index c04bc3e8568..e675a8e76b3 100644
20 --- a/app-text/pdfgrep/Manifest
21 +++ b/app-text/pdfgrep/Manifest
22 @@ -1 +1,2 @@
23 DIST pdfgrep-1.4.1.tar.gz 151926 SHA256 db04a210e6bb7b77cd6c54b17f0f6fed0d123a85f97a541b270736a5d3840f2c SHA512 27ce23c25a5f284b3eba92a0f8dbf02600248548967c1e71dfb41e43528824d9add587ea0ac23899ff07d2ffc6c74c2e6e4c2e7240e69494b8d31b7a4afc3735 WHIRLPOOL f08308a13b0b577215521b116db7b4c787b34993665031a690308e45333f35e86419928310b303060cda40aaf4ed5d474400bcee0e29106c9f8c8935d779687e
24 +DIST pdfgrep-2.0.1.tar.gz 187217 SHA256 0370d744b3072d47383dbed2cb9c8b0b64b83c084da5a8961f8d4bc7669e941e SHA512 4285f8cb514975a0040cdd6b82133090e27ba5c2f95ca880dccc3dd4fa3427260a5fc73d807df9124a79fa36ac6ed8c11380cde11e00599ed7134d92c50df4a0 WHIRLPOOL c13ecf026c640fdb832cc4299c090ae8eab5f29998f6e001accfa97235a7995a62d2644fa2905c80634604f9def022d5e029dd27fb5d849ffdbea5646de25294
25
26 diff --git a/app-text/pdfgrep/pdfgrep-2.0.1.ebuild b/app-text/pdfgrep/pdfgrep-2.0.1.ebuild
27 new file mode 100644
28 index 00000000000..fb916b4566a
29 --- /dev/null
30 +++ b/app-text/pdfgrep/pdfgrep-2.0.1.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="A tool similar to grep which searches text in PDFs"
38 +HOMEPAGE="http://www.pdfgrep.org/"
39 +SRC_URI="http://www.pdfgrep.org/download/${P}.tar.gz"
40 +
41 +SLOT="0"
42 +LICENSE="GPL-2"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="+pcre test unac"
45 +
46 +RDEPEND="
47 + app-text/poppler:=[cxx]
48 + dev-libs/libgcrypt:0=
49 + pcre? ( dev-libs/libpcre[cxx] )
50 + unac? ( app-text/unac )"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig
53 + test? (
54 + dev-texlive/texlive-latex
55 + dev-util/dejagnu
56 + )"
57 +
58 +src_configure() {
59 + econf \
60 + $(use_with pcre libpcre) \
61 + $(use_with unac)
62 +}