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).
This commit is contained in:
parent
913ffd4ca9
commit
842fb9d3c9
4 changed files with 31 additions and 11 deletions
|
@ -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-*-*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue