diff options
author | shattered <shattered@pkgsrc.org> | 2013-08-21 10:43:29 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2013-08-21 10:43:29 +0000 |
commit | 0a456c28631064c3f109cca2bfe4ff48988c8e89 (patch) | |
tree | 82cfd9185a953b383b9e3283af1bf1ac72cfbf17 /chat | |
parent | d8ba1306e89c3867d98f0365bb11be74adefd10f (diff) | |
download | pkgsrc-0a456c28631064c3f109cca2bfe4ff48988c8e89.tar.gz |
Update to 2.10.2. Changes:
- Add support for maildir mail boxes, which must be selected at compile time
[not enabled in this package]
- Fixes to support socks5 again, at least on freebsd.
- Add support for +T by special request.
- Add $windowctl(GET <refnum> CHANNELS).
- Port $strtol() and $tobase() from epic5.
- Numerous crashes and problems fixed.
Full change log:
http://wayback.archive.org/web/20121103102353/http://epicsol.org/?page=changelog
Diffstat (limited to 'chat')
-rw-r--r-- | chat/epic4/Makefile | 5 | ||||
-rw-r--r-- | chat/epic4/distinfo | 9 | ||||
-rw-r--r-- | chat/epic4/patches/patch-aa | 19 |
3 files changed, 6 insertions, 27 deletions
diff --git a/chat/epic4/Makefile b/chat/epic4/Makefile index 16141c3586c..2032fefe47e 100644 --- a/chat/epic4/Makefile +++ b/chat/epic4/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.36 2013/02/06 23:21:46 jperkin Exp $ +# $NetBSD: Makefile,v 1.37 2013/08/21 10:43:29 shattered Exp $ # -DISTNAME= epic4-2.2 -PKGREVISION= 4 +DISTNAME= epic4-2.10.2 CATEGORIES= chat MASTER_SITES= ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/ \ ftp://ftp.freenet.de/pub/ftp.prbh.org/pub/epic/EPIC4-PRODUCTION/ \ diff --git a/chat/epic4/distinfo b/chat/epic4/distinfo index 2667159007a..6b3a8fc7c70 100644 --- a/chat/epic4/distinfo +++ b/chat/epic4/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.11 2012/01/09 23:08:56 sbd Exp $ +$NetBSD: distinfo,v 1.12 2013/08/21 10:43:29 shattered Exp $ -SHA1 (epic4-2.2.tar.bz2) = 88d4140e693b571ceb8148f98d504a5fefa74076 -RMD160 (epic4-2.2.tar.bz2) = 8f1f1b446bd3260e665093864f1becc0b625be32 -Size (epic4-2.2.tar.bz2) = 623254 bytes -SHA1 (patch-aa) = c00699223db490c044d07754d73078c4f768e3a3 +SHA1 (epic4-2.10.2.tar.bz2) = 5b6538d9c1465bc861295f54fe375f326921dcb7 +RMD160 (epic4-2.10.2.tar.bz2) = 38af0d56fdb315c4ce47bf531a4e00d79f13eb5f +Size (epic4-2.10.2.tar.bz2) = 633946 bytes SHA1 (patch-source_Makefile.in) = ea4b6520c228b22b43dc391725f3a0d616aeb729 diff --git a/chat/epic4/patches/patch-aa b/chat/epic4/patches/patch-aa deleted file mode 100644 index 10a0ede1661..00000000000 --- a/chat/epic4/patches/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2007/03/17 14:19:59 rillig Exp $ - -gcc4 complains: -term.c:98: error: conflicting types for 'tparm' -term.c:98: note: a parameter list with an ellipsis can't match an empty parameter name list declaration -./../include/compat.h:10: error: previous declaration of 'tparm' was here - ---- source/term.c.orig 2003-12-03 23:17:40.000000000 +0100 -+++ source/term.c 2007-03-17 15:16:22.000000000 +0100 -@@ -94,8 +94,7 @@ extern int tgetflag(); - #define Tgetflag(x) tgetflag(x.tname) - #endif - --extern char *getenv(); --extern char *tparm(); -+#include <stdlib.h> - - /* - * The old code assumed termcap. termcap is almost always present, but on |