Changelog: pdf2djvu (0.9.3) unstable; urgency=low * Fix rendering some vector elements that should go to the foreground layer. Regression introduced in 0.7.1. https://bitbucket.org/jwilk/pdf2djvu/issues/115 * Improve the test suite. -- Jakub Wilk <jwilk@jwilk.net> Fri, 20 Nov 2015 19:26:40 +0100 pdf2djvu (0.9.2) unstable; urgency=low [ Jakub Wilk ] * Improve error handling. + Ignore document outline items with non-existent destinations. https://bitbucket.org/jwilk/pdf2djvu/issues/112 * Improve the test suite. * Update the Polish translation. [ Chris Leick ] * Update the German translation. [ Américo Monteiro ] * Update the Portuguese translation. [ Kyrill Detinov ] * Update the Russian translation. -- Jakub Wilk <jwilk@jwilk.net> Thu, 22 Oct 2015 15:06:02 +0200 pdf2djvu (0.9.1) unstable; urgency=low * Fix detection of libraries needed for XMP support in the configure script. * Document that libuuid might be a part of e2fsprogs on some systems. * Use DCE uuid_*() functions (instead of libuuid) if they are provided by libc. * Improve error handling. * Improve the test suite. + Add work-around for tests failing on OpenBSD because of an error message from GraphicsMagick (“Failed to close module …”). https://bitbucket.org/jwilk/pdf2djvu/issues/108 -- Jakub Wilk <jwilk@jwilk.net> Mon, 28 Sep 2015 22:00:48 +0200 pdf2djvu (0.9) unstable; urgency=low [ Jakub Wilk ] * Add support for PDF page labels in page titles. Use labels as default page titles. https://bitbucket.org/jwilk/pdf2djvu/issue/109 * Add the “--no-page-title” option. Also, don't set page title if “--page-title-template” is empty. * Rename “--pageid-prefix” as “--page-id-prefix”. * Rename “--pageid-template” as “--page-id-template”. * Improve XMP support: + Use the Exiv2 library (instead of the GNOME XSLT library with hand-crafted XSL stylesheets). + Update the xmpMM:InstanceID property. + Update the xmpMM:DocumentID property. + Generate globally unique identifiers in the urn:uuid namespace. https://tools.ietf.org/html/rfc4122#section-3 + Use correct timezone offset in xmp:MetadataDate. * Fix a few spelling mistakes in the manual page. * Fix support for files larger than 2GB on 32-bit systems. * Improve error handling. * Improve the test suite. * Update the Polish translation. * Disable building the Ukrainian manual page, which is not fully translated. [ Américo Monteiro ] * Update the Portuguese translation. [ Chris Leick ] * Update the German translation. [ Jean-Paul Guillonneau ] * Update the French translation of the manual page. [ Kyrill Detinov ] * Update the Russian translation. -- Jakub Wilk <jwilk@jwilk.net> Sun, 27 Sep 2015 17:45:49 +0200
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2016/01/31 07:22:54 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= pdf2djvu-0.9.3
|
|
CATEGORIES= print
|
|
MASTER_SITES= https://bitbucket.org/jwilk/pdf2djvu/downloads/
|
|
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++ c
|
|
USE_TOOLS+= pkg-config gmake intltool msgfmt xgettext gsed:run
|
|
TOOLS_DEPENDS.gsed= gsed>=4.2:../../textproc/gsed
|
|
CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-5*) || ${OPSYS} == "MirBSD"
|
|
BUILDLINK_TRANSFORM+= rm:-Werror=overloaded-virtual
|
|
.endif
|
|
|
|
.include "../../graphics/djvulibre-lib/buildlink3.mk"
|
|
.include "../../print/poppler/buildlink3.mk"
|
|
.include "../../print/poppler-includes/buildlink3.mk"
|
|
.include "../../textproc/libxslt/buildlink3.mk"
|
|
.include "../../graphics/GraphicsMagick/buildlink3.mk"
|
|
.include "../../devel/pstreams/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|