diff options
author | naddy <naddy@FreeBSD.org> | 2004-02-15 06:19:22 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2004-02-15 06:19:22 +0800 |
commit | d9be610b6116c8383ed7566178499d215c83f70e (patch) | |
tree | bd09847d171d847aa4133986792c4d28aad9f195 /irc/icbirc | |
parent | 637ce5f53de1fe5b40285e68c49b273ff75042aa (diff) | |
download | freebsd-ports-graphics-d9be610b6116c8383ed7566178499d215c83f70e.tar.gz freebsd-ports-graphics-d9be610b6116c8383ed7566178499d215c83f70e.tar.zst freebsd-ports-graphics-d9be610b6116c8383ed7566178499d215c83f70e.zip |
Import icbirc 1.6.
icbirc is a proxy that allows to connect an IRC client to an ICB server.
PR: 62506
Submitted by: hrs
Diffstat (limited to 'irc/icbirc')
-rw-r--r-- | irc/icbirc/Makefile | 22 | ||||
-rw-r--r-- | irc/icbirc/distinfo | 2 | ||||
-rw-r--r-- | irc/icbirc/files/patch-icbirc.c | 22 | ||||
-rw-r--r-- | irc/icbirc/pkg-descr | 9 |
4 files changed, 55 insertions, 0 deletions
diff --git a/irc/icbirc/Makefile b/irc/icbirc/Makefile new file mode 100644 index 00000000000..1839eab9988 --- /dev/null +++ b/irc/icbirc/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: icbirc +# Date created: 8 Feb 2004 +# Whom: hrs +# +# $FreeBSD$ + +PORTNAME= icbirc +PORTVERSION= 1.6 +CATEGORIES= irc +MASTER_SITES= http://www.benzedrine.cx/ + +MAINTAINER= hrs@FreeBSD.org +COMMENT= Proxy IRC client and ICB server + +MAKE_ENV= BINDIR="${PREFIX}/bin" MANDIR="${PREFIX}/man/man" + +MAN8= icbirc.8 +MANCOMPRESSED= maybe + +PLIST_FILES= bin/icbirc + +.include <bsd.port.mk> diff --git a/irc/icbirc/distinfo b/irc/icbirc/distinfo new file mode 100644 index 00000000000..9438214121e --- /dev/null +++ b/irc/icbirc/distinfo @@ -0,0 +1,2 @@ +MD5 (icbirc-1.6.tar.gz) = bf70111c22f13862b75457c7f076a911 +SIZE (icbirc-1.6.tar.gz) = 10936 diff --git a/irc/icbirc/files/patch-icbirc.c b/irc/icbirc/files/patch-icbirc.c new file mode 100644 index 00000000000..2e4a9d19882 --- /dev/null +++ b/irc/icbirc/files/patch-icbirc.c @@ -0,0 +1,22 @@ + +$FreeBSD$ + +--- icbirc.c.orig Wed Aug 20 23:55:59 2003 ++++ icbirc.c Sat Feb 14 23:09:01 2004 +@@ -318,12 +318,12 @@ + done: + if (server_fd >= 0) + close(server_fd); +- printf("(%u seconds, %lu:%lu bytes)\n", +- time(NULL) - t, bytes_out, bytes_in); ++ printf("(%lu seconds, %lu:%lu bytes)\n", ++ (long)time(NULL) - t, bytes_out, bytes_in); + if (terminate_client) + irc_send_notice(client_fd, "Closing connection " +- "(%u seconds, %lu:%lu bytes)", +- time(NULL) - t, bytes_out, bytes_in); ++ "(%lu seconds, %lu:%lu bytes)", ++ (long)time(NULL) - t, bytes_out, bytes_in); + } + + int diff --git a/irc/icbirc/pkg-descr b/irc/icbirc/pkg-descr new file mode 100644 index 00000000000..d045360db4f --- /dev/null +++ b/irc/icbirc/pkg-descr @@ -0,0 +1,9 @@ +icbirc is a proxy that allows to connect an IRC client to an ICB server. +The proxy accepts client connections, connects to the server, and for- +wards data between those two connections. + +Commands from the IRC client are translated to ICB commands and forwarded +to the ICB server. Messages from the ICB server are translated to IRC +messages and forwarded to the IRC client. + +WWW: http://www.benzedrine.cx/icbirc.html |