mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
c567676136
Release 21.06.0: core: * Fix rendering of some extended latin1 characters in annotations. Issue #1070 * Support some not so well formed documents with password. Issue #1083 * Add API to get notified if the xref is reconstructed * Add somewhat fancier left/right signature visual representation * Fix crashes in malformed files * Minor code improvements qt6: * Change some functions to return std::unique_ptr qt5/qt6: * Add API to get notified if the xref is reconstructed * Add somewhat fancier left/right signature visual representation * Don't assert when trying to invert singular matrices build system: * make boost opt-out if building splash - Add dependency on boost to enable the splash backend. PR: 256370 Exp-run by: antoine
32 lines
771 B
Makefile
32 lines
771 B
Makefile
# Created by: Michael Ranner <michael@ranner.eu>
|
|
|
|
PORTNAME= pdfgrep
|
|
PORTVERSION= 2.1.1
|
|
PORTREVISION= 29
|
|
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>
|