summaryrefslogtreecommitdiff
path: root/net/dctc
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-10-21 01:35:13 +0000
committerwiz <wiz@pkgsrc.org>2002-10-21 01:35:13 +0000
commit0084d986c135af7c20d9908ecc45e30acc463025 (patch)
tree9b8d2be05e6644b8c12966c6e4d79457a45a7cca /net/dctc
parent1f58a377087583373bf779482326ee037801a958 (diff)
downloadpkgsrc-0084d986c135af7c20d9908ecc45e30acc463025.tar.gz
Upgrade to 0.83.6. Two patches have been integrated.
Changes: A Berkeley DB detection problem on NetBSD was fixed, a command to set the range of ports to use for autoscan was added, and search capabilites were added to the user file list tab. In the GUI, nickname sort can now be case sensitive or insensitive.
Diffstat (limited to 'net/dctc')
-rw-r--r--net/dctc/Makefile4
-rw-r--r--net/dctc/distinfo8
-rw-r--r--net/dctc/patches/patch-ab24
-rw-r--r--net/dctc/patches/patch-ac75
4 files changed, 5 insertions, 106 deletions
diff --git a/net/dctc/Makefile b/net/dctc/Makefile
index 9a139e6cf48..64240230100 100644
--- a/net/dctc/Makefile
+++ b/net/dctc/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2002/10/03 11:24:33 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2002/10/21 01:35:13 wiz Exp $
#
-DISTNAME= dctc-0.83.5
+DISTNAME= dctc-0.83.6
CATEGORIES= net
MASTER_SITES= http://www.ac2i.tzo.com/dctc/
diff --git a/net/dctc/distinfo b/net/dctc/distinfo
index f93524f929d..6b5a5f02b5e 100644
--- a/net/dctc/distinfo
+++ b/net/dctc/distinfo
@@ -1,10 +1,8 @@
-$NetBSD: distinfo,v 1.5 2002/10/03 12:19:12 wiz Exp $
+$NetBSD: distinfo,v 1.6 2002/10/21 01:35:13 wiz Exp $
-SHA1 (dctc-0.83.5.tar.gz) = 804e1924e5441dbcf0650971149c5d206683bf9f
-Size (dctc-0.83.5.tar.gz) = 247418 bytes
+SHA1 (dctc-0.83.6.tar.gz) = b95c2a4253a657c6e791ee2cc53b610d94cac1de
+Size (dctc-0.83.6.tar.gz) = 248612 bytes
SHA1 (patch-aa) = 68a3ca5f8b7e28717e1a294456be56c846f3c521
-SHA1 (patch-ab) = f08863a3f83cd556a7d48793df465c8f4b3c7bd6
-SHA1 (patch-ac) = 9f7bfd4439026a2a12a8290c0d30db91daacb666
SHA1 (patch-ae) = 40e4f5c3929beb1b118a7a8180cdf93a2083e084
SHA1 (patch-ag) = 61f8cc1cb35312de15dbc43e0ce7d185b7cda88e
SHA1 (patch-ah) = 4d481b1fcb1b32debf44b4506ed39be09d64ae79
diff --git a/net/dctc/patches/patch-ab b/net/dctc/patches/patch-ab
deleted file mode 100644
index 6bd130c0b30..00000000000
--- a/net/dctc/patches/patch-ab
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2002/10/03 12:19:12 wiz Exp $
-
---- configure.in.orig Sun Sep 22 08:39:55 2002
-+++ configure.in
-@@ -90,6 +90,11 @@ if test "x$manu_db" = "xyes"; then
- AC_SUBST(berkeleydb_libs)
- berkeleydb_libs="-ldb-4.0"
- else
-+ AC_CHECK_LIB(db4,db_env_create,HAVE_DB40=yes)
-+ if test "x$HAVE_DB40" = "xyes"; then
-+ AC_SUBST(berkeleydb_libs)
-+ berkeleydb_libs="-ldb4"
-+ else
- AC_CHECK_LIB(db-3.3,db_env_create,HAVE_DB33=yes)
- if test "x$HAVE_DB33" = "xyes"; then
- AC_SUBST(berkeleydb_libs)
-@@ -120,6 +125,7 @@ if test "x$manu_db" = "xyes"; then
- fi
- fi
- fi
-+ fi
- fi
- fi
- else
diff --git a/net/dctc/patches/patch-ac b/net/dctc/patches/patch-ac
deleted file mode 100644
index 6f8baff9737..00000000000
--- a/net/dctc/patches/patch-ac
+++ /dev/null
@@ -1,75 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2002/10/03 12:19:12 wiz Exp $
-
---- configure.orig Sun Sep 22 18:28:09 2002
-+++ configure
-@@ -873,7 +873,7 @@ fi
-
-
-
--for ac_prog in gawk mawk nawk awk
-+for ac_prog in mawk gawk nawk awk
- do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
-@@ -1904,8 +1904,52 @@ fi
-
- berkeleydb_libs="-ldb-4.0"
- else
-+ echo $ac_n "checking for db_env_create in -ldb4""... $ac_c" 1>&6
-+echo "configure:1909: checking for db_env_create in -ldb4" >&5
-+ac_lib_var=`echo db4'_'db_env_create | sed 'y%./+-%__p_%'`
-+if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
-+ echo $ac_n "(cached) $ac_c" 1>&6
-+else
-+ ac_save_LIBS="$LIBS"
-+LIBS="-ldb4 $LIBS"
-+cat > conftest.$ac_ext <<EOF
-+#line 1917 "configure"
-+#include "confdefs.h"
-+/* Override any gcc2 internal prototype to avoid an error. */
-+/* We use char because int might match the return type of a gcc2
-+ builtin and then its argument prototype would still apply. */
-+char db_env_create();
-+
-+int main() {
-+db_env_create()
-+; return 0; }
-+EOF
-+if { (eval echo configure:1928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+ rm -rf conftest*
-+ eval "ac_cv_lib_$ac_lib_var=yes"
-+else
-+ echo "configure: failed program was:" >&5
-+ cat conftest.$ac_ext >&5
-+ rm -rf conftest*
-+ eval "ac_cv_lib_$ac_lib_var=no"
-+fi
-+rm -f conftest*
-+LIBS="$ac_save_LIBS"
-+
-+fi
-+if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
-+ echo "$ac_t""yes" 1>&6
-+ HAVE_DB40=yes
-+else
-+ echo "$ac_t""no" 1>&6
-+fi
-+
-+ if test "x$HAVE_DB40" = "xyes"; then
-+
-+ berkeleydb_libs="-ldb4"
-+ else
- echo $ac_n "checking for db_env_create in -ldb-3.3""... $ac_c" 1>&6
--echo "configure:1909: checking for db_env_create in -ldb-3.3" >&5
-+echo "configure:1953: checking for db_env_create in -ldb-3.3" >&5
- ac_lib_var=`echo db-3.3'_'db_env_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2091,6 +2135,7 @@ fi
- fi
- fi
- fi
-+ fi
- fi
- else
- echo $ac_n "checking Berkeley Database library version""... $ac_c" 1>&6