38fe5753c4
Ocsigen is a web programming framework for OCaml. It can be used as a web server, serving static pages, but it is also possible to implement entire web sites as OCaml modules. WWW: http://www.ocsigen.org/
17 lines
425 B
Makefile
17 lines
425 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2007/04/10 20:24:43 tonio Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ocsigen
|
|
PKG_SUPPORTED_OPTIONS= ocamlduce
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mocamlduce)
|
|
DEPENDS+= ocamlduce>=3.09.3:../../lang/ocamlduce
|
|
CONFIGURE_ARGS+= --enable-ocamlduce
|
|
PLIST_SRC+= PLIST.ocamlduce
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ocamlduce
|
|
.endif
|
|
PLIST_SRC+= PLIST
|