Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / net / ocamlnet / options.mk
blobc3feda9c3c466ea661b8d08e7d5f02e3c4fb6566
1 # $NetBSD$
3 PKG_OPTIONS_VAR= PKG_OPTIONS.ocamlnet
4 PKG_SUPPORTED_OPTIONS= ssl gtk
5 PKG_SUGGESTED_OPTIONS= ssl
7 .include "../../mk/bsd.prefs.mk"
9 .include "../../mk/bsd.options.mk"
11 ###
12 ### SSL support
13 ###
14 .if !empty(PKG_OPTIONS:Mssl)
15 . include "../../security/ocaml-ssl/buildlink3.mk"
16 CONFIGURE_ARGS+= -enable-ssl
17 PLIST.ssl= yes
18 .else
19 CONFIGURE_ARGS+= -disable-ssl
20 .endif
22 ###
23 ### GTK(1) support
24 ###
25 .if !empty(PKG_OPTIONS:Mgtk)
26 . include "../../x11/lablgtk1/buildlink3.mk"
27 CONFIGURE_ARGS+= -enable-gtk
28 .else
29 CONFIGURE_ARGS+= -disable-gtk
30 .endif