b54a328bb1
disabled, it still probes for, finds, and depends on the gs binary. (In fact, even if it can't find the gs binary it still depends on it at runtime.) The only thing the option was controlling was linking against the ghostscript library, and disabling just that seems pointless. PKGREVISION -> 4
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.17 2014/10/12 18:55:14 dholland Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ImageMagick
|
|
PKG_SUPPORTED_OPTIONS= x11 jasper djvu openexr wmf
|
|
PKG_SUGGESTED_OPTIONS= x11 jasper
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-x
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mjasper)
|
|
BUILDLINK_API_DEPENDS.jasper+= jasper>=1.701.0
|
|
.include "../../graphics/jasper/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-jp2
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jp2
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdjvu)
|
|
.include "../../graphics/djvulibre-lib/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-djvu
|
|
.else
|
|
CONFIGURE_ARGS+= --without-djvu
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenexr)
|
|
.include "../../graphics/openexr/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-openexr
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openexr
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mwmf)
|
|
.include "../../graphics/libwmf/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-wmf
|
|
.else
|
|
CONFIGURE_ARGS+= --without-wmf
|
|
.endif
|