summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-11-03 21:31:24 +0000
committerwiz <wiz@pkgsrc.org>2002-11-03 21:31:24 +0000
commit6beb459a702c73c6e8bc8e6f503c7da67ad97fe1 (patch)
treefe4cd60367c6b8f61cc6f9f9ed48ed3e0b0d934c /net
parente9b90930743ef38ee3de0525e075df4426f95c21 (diff)
downloadpkgsrc-6beb459a702c73c6e8bc8e6f503c7da67ad97fe1.tar.gz
Update to 0.83.7:
Fixed a compilation problem with Berkeley DB4, updated the man page, and added the ability to start a program when a GDL ends. Downloading the hublist no longer hangs the GUI, automatic generation of autoscan patterns was added, and a problem with missing translation files in the RPM was fixed.
Diffstat (limited to 'net')
-rw-r--r--net/dctc/Makefile4
-rw-r--r--net/dctc/distinfo7
-rw-r--r--net/dctc/patches/patch-af16
3 files changed, 22 insertions, 5 deletions
diff --git a/net/dctc/Makefile b/net/dctc/Makefile
index 64240230100..e44fce76f2a 100644
--- a/net/dctc/Makefile
+++ b/net/dctc/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2002/10/21 01:35:13 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2002/11/03 21:31:24 wiz Exp $
#
-DISTNAME= dctc-0.83.6
+DISTNAME= dctc-0.83.7
CATEGORIES= net
MASTER_SITES= http://www.ac2i.tzo.com/dctc/
diff --git a/net/dctc/distinfo b/net/dctc/distinfo
index 6b5a5f02b5e..71da1612cff 100644
--- a/net/dctc/distinfo
+++ b/net/dctc/distinfo
@@ -1,9 +1,10 @@
-$NetBSD: distinfo,v 1.6 2002/10/21 01:35:13 wiz Exp $
+$NetBSD: distinfo,v 1.7 2002/11/03 21:31:24 wiz Exp $
-SHA1 (dctc-0.83.6.tar.gz) = b95c2a4253a657c6e791ee2cc53b610d94cac1de
-Size (dctc-0.83.6.tar.gz) = 248612 bytes
+SHA1 (dctc-0.83.7.tar.gz) = 3dbffd79e345254021550063cb31765ad0e69cc3
+Size (dctc-0.83.7.tar.gz) = 251657 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
new file mode 100644
index 00000000000..29d94abc85d
--- /dev/null
+++ b/net/dctc/patches/patch-af
@@ -0,0 +1,16 @@
+$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));