pkgsrc/chat/weechat/options.mk
tonio 1c728fa757 Update chat/weechat to 0.4.1
Use cmake for build

Version 0.4.1 (May 20, 2013)
- multiple layouts support
- nick prefix/suffix are now dynamic (and managed by core instead of irc plugin)
- unmask irc join if nick speaks some minutes after the join
- new option irc.look.display_join_message to disable some messages after joining a channel
- new option irc.look.pv_buffer to automatically merge private buffers
- add support of UHNAMES
- add DH-AES encryption method for SASL
- multiple irc servers allowed on same port for irc protocol in relay plugin
- add WebSocket server support (RFC 6455) in relay plugin (for irc and weechat protocols)
- send nicklist difference in relay plugin (weechat protocol)
- add control of autoload for scripts
- optimizations in aspell plugin
- many bugs fixed.

Version 0.4.0 (Jan 20, 2013)
- add option "diff" for command /set, display default values in output of /set
- add color support in prefix options
- add command /eval, use expression in conditions for bars
- connect by default with IPv6 to servers with fallback to IPv4
- add aspell suggestions
- add support of tags in irc messages and "server-time" capability
- add irc command /quiet
- add support of IPv6 in relay plugin
- add backlog for irc protocol in relay plugin
- display remote IP address for DCC chat/file in xfer plugin
- add git version in build
- many bugs fixed.
2013-06-09 21:19:02 +00:00

66 lines
1.5 KiB
Makefile

# $NetBSD: options.mk,v 1.10 2013/06/09 21:19:02 tonio Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.weechat
PKG_SUPPORTED_OPTIONS= charset gnutls python lua wide-curses perl ruby
PKG_SUGGESTED_OPTIONS= charset gnutls
.include "../../mk/bsd.options.mk"
PLIST_VARS+= charset lua plugin python perl ruby
.if !empty(PKG_OPTIONS:Mcharset)
CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=ON
PLIST.charset= yes
.else
CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mgnutls)
.include "../../security/gnutls/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mwide-curses)
.include "../../devel/ncursesw/buildlink3.mk"
.else
.include "../../devel/ncurses/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mpython)
.include "../../lang/python/extension.mk"
CMAKE_ARGS+= -DENABLE_PYTHON:BOOL=ON
PLIST.python= yes
.else
CMAKE_ARGS+= -DENABLE_PYTHON:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mlua)
.include "../../lang/lua/buildlink3.mk"
CMAKE_ARGS+= -DENABLE_LUA:BOOL=ON
PLIST.lua= yes
.else
CMAKE_ARGS+= -DENABLE_LUA:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mperl)
.include "../../lang/perl5/buildlink3.mk"
CMAKE_ARGS+= -DENABLE_PERL:BOOL=ON
USE_TOOLS+= perl
PLIST.perl= yes
.else
CMAKE_ARGS+= -DENABLE_PERL:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mruby)
.include "../../lang/ruby/buildlink3.mk"
CMAKE_ARGS+= -DENABLE_RUBY:BOOL=ON
USE_TOOLS+= ruby
PLIST.ruby= yes
.else
CMAKE_ARGS+= -DENABLE_RUBY:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mpython) || \
!empty(PKG_OPTIONS:Mlua) || \
!empty(PKG_OPTIONS:Mcharset)
PLIST.plugin= yes
.endif