mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
1c19339682
Release 0.88.0: core: * Support Widget Annotation Buttons not linked to any Form * SplashOuputDev: Use stroking opacity when clipping to a stroke path * Handle 1 bit RGB images in ICC colorspace * Internal code improvements qt5: * Add Document::signatures. Returns signatures not attached to any page * ArthurOutputDev: Fix font hinting * ArthurOutputDev: Set the opacity when filling with axial gradients * ArthurOutputDev: Implement the clipToStrokePath method * ArthurOutputDev: Use stroking opacity when clipping to a stroke path glib: * Add poppler_page_get_bounding_box * Add poppler_form_field_get_alternate_ui_name * Implement rotation for 'flagNoRotate' annots. Issue #767 cpp: * Add non_raw_non_physical layout for page::text() utils: * pdftohtml: Fix noRoundedCoordinates->noroundcoord in man page * pdfsig: Show also signatures that aren't attached to any page
33 lines
783 B
Makefile
33 lines
783 B
Makefile
# Created by: Michael Ranner <michael@ranner.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pdfgrep
|
|
PORTVERSION= 2.1.1
|
|
PORTREVISION= 16
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://pdfgrep.org/download/
|
|
|
|
MAINTAINER= michael@ranner.eu
|
|
COMMENT= Tool to search text in PDF files
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libgcrypt.so:security/libgcrypt \
|
|
libpoppler.so:graphics/poppler \
|
|
libgpg-error.so:security/libgpg-error
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= compiler:c11 pkgconfig
|
|
|
|
PLIST_FILES= bin/pdfgrep man/man1/pdfgrep.1.gz \
|
|
share/bash-completion/completions/pdfgrep \
|
|
share/zsh/site-functions/_pdfgrep
|
|
|
|
OPTIONS_DEFINE= LIBPCRE
|
|
LIBPCRE_DESC= Enable Perl compatable expressions
|
|
LIBPCRE_LIB_DEPENDS= libpcre.so:devel/pcre
|
|
LIBPCRE_CONFIGURE_WITH= libpcre
|
|
|
|
.include <bsd.port.mk>
|