pkgsrc/print/mupdf/options.mk
leot d282934e31 Update print/mupdf to 1.11
Changes:
List of changes in MuPDF 1.11
-----------------------------
* This is primarily a bug fix release.
* Split Android and iOS viewers into separate projects:
   - mupdf-viewer-ios.git has the iOS viewer.
   - mupdf-viewer-android-old.git has the Android viewer.
   - mupdf-viewer-android-nui.git has a new advanced Android viewer.
   - mupdf-viewer-android-mini.git has a new minimalist Android viewer.
* PDF portfolio support with command line tool "mutool portfolio".
* Add callbacks to load fallback fonts from the system.
* Use system fonts in Android to reduce install size.
* Flag to disable publisher styles in EPUB layout.
* Improved SVG output.
2017-04-12 13:03:08 +00:00

25 lines
488 B
Makefile

# $NetBSD: options.mk,v 1.5 2017/04/12 13:03:08 leot Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mupdf
PKG_SUPPORTED_OPTIONS= curl glfw
.include "../../mk/bsd.options.mk"
PLIST_VARS+= glfw
#
# curl support
#
.if !empty(PKG_OPTIONS:Mcurl)
.include "../../www/curl/buildlink3.mk"
.endif
#
# glfw support
#
.if !empty(PKG_OPTIONS:Mglfw)
PLIST.glfw= yes
.include "../../graphics/MesaLib/buildlink3.mk"
BUILDLINK_API_DEPENDS.glfw+= glfw>=3.2.1
.include "../../graphics/glfw/buildlink3.mk"
.endif