43961f5877
Version 0.1.7 (2006-01-14): * fixed msg command (now allowed in private buffer with "*" as target) * removed "irc_default_msg_away" setting, for RFC 2812 conformity (/away command wihtout argument only removes away status), new values for "irc_display_away" (off, local, channel) * fixed refresh bug with Solaris when term size is changed * replaced Texinfo doc by XML Docbook * added color for window separators (when splited) * added completion system for plugins/scripts commands * fixed plugins autoload * added charset by server and channel, new command: /charset * added Ruby script plugin * added /upgrade command * added ETA (Estimated Time of Arrival) for DCC files * /nick command is now allowed when not connected to server * added server/channel arg to /buffer command for jumping to buffer * fixed display bug in chat window when a message length equals to window width * added new keys for switching to other windows: alt-w followed by alt-{arrow} * added new keys for scrolling to previous/next highlight: alt-P / alt-N * added "read marker": an indicator for first unread line in a server or channel buffer (new key alt-U to scroll to marker) * new window maganement: custom size for windows, auto resize when terminal is resized * fixed infinite loop when resizing term to small size * added /history command
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
# New ports collection makefile for: weechat
|
|
# Date created: 2003-03-07
|
|
# Whom: clement
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= weechat
|
|
PORTVERSION= 0.1.7
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://flashcode.free.fr/flashtux/weechat/ \
|
|
http://weechat.flashtux.org/download/
|
|
|
|
MAINTAINER= az@FreeBSD.org
|
|
COMMENT= A lightweight and user friendly ncurse based IRC client
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib -lintl"
|
|
CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE}
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= weechat-curses.1
|
|
|
|
PLIST_FILES= bin/weechat-curses
|
|
PLIST_DIRS= lib/weechat/plugins lib/weechat
|
|
|
|
.for lang in cs fr es
|
|
PLIST_FILES+= %%NLS%%share/locale/${lang}/LC_MESSAGES/weechat.mo
|
|
.endfor
|
|
|
|
PLIST_FILES+= %%DOCSDIR%%/html/en/weechat-doc.css %%DOCSDIR%%/html/fr/weechat-doc.css
|
|
PLIST_DIRS+= %%DOCSDIR%%/html/en %%DOCSDIR%%/html/fr %%DOCSDIR%%/html %%DOCSDIR%%
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
BROKEN= "Does not compile without gettext"
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_PERL)
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= this port requires perl 5.6.0 or later, Install lang/perl5 then try again
|
|
.else
|
|
CONFIGURE_ARGS+=--enable-perl
|
|
USE_PERL5= yes
|
|
PLIST_FILES+= lib/weechat/plugins/libperl.a lib/weechat/plugins/libperl.la \
|
|
lib/weechat/plugins/libperl.so lib/weechat/plugins/libperl.so.0
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(WITH_PYTHON)
|
|
CONFIGURE_ARGS+=--enable-python
|
|
USE_PYTHON= yes
|
|
PLIST_FILES+= lib/weechat/plugins/libpython.a lib/weechat/plugins/libpython.la \
|
|
lib/weechat/plugins/libpython.so lib/weechat/plugins/libpython.so.0
|
|
.endif
|
|
|
|
pre-configure:
|
|
@${CP} ${LOCALBASE}/share/gettext/config.rpath ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|