a149f5f1ab
Major changes since 1.8m: + shitlist is now checked upon nick change (requested by Toch) ! cut encrypted messages at 304 characters to avoid decryption problems at the other end when IRC server cuts the message (reported by [2am]) + all mass commands (MDOP, MOP etc) now support -A flag to operate on all users (requested by ogre) + improved tabkey completion now cycles through channels as well, /DCC GET nick<tab> cycles through the files offered by nick /DCC SEND nick <tab> cycles through files on disk - if you use a relative path it looks in your CDCC ULDIR or current dir if that isn't set, also completes commands as in /M<tab> and /HELP M<tab>, path in /LOAD and DCC CHAT nicks (coded by braneded, many thanks!) + SSL support: to enable it call configure with --with-ssl. to use it SERVER -SSL HOST:PORT or WINDOW [-]SSL HOST:PORT or prefix server hostname with a ! as in scrollz nick !server:port. SSL connections are indicated with a ! in the server list (thanks to Sharky and Darkie for permission to use their code from BitchX SSL port) + per channel logging, check help for commands CHANLOG, CHANLOGDIR, CHANLOGPOST and CHANLOGPREFIX (requested by Ahnberg and his gang) ! ignore case of nickname in IGNORE nickname (reported by braneded) + mIRC compatible DCC resume, it has to be enabled in defs.h (patch submitted by braneded) ~ merged ircii-20011210 changes (without ISO-2022-JP stuff and mIRC color stuff - sorry but my screen.c is too different these days from ircII and ircII won't allow for ANSI color codes, also removed ircII's SET SHOW_STARS and SET STAR_PREFIX in favour of my, more complete code, there is no support for %v (voice status) in status bar as ScrollZ already uses %@ for that) ~ we now use HELP like ircII - all ScrollZ.help text was moved into help directory which is now part of the distribution (thanks braneded) plus I have also described all ScrollZ modifications such as additional functions, status variables and all SETs (I really hope someone is gonna take over the docs project as I simply don't have time to do both the coding and the docs) WARNING: SHELP is gone, use HELP from now on! + AWAYENCR to toggle encryption of ScrollZ.away on or off (the file is encrypted using master password, a tool to decrypt such encrypted files can be found in tools directory) The full list of changes can be found in ChangeLog.ScrollZ.
24 lines
508 B
Makefile
24 lines
508 B
Makefile
# $NetBSD: Makefile,v 1.3 2003/01/19 11:06:19 grant Exp $
|
|
#
|
|
|
|
DISTNAME= ScrollZ-1.9
|
|
PKGNAME= scrollz-1.9
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://scrollz.broken.com/source/
|
|
|
|
MAINTAINER= jrp@hispabsd.org
|
|
HOMEPAGE= http://www.scrollz.com/
|
|
COMMENT= Advanced IRC client based on ircII client
|
|
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_BUILDLINK2= YES
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(USE_INET6) && ${USE_INET6} == YES
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|