blob: 3645899ca0d87e1420e0ea1a567f26414d06ae85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $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
|