summaryrefslogtreecommitdiff
path: root/chat/weechat/options.mk
diff options
context:
space:
mode:
authortonio <tonio>2013-06-09 21:19:02 +0000
committertonio <tonio>2013-06-09 21:19:02 +0000
commitdf7fe35960e3860c4319ecc0d98e6734aed60969 (patch)
treee95b1189ad0cb25b9af1380e101743e78ea2e6ce /chat/weechat/options.mk
parent6bef59a7d5303d388bb071fe8f4135a9808fa1d2 (diff)
downloadpkgsrc-df7fe35960e3860c4319ecc0d98e6734aed60969.tar.gz
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.
Diffstat (limited to 'chat/weechat/options.mk')
-rw-r--r--chat/weechat/options.mk22
1 files changed, 11 insertions, 11 deletions
diff --git a/chat/weechat/options.mk b/chat/weechat/options.mk
index 8c6c449b565..8b6b1ae9575 100644
--- a/chat/weechat/options.mk
+++ b/chat/weechat/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2012/06/13 11:33:30 abs Exp $
+# $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
@@ -9,10 +9,10 @@ PKG_SUGGESTED_OPTIONS= charset gnutls
PLIST_VARS+= charset lua plugin python perl ruby
.if !empty(PKG_OPTIONS:Mcharset)
-CONFIGURE_ARGS+= --enable-charset
+CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=ON
PLIST.charset= yes
.else
-CONFIGURE_ARGS+= --disable-charset
+CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mgnutls)
@@ -27,36 +27,36 @@ CONFIGURE_ARGS+= --disable-charset
.if !empty(PKG_OPTIONS:Mpython)
.include "../../lang/python/extension.mk"
-CONFIGURE_ARGS+= --enable-python
+CMAKE_ARGS+= -DENABLE_PYTHON:BOOL=ON
PLIST.python= yes
.else
-CONFIGURE_ARGS+= --disable-python
+CMAKE_ARGS+= -DENABLE_PYTHON:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mlua)
.include "../../lang/lua/buildlink3.mk"
-CONFIGURE_ARGS+= --enable-lua
+CMAKE_ARGS+= -DENABLE_LUA:BOOL=ON
PLIST.lua= yes
.else
-CONFIGURE_ARGS+= --disable-lua
+CMAKE_ARGS+= -DENABLE_LUA:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mperl)
.include "../../lang/perl5/buildlink3.mk"
-CONFIGURE_ARGS+= --enable-perl
+CMAKE_ARGS+= -DENABLE_PERL:BOOL=ON
USE_TOOLS+= perl
PLIST.perl= yes
.else
-CONFIGURE_ARGS+= --disable-perl
+CMAKE_ARGS+= -DENABLE_PERL:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mruby)
.include "../../lang/ruby/buildlink3.mk"
-CONFIGURE_ARGS+= --enable-ruby
+CMAKE_ARGS+= -DENABLE_RUBY:BOOL=ON
USE_TOOLS+= ruby
PLIST.ruby= yes
.else
-CONFIGURE_ARGS+= --disable-ruby
+CMAKE_ARGS+= -DENABLE_RUBY:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mpython) || \