pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/chat/weechat Update chat/weechat to 0.2.6.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/e9fd75922b88
branches: trunk
changeset: 561893:e9fd75922b88
user: tonio <tonio%pkgsrc.org@localhost>
date: Sat Jul 18 06:04:33 2009 +0000
description:
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).
diffstat:
chat/weechat/Makefile | 6 +++---
chat/weechat/PLIST | 4 +++-
chat/weechat/distinfo | 8 ++++----
chat/weechat/options.mk | 24 +++++++++++++++++++++---
4 files changed, 31 insertions(+), 11 deletions(-)
diffs (95 lines):
diff -r e7b8ddab1198 -r e9fd75922b88 chat/weechat/Makefile
--- a/chat/weechat/Makefile Sat Jul 18 03:15:18 2009 +0000
+++ b/chat/weechat/Makefile Sat Jul 18 06:04:33 2009 +0000
@@ -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 @@
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 -r e7b8ddab1198 -r e9fd75922b88 chat/weechat/PLIST
--- a/chat/weechat/PLIST Sat Jul 18 03:15:18 2009 +0000
+++ b/chat/weechat/PLIST Sat Jul 18 06:04:33 2009 +0000
@@ -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 -r e7b8ddab1198 -r e9fd75922b88 chat/weechat/distinfo
--- a/chat/weechat/distinfo Sat Jul 18 03:15:18 2009 +0000
+++ b/chat/weechat/distinfo Sat Jul 18 06:04:33 2009 +0000
@@ -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 -r e7b8ddab1198 -r e9fd75922b88 chat/weechat/options.mk
--- a/chat/weechat/options.mk Sat Jul 18 03:15:18 2009 +0000
+++ b/chat/weechat/options.mk Sat Jul 18 06:04:33 2009 +0000
@@ -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 @@
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)
Home |
Main Index |
Thread Index |
Old Index