summaryrefslogtreecommitdiff
path: root/graphics/jasper/options.mk
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/jasper/options.mk')
-rw-r--r--graphics/jasper/options.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/graphics/jasper/options.mk b/graphics/jasper/options.mk
new file mode 100644
index 00000000000..fdca01f363a
--- /dev/null
+++ b/graphics/jasper/options.mk
@@ -0,0 +1,18 @@
+# $NetBSD: options.mk,v 1.1 2017/02/21 18:24:20 adam Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.jasper
+PKG_SUPPORTED_OPTIONS= opengl
+
+.include "../../mk/bsd.options.mk"
+
+PLIST_VARS+= opengl
+
+.if empty(PKG_OPTIONS:Mopengl)
+CMAKE_ARGS+= -DJAS_ENABLE_OPENGL=OFF
+.else
+CMAKE_ARGS+= -DJAS_ENABLE_OPENGL=ON
+PLIST.opengl= yes
+. if ${OPSYS} != "Darwin"
+. include "../../graphics/glut/buildlink3.mk"
+. endif
+.endif