aa77e743df
changes: -fixed some crashes and a memory leak -fixed pdfimages to work for jpeg pkgsrc change: pulled in color management support from the development branch (but tested by me for many weeks), as an option which is on per default
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2009/02/12 20:55:07 drochner Exp $
|
|
#
|
|
|
|
.include "../../print/poppler/Makefile.common"
|
|
|
|
PKGNAME= poppler-utils-${POPPLER_VERS}
|
|
|
|
COMMENT= PDF utilities (from poppler)
|
|
MAINTAINER= reed@reedmedia.net
|
|
|
|
CONFLICTS+= poppler-0.5.1 poppler-0.5.1nb1 poppler-0.5.1nb2
|
|
CONFLICTS+= xpdf-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
# Don't build the cairo graphics backend.
|
|
CONFIGURE_ARGS+= --disable-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
|
|
# Don't compile GLib wrapper which also needs gtk2
|
|
CONFIGURE_ARGS+= --disable-poppler-glib
|
|
# Enable build and install of the tools
|
|
CONFIGURE_ARGS+= --enable-utils # the default
|
|
CONFIGURE_ARGS+= --disable-cms
|
|
|
|
BUILD_DIRS= utils # implies INSTALL_DIRS too
|
|
|
|
BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS}
|
|
.include "../../print/poppler/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-[12].*)
|
|
.include "../../devel/pthread-stublib/buildlink3.mk"
|
|
PTHREAD_STUBLIB= "-L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lpthstub"
|
|
.else
|
|
PTHREAD_STUBLIB= # provided by libc
|
|
.endif
|
|
MAKE_ENV+= PTHREAD_STUBLIB=${PTHREAD_STUBLIB}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|