summaryrefslogtreecommitdiff
path: root/net/dctc
diff options
context:
space:
mode:
authorwiz <wiz>2002-11-11 13:58:25 +0000
committerwiz <wiz>2002-11-11 13:58:25 +0000
commita0b12bd92936f9da61f189f28fa7cfb7c18be732 (patch)
treeb04e411f118cf8b7366c455e56bb1f133659fde9 /net/dctc
parent37bd82850762b47f8bbfbe92691cb68bf4a1fddd (diff)
downloadpkgsrc-a0b12bd92936f9da61f189f28fa7cfb7c18be732.tar.gz
Update to 0.83.8. Changes:
This version fixes compilation problems with old C compilers and with Berkeley DB 4.0. Malformed MyINFO data are handled more gracefully, IGNORE_SLOT_LIMIT properly works now, a program to send DCTC command to running client from a script was added, and a new flag was added to ignore public chat messages from a user.
Diffstat (limited to 'net/dctc')
-rw-r--r--net/dctc/Makefile4
-rw-r--r--net/dctc/PLIST3
-rw-r--r--net/dctc/distinfo7
-rw-r--r--net/dctc/patches/patch-af16
4 files changed, 7 insertions, 23 deletions
diff --git a/net/dctc/Makefile b/net/dctc/Makefile
index e44fce76f2a..fb665bd64dd 100644
--- a/net/dctc/Makefile
+++ b/net/dctc/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2002/11/03 21:31:24 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2002/11/11 13:58:25 wiz Exp $
#
-DISTNAME= dctc-0.83.7
+DISTNAME= dctc-0.83.8
CATEGORIES= net
MASTER_SITES= http://www.ac2i.tzo.com/dctc/
diff --git a/net/dctc/PLIST b/net/dctc/PLIST
index 89a89d755c6..79da7eede86 100644
--- a/net/dctc/PLIST
+++ b/net/dctc/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/09/11 20:47:14 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2002/11/11 13:58:26 wiz Exp $
bin/GDLjoiner
bin/dctc
+bin/dctc_cmd
bin/hublist
man/man1/dctc.1
diff --git a/net/dctc/distinfo b/net/dctc/distinfo
index 71da1612cff..4b2c7168fe1 100644
--- a/net/dctc/distinfo
+++ b/net/dctc/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.7 2002/11/03 21:31:24 wiz Exp $
+$NetBSD: distinfo,v 1.8 2002/11/11 13:58:26 wiz Exp $
-SHA1 (dctc-0.83.7.tar.gz) = 3dbffd79e345254021550063cb31765ad0e69cc3
-Size (dctc-0.83.7.tar.gz) = 251657 bytes
+SHA1 (dctc-0.83.8.tar.gz) = a36638fd36050ee7e07dc18b8d6a4dd6fb3527a8
+Size (dctc-0.83.8.tar.gz) = 253213 bytes
SHA1 (patch-aa) = 68a3ca5f8b7e28717e1a294456be56c846f3c521
SHA1 (patch-ae) = 40e4f5c3929beb1b118a7a8180cdf93a2083e084
-SHA1 (patch-af) = 2fbe9f86bfcf537ac73ccd3c966d685bca91f801
SHA1 (patch-ag) = 61f8cc1cb35312de15dbc43e0ce7d185b7cda88e
SHA1 (patch-ah) = 4d481b1fcb1b32debf44b4506ed39be09d64ae79
SHA1 (patch-ai) = 787fe1e96b03e2ab4ec5de6ccb765e1a4ae9bb5c
diff --git a/net/dctc/patches/patch-af b/net/dctc/patches/patch-af
deleted file mode 100644
index 29d94abc85d..00000000000
--- a/net/dctc/patches/patch-af
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-af,v 1.4 2002/11/03 21:31:24 wiz Exp $
-
---- src/userinfo.c.orig Wed Oct 30 16:49:57 2002
-+++ src/userinfo.c
-@@ -99,10 +99,10 @@ void uinfo_update_user_info(char *nickna
-
- if(idx!=-1)
- {
-- printf("doing: %d\n",idx);
- /* 1) the entry already exists, just update it */
- /* 2) the entry does not exist but there is free space to add it */
- LMP_UINFO *udp=&(((LMP_UINFO*)(local_dctc_user_info_lmp->mapped_addr))[idx]);
-+ printf("doing: %d\n",idx);
- udp->entry_is_busy=1; /* we set it to 1 because it can be an add or an update */
- strncpy_max(udp->nickname,nickname,UINFO_NICK_SIZE);
- sscanf(usize,"%lld",&(udp->share_size));