diff options
author | drochner <drochner> | 2011-07-11 10:05:22 +0000 |
---|---|---|
committer | drochner <drochner> | 2011-07-11 10:05:22 +0000 |
commit | f36171d0c54d899985389bce6c477befbf03447a (patch) | |
tree | 10ba510b2ad0773b1d8755edd6475eaaf938b559 /print/poppler-utils | |
parent | 7df333115a570058602fbfd946ad55208e09a757 (diff) | |
download | pkgsrc-f36171d0c54d899985389bce6c477befbf03447a.tar.gz |
update to 0.16.7
changes: bugfixes
pkgsrc change: set --enable-cms in frontend components if it was
set in the base pkg -- the layout of some classes depends on this
definition, and inconsistencies can lead to crashes
(see poppler bug #35381)
Diffstat (limited to 'print/poppler-utils')
-rw-r--r-- | print/poppler-utils/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/print/poppler-utils/Makefile b/print/poppler-utils/Makefile index a8054a24516..3e61a407f93 100644 --- a/print/poppler-utils/Makefile +++ b/print/poppler-utils/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.21 2011/05/11 07:05:46 abs Exp $ +# $NetBSD: Makefile,v 1.22 2011/07/11 10:05:23 drochner Exp $ # .include "../../print/poppler/Makefile.common" PKGNAME= poppler-utils-${POPPLER_VERS} -PKGREVISION= 2 COMMENT= PDF utilities (from poppler) MAINTAINER= reed@reedmedia.net @@ -28,7 +27,11 @@ CONFIGURE_ARGS+= --disable-gtk-test CONFIGURE_ARGS+= --disable-poppler-glib # Enable build and install of the tools CONFIGURE_ARGS+= --enable-utils # the default +.if !empty(PKG_BUILD_OPTIONS.poppler:Mpoppler-cms) +CONFIGURE_ARGS+= --enable-cms +.else CONFIGURE_ARGS+= --disable-cms +.endif BUILD_DIRS= utils # implies INSTALL_DIRS too |