pkgsrc-wip/coq/options.mk
Blue Rats 676777dd40 Import coq-8.2pl1 as wip/coq.
Coq is a formal proof management system. It provides a formal language to write
mathematical definitions, executable algorithms and theorems together with an
environment for semi-interactive development of machine-checked proofs.
2010-03-11 14:37:18 +00:00

20 lines
455 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2010/03/11 14:37:19 othyro Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.coq
PKG_SUPPORTED_OPTIONS= doc gui
PKG_SUGGESTED_OPTIONS= gui
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdoc)
DEPENDS+= hevea>=1.10:../../textproc/hevea
CONFIGURE_ARGS+= -with-doc yes
.else
CONFIGURE_ARGS+= -with-doc no
.endif
.if !empty(PKG_OPTIONS:Mgui)
.include "../../x11/lablgtk/buildlink3.mk"
.else
CONFIGURE_ARGS+= -coqide no
.endif