1765ea861f
* support for specifying resolution, size, orientation, and placement of image * support for JPEG 2000 image format * options to force recompression of image data and to ignore pixel order * support for EXIF Orientation tag (auto-rotate images) * fix handling of interlaced GIF images * LZW compression no longer optional (patent expired)
14 lines
349 B
Makefile
14 lines
349 B
Makefile
# $NetBSD: options.mk,v 1.1 2005/07/14 14:52:08 dillo Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.img2eps
|
|
PKG_SUPPORTED_OPTIONS= jasper
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mjasper)
|
|
CONFIGURE_ARGS+= --with-jpeg2000
|
|
.include "../../graphics/jasper/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jpeg2000
|
|
.endif
|