1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-01 10:59:55 +00:00

Pdfgrep is a tool to search text in PDF files. It works similar to grep.

Features:

        * search for regular expressions.
        * support for some important grep options, including:
                o filename output.
                o page number output.
                o optional case insensitivity.
                o count occurrences.
        * and the most important feature: color output!

WWW: http://pdfgrep.sourceforge.net/

PR:		ports/152648
Submitted by:	Michael Ranner <michael@ranner.eu>
This commit is contained in:
Wen Heping 2010-12-15 08:14:48 +00:00
parent 072e0907a1
commit b11ec6a474
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266331
4 changed files with 46 additions and 0 deletions

View File

@ -926,6 +926,7 @@
SUBDIR += par
SUBDIR += pardiff
SUBDIR += pcrs
SUBDIR += pdfgrep
SUBDIR += pdfoutline
SUBDIR += pdftohtml
SUBDIR += pear-File_Fortune

29
textproc/pdfgrep/Makefile Normal file
View File

@ -0,0 +1,29 @@
# New ports collection makefile for: pdfgrep
# Date created: 2010-11-28
# Whom: Michael Ranner <michael@ranner.eu>
#
# $FreeBSD$
#
PORTNAME= pdfgrep
PORTVERSION= 1.1
CATEGORIES= textproc
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= michael@ranner.eu
COMMENT= A tool to search text in PDF files
LIB_DEPENDS= poppler.6:${PORTSDIR}/graphics/poppler
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS= poppler_CFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/poppler"
PLIST_FILES= bin/pdfgrep
MAN1= pdfgrep.1
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (pdfgrep-1.1.tar.gz) = fdce13b152595a6c3e0d84718404066cea94bdb44feb480786f118814c706c02
SIZE (pdfgrep-1.1.tar.gz) = 93911

View File

@ -0,0 +1,14 @@
Pdfgrep is a tool to search text in PDF files. It works similar to grep.
Features:
* search for regular expressions.
* support for some important grep options, including:
o filename output.
o page number output.
o optional case insensitivity.
o count occurrences.
* and the most important feature: color output!
WWW: http://pdfgrep.sourceforge.net/