50a0a28d3c
Release 0.34.0 core: * Splash: Fix crash in PDF with nested softmasks. Bug #91240 * Splash: Speed up of rendering icc based images. Bug #90171 * PSOutputDev: Embed Type1 fonts to PostScript files correctly. Bug #19747 * Fix pedantic memory leak glib: * update new symbols section build system: * cmake: Make sure ENABLE_LIBOPENJPEG is either 0 or 1 Release 0.33.0 core: * Fix regression in pdftops parameter passing. Bug #89827 * Combine base characters and diacritical marks. Bug #87215 * Use width from W array for WMode positioning. Bug #89621 * Fixed adding annotation of Subtype Popup to pdf page. Bug #89136 * CairoOutputDev: Fix memory leak in CairoFreeTypeFont::create * SplashOutputDev: memset on error to have reproducible outputs qt4: * Fix PDF Text String -> QString conversion. KDE Bug #344849 qt5: * Fix PDF Text String -> QString conversion. KDE Bug #344849 glib: * Add poppler_annot_markup_set_popup_rectangle() * Fix segfault when creating PopplerAction. Bug #90093 utils: * pdftohtml: Set exit status adecuately. Bug #83609 build system: * configure: Fix invalid shell comparaison in libtiff test
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.62 2015/07/14 09:03:05 wiz Exp $
|
|
|
|
.include "../../print/poppler/Makefile.common"
|
|
|
|
PKGNAME= poppler-glib-${POPPLER_VERS}
|
|
|
|
COMMENT= PDF rendering library (GLib wrapper)
|
|
MAINTAINER= reed@reedmedia.net
|
|
|
|
CONFLICTS+= poppler<0.4.5nb1
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/poppler-glib.pc.in
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
# Build the cairo graphics backend, required by glib.
|
|
CONFIGURE_ARGS+= --enable-cairo-output
|
|
# Don't build the splash graphics backend.
|
|
CONFIGURE_ARGS+= --disable-splash-output
|
|
# Don't compile poppler qt wrapper.
|
|
CONFIGURE_ARGS+= --disable-poppler-qt
|
|
# Don't compile GTK+ test program.
|
|
CONFIGURE_ARGS+= --disable-gtk-test
|
|
CONFIGURE_ARGS+= --disable-utils
|
|
CONFIGURE_ARGS+= --disable-poppler-cpp
|
|
|
|
CFLAGS.FreeBSD+= -DLLONG_MAX=__LLONG_MAX
|
|
|
|
BUILDLINK_API_DEPENDS.poppler+= poppler-${POPPLER_VERS}{,nb*}
|
|
.include "../../print/poppler/buildlink3.mk"
|
|
|
|
BUILD_DIRS= goo fofi poppler glib
|
|
INSTALL_DIRS= glib
|
|
|
|
INSTALLATION_DIRS+= lib/pkgconfig
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/poppler-cairo.pc ${DESTDIR}${PREFIX}/lib/pkgconfig
|
|
${INSTALL_DATA} ${WRKSRC}/poppler-glib.pc ${DESTDIR}${PREFIX}/lib/pkgconfig
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|