forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=614244 Package-Manager: Portage-2.3.5, Repoman-2.3.2 Signed-off-by: Justin Lecher <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST pdfgrep-1.4.1.tar.gz 151926 SHA256 db04a210e6bb7b77cd6c54b17f0f6fed0d123a85f97a541b270736a5d3840f2c SHA512 27ce23c25a5f284b3eba92a0f8dbf02600248548967c1e71dfb41e43528824d9add587ea0ac23899ff07d2ffc6c74c2e6e4c2e7240e69494b8d31b7a4afc3735 WHIRLPOOL f08308a13b0b577215521b116db7b4c787b34993665031a690308e45333f35e86419928310b303060cda40aaf4ed5d474400bcee0e29106c9f8c8935d779687e | ||
DIST pdfgrep-2.0.1.tar.gz 187217 SHA256 0370d744b3072d47383dbed2cb9c8b0b64b83c084da5a8961f8d4bc7669e941e SHA512 4285f8cb514975a0040cdd6b82133090e27ba5c2f95ca880dccc3dd4fa3427260a5fc73d807df9124a79fa36ac6ed8c11380cde11e00599ed7134d92c50df4a0 WHIRLPOOL c13ecf026c640fdb832cc4299c090ae8eab5f29998f6e001accfa97235a7995a62d2644fa2905c80634604f9def022d5e029dd27fb5d849ffdbea5646de25294 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A tool similar to grep which searches text in PDFs" | ||
HOMEPAGE="http://www.pdfgrep.org/" | ||
SRC_URI="http://www.pdfgrep.org/download/${P}.tar.gz" | ||
|
||
SLOT="0" | ||
LICENSE="GPL-2" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="+pcre test unac" | ||
|
||
RDEPEND=" | ||
app-text/poppler:=[cxx] | ||
dev-libs/libgcrypt:0= | ||
pcre? ( dev-libs/libpcre[cxx] ) | ||
unac? ( app-text/unac )" | ||
DEPEND="${RDEPEND} | ||
virtual/pkgconfig | ||
test? ( | ||
dev-texlive/texlive-latex | ||
dev-util/dejagnu | ||
)" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_with pcre libpcre) \ | ||
$(use_with unac) | ||
} |