diff options
author | tonio <tonio> | 2009-07-18 06:04:33 +0000 |
---|---|---|
committer | tonio <tonio> | 2009-07-18 06:04:33 +0000 |
commit | b542813b7f8d49ca0d870dae0d9fad0f62c98bce (patch) | |
tree | 5650d48b5b5e9f111513b1c607151ff6dabaacdc | |
parent | 95b17189970cd96af3335808acc6d62ee70f1f1a (diff) | |
download | pkgsrc-b542813b7f8d49ca0d870dae0d9fad0f62c98bce.tar.gz |
Update chat/weechat to 0.2.6.3
Add perl and ruby options, fix PR pkg/38946
Changelog:
* 2009-06-13
WeeChat 0.2.6.3 released.
This version fixes gnutls detection.
* 2009-04-18
WeeChat 0.2.6.2 released.
This version fixes a bug with charset decoding (like iso2022jp).
-rw-r--r-- | chat/weechat/Makefile | 6 | ||||
-rw-r--r-- | chat/weechat/PLIST | 4 | ||||
-rw-r--r-- | chat/weechat/distinfo | 8 | ||||
-rw-r--r-- | chat/weechat/options.mk | 24 |
4 files changed, 31 insertions, 11 deletions
diff --git a/chat/weechat/Makefile b/chat/weechat/Makefile index 0818db5f193..1969ec88199 100644 --- a/chat/weechat/Makefile +++ b/chat/weechat/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2009/05/19 08:59:05 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2009/07/18 06:04:33 tonio Exp $ # -DISTNAME= weechat-0.2.6.1 +DISTNAME= weechat-0.2.6.3 CATEGORIES= chat MASTER_SITES= http://weechat.flashtux.org/download/ EXTRACT_SUFX= .tar.bz2 @@ -17,7 +17,7 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_PKGLOCALEDIR= yes USE_TOOLS+= msgfmt GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --disable-ruby --disable-perl --disable-aspell +CONFIGURE_ARGS+= --disable-ruby --disable-aspell MAKE_ENV+= INSTALL_DATA_DIR=${INSTALL_DATA_DIR:Q} INCOMPAT_CURSES+= NetBSD-*-* diff --git a/chat/weechat/PLIST b/chat/weechat/PLIST index 7d1f26498ae..adef1970cf4 100644 --- a/chat/weechat/PLIST +++ b/chat/weechat/PLIST @@ -1,7 +1,9 @@ -@comment $NetBSD: PLIST,v 1.10 2009/06/14 17:37:51 joerg Exp $ +@comment $NetBSD: PLIST,v 1.11 2009/07/18 06:04:33 tonio Exp $ bin/weechat-curses ${PLIST.lua}lib/weechat/plugins/lua.la +${PLIST.perl}lib/weechat/plugins/perl.la ${PLIST.python}lib/weechat/plugins/python.la +${PLIST.ruby}lib/weechat/plugins/ruby.la ${PLIST.charset}lib/weechat/plugins/charset.la man/man1/weechat-curses.1 share/doc/weechat/html/de/weechat-doc.css diff --git a/chat/weechat/distinfo b/chat/weechat/distinfo index d927e6f053c..816537cf5f0 100644 --- a/chat/weechat/distinfo +++ b/chat/weechat/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.14 2009/03/22 10:32:40 tonio Exp $ +$NetBSD: distinfo,v 1.15 2009/07/18 06:04:33 tonio Exp $ -SHA1 (weechat-0.2.6.1.tar.bz2) = ffc60a92906fa071f66774247ad8fe6faf534d24 -RMD160 (weechat-0.2.6.1.tar.bz2) = e1a3859cf06efc70072ee5de23a0d5a21e52b584 -Size (weechat-0.2.6.1.tar.bz2) = 1099514 bytes +SHA1 (weechat-0.2.6.3.tar.bz2) = f30afb14a0b3920baab349e0efaef17fd5b0ce5e +RMD160 (weechat-0.2.6.3.tar.bz2) = dbf2c534cd26bc6593447ca1c6d78f8cba7625c8 +Size (weechat-0.2.6.3.tar.bz2) = 1110344 bytes SHA1 (patch-aa) = 5bfba8832834898030fb1612adee83c8a7d1e708 SHA1 (patch-ab) = 14264c459810e7300b5adedd0ff98e749dad3f2d diff --git a/chat/weechat/options.mk b/chat/weechat/options.mk index 44bd03d0c3f..ea0b18df5d1 100644 --- a/chat/weechat/options.mk +++ b/chat/weechat/options.mk @@ -1,12 +1,12 @@ -# $NetBSD: options.mk,v 1.6 2009/07/03 14:23:00 drochner Exp $ +# $NetBSD: options.mk,v 1.7 2009/07/18 06:04:33 tonio Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.weechat -PKG_SUPPORTED_OPTIONS= charset gnutls python lua wide-curses +PKG_SUPPORTED_OPTIONS= charset gnutls python lua wide-curses perl ruby PKG_SUGGESTED_OPTIONS= charset .include "../../mk/bsd.options.mk" -PLIST_VARS+= charset lua plugin python +PLIST_VARS+= charset lua plugin python perl ruby .if !empty(PKG_OPTIONS:Mcharset) CONFIGURE_ARGS+= --enable-charset @@ -42,6 +42,24 @@ PLIST.lua= yes CONFIGURE_ARGS+= --disable-lua .endif +.if !empty(PKG_OPTIONS:Mperl) +.include "../../lang/perl5/buildlink3.mk" +CONFIGURE_ARGS+= --enable-perl +USE_TOOLS+= perl +PLIST.perl= yes +.else +CONFIGURE_ARGS+= --disable-perl +.endif + +.if !empty(PKG_OPTIONS:Mruby) +.include "../../lang/ruby/buildlink3.mk" +CONFIGURE_ARGS+= --enable-ruby +USE_TOOLS+= ruby +PLIST.ruby= yes +.else +CONFIGURE_ARGS+= --disable-ruby +.endif + .if !empty(PKG_OPTIONS:Mpython) || \ !empty(PKG_OPTIONS:Mlua) || \ !empty(PKG_OPTIONS:Mcharset) |