Changelog: pdf2djvu (0.9.7) unstable; urgency=low * Fix build failure with Poppler ≥ 0.58. * Improve the build system: + Fix non-portable sed(1) calls in the manpage translations makefile. + Use relative paths when building OpenJPEG for Windows (so that absolute paths are not included in the binary). * Upgrade libraries bundled with the Windows package: - Poppler 0.59. -- Jakub Wilk <jwilk@jwilk.net> Mon, 04 Sep 2017 21:15:05 +0200 pdf2djvu (0.9.6) unstable; urgency=low * Port the code to C++11. Incidentally, this fixes build failure with Poppler ≥ 0.57. * Fix GCC 8 warnings about catching polymorphic type by value. https://github.com/jwilk/pdf2djvu/issues/122 * Upgrade libraries bundled with the Windows package: - Poppler 0.57; - GraphicsMagick 1.3.26; - Expat 2.2.3; - FreeType 2.8; - fontconfig 2.12.4. * Windows: build Poppler against OpenJPEG 2.1.2. * Improve the test suite. -- Jakub Wilk <jwilk@jwilk.net> Mon, 07 Aug 2017 14:52:02 +0200
28 lines
925 B
Makefile
28 lines
925 B
Makefile
# $NetBSD: Makefile,v 1.52 2017/09/28 12:41:34 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= pdf2djvu-0.9.7
|
|
CATEGORIES= print
|
|
MASTER_SITES= https://github.com/jwilk/pdf2djvu/releases/download/${PKGVERSION_NOREV}/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://jwilk.net/software/pdf2djvu
|
|
COMMENT= Creates DjVu files from PDF files
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= djvulibre-tools-[0-9]*:../../graphics/djvulibre-tools
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
GNU_CONFIGURE= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LANGUAGES= c++
|
|
USE_TOOLS+= pkg-config gmake intltool msgfmt xgettext
|
|
CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../graphics/GraphicsMagick/buildlink3.mk"
|
|
.include "../../graphics/djvulibre-lib/buildlink3.mk"
|
|
.include "../../print/poppler-includes/buildlink3.mk"
|
|
.include "../../print/poppler/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|