Makefile 691 B

123456789101112131415161718192021222324252627282930313233343536
  1. # $OpenBSD: Makefile,v 1.8 2017/05/31 08:08:17 espie Exp $
  2. COMMENT = tool to search text in PDF files
  3. DISTNAME = pdfgrep-2.0.1
  4. REVISION = 0
  5. CATEGORIES = textproc
  6. HOMEPAGE = https://pdfgrep.org/
  7. MAINTAINER = Reinhold Straub <demarchie@web.de>
  8. # GPLv2+
  9. PERMIT_PACKAGE_CDROM = Yes
  10. COMPILER = gcc
  11. # uses pledge()
  12. WANTLIB += c m pthread poppler-cpp pcre gcrypt gpg-error
  13. MASTER_SITES = https://pdfgrep.org/download/
  14. LIB_DEPENDS = print/poppler \
  15. security/libgcrypt
  16. TEST_DEPENDS = devel/dejagnu \
  17. print/texlive/base
  18. CONFIGURE_ENV = LDFLAGS="-L${X11BASE}/lib"
  19. CONFIGURE_STYLE = gnu
  20. MAKE_FLAGS = CXX="${CXX}"
  21. TEST_FLAGS = RUNTESTFLAGS="--all"
  22. .include <bsd.port.mk>