From c92a2e6d24aa8c68e5eb64529997437b7b47fe6f Mon Sep 17 00:00:00 2001 From: tonio Date: Mon, 2 Oct 2006 21:02:03 +0000 Subject: add the option.mk file i forgot in last commits Thanks rillig@ for catching this ! --- chat/weechat/options.mk | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 chat/weechat/options.mk (limited to 'chat/weechat') diff --git a/chat/weechat/options.mk b/chat/weechat/options.mk new file mode 100644 index 00000000000..36c7e065a7e --- /dev/null +++ b/chat/weechat/options.mk @@ -0,0 +1,30 @@ +# $NetBSD: options.mk,v 1.1 2006/10/02 21:02:03 tonio Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.weechat +PKG_SUPPORTED_OPTIONS= python lua + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mpython) +.include "../../lang/python/extension.mk" +CONFIGURE_ARGS+= --enable-python +PLIST_SUBST+= WITHPYTHON="" +.else +CONFIGURE_ARGS+= --disable-python +PLIST_SUBST+= WITHPYTHON="@comment " +.endif + +.if !empty(PKG_OPTIONS:Mlua) +.include "../../lang/lua/buildlink3.mk" +CONFIGURE_ARGS+= --enable-lua +PLIST_SUBST+= WITHLUA="" +.else +CONFIGURE_ARGS+= --disable-lua +PLIST_SUBST+= WITHLUA="@comment " +.endif + +.if !empty(PKG_OPTIONS:Mpython) || !empty(PKG_OPTIONS:Mlua) +PLIST_SUBST+= WITHPLUGIN="" +.else +PLIST_SUBST+= WITHPLUGIN="@comment " +.endif -- cgit v1.2.3