diff options
author | tonio <tonio@pkgsrc.org> | 2006-10-02 21:02:03 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2006-10-02 21:02:03 +0000 |
commit | c92a2e6d24aa8c68e5eb64529997437b7b47fe6f (patch) | |
tree | d038a71435ac52f904d894ed533cbf74cbe939c1 /chat/weechat | |
parent | cf235e1e7723251c1824172bdb2da6d932bbed98 (diff) | |
download | pkgsrc-c92a2e6d24aa8c68e5eb64529997437b7b47fe6f.tar.gz |
add the option.mk file i forgot in last commits
Thanks rillig@ for catching this !
Diffstat (limited to 'chat/weechat')
-rw-r--r-- | chat/weechat/options.mk | 30 |
1 files changed, 30 insertions, 0 deletions
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 |