Main changes: * irc is now a plugin * irc: remove kernel info in CTCP VERSION reply * relay: add relay plugin (network communication between WeeChat and remote application) * logger: add logger plugin with new features: backlog, level for messages to log * plugins: add some other plugins: alias, demo, fifo, tcl, xfer * api: new plugin API with many new functions: hooks, buffer management and nicklist, bars, configuration files, network, infos/infolists, lists, upgrade * gui: new display engine, with prefix and message for each line * gui: add new type of buffer, with free content * gui: fix display bug with some weird UTF-8 chars * core: improve main loop: higher timout in select(), less CPU usage * core: new name for configuration files (*.conf instead of *.rc)
28 lines
755 B
Makefile
28 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.25 2009/11/03 22:22:31 tonio Exp $
|
|
#
|
|
|
|
DISTNAME= weechat-0.3.0
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://www.weechat.org/files/src/
|
|
|
|
MAINTAINER= tonio@NetBSD.org
|
|
HOMEPAGE= http://www.weechat.org/
|
|
COMMENT= Lightweight and user friendly curses based IRC client
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= msgfmt
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-ruby --disable-aspell
|
|
MAKE_ENV+= INSTALL_DATA_DIR=${INSTALL_DATA_DIR:Q}
|
|
MAKE_ENV+= PREFIX=${DESTDIR:Q}${PREFIX:Q}
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|