aboutsummaryrefslogtreecommitdiff
path: root/dns/totd
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2005-07-11 11:50:27 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2005-07-11 11:50:27 +0000
commit3acd19f92e16e8aad50453e2139638106d2006d9 (patch)
tree0ff16a554b51b1e270b71f0d364bf24397a63593 /dns/totd
parentcfa51ce34c2bb94535cac73a04dfc3e4c14f85ed (diff)
downloadports-3acd19f92e16e8aad50453e2139638106d2006d9.tar.gz
ports-3acd19f92e16e8aad50453e2139638106d2006d9.zip
Upgrade to 1.5.1.
Notes
Notes: svn path=/head/; revision=138908
Diffstat (limited to 'dns/totd')
-rw-r--r--dns/totd/Makefile3
-rw-r--r--dns/totd/distinfo4
-rw-r--r--dns/totd/files/patch-conv_stf.c12
-rw-r--r--dns/totd/files/patch-ev_signal.c13
-rw-r--r--dns/totd/files/patch-ne_mesg.c30
-rw-r--r--dns/totd/files/patch-tcp_response.c12
6 files changed, 3 insertions, 71 deletions
diff --git a/dns/totd/Makefile b/dns/totd/Makefile
index c8e2a166a470..38121c0f656e 100644
--- a/dns/totd/Makefile
+++ b/dns/totd/Makefile
@@ -5,8 +5,7 @@
# $FreeBSD$
PORTNAME= totd
-PORTVERSION= 1.5
-PORTREVISION= 1
+PORTVERSION= 1.5.1
CATEGORIES= dns ipv6
MASTER_SITES= ftp://ftp.pasta.cs.uit.no/pub/Vermicelli/
diff --git a/dns/totd/distinfo b/dns/totd/distinfo
index 65f670f06870..ed89b8b2a27e 100644
--- a/dns/totd/distinfo
+++ b/dns/totd/distinfo
@@ -1,2 +1,2 @@
-MD5 (totd-1.5.tar.gz) = b7da63fc1ea1b2e2ce959732826bc146
-SIZE (totd-1.5.tar.gz) = 237043
+MD5 (totd-1.5.1.tar.gz) = 7edaedae9f6aca5912dd6c123582cf08
+SIZE (totd-1.5.1.tar.gz) = 235809
diff --git a/dns/totd/files/patch-conv_stf.c b/dns/totd/files/patch-conv_stf.c
deleted file mode 100644
index e31ed941a98f..000000000000
--- a/dns/totd/files/patch-conv_stf.c
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ru work/totd-1.3/conv_stf.c work~/totd-1.3/conv_stf.c
---- conv_stf.c.orig Mon Mar 4 04:34:10 2002
-+++ conv_stf.c Sat Jun 14 22:16:03 2003
-@@ -94,7 +94,7 @@
- owner_len, owner, rrl);
- rr_list_free (rrl);
-
-- syslog (LOG_DEBUG, "%s: rrs_new %x", fn, (unsigned int) rrs_new);
-+ syslog (LOG_DEBUG, "%s: rrs_new %p", fn, rrs_new);
- return (rrs_new);
- }
-
diff --git a/dns/totd/files/patch-ev_signal.c b/dns/totd/files/patch-ev_signal.c
deleted file mode 100644
index d271603be93c..000000000000
--- a/dns/totd/files/patch-ev_signal.c
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: ev_signal.c
-diff -u ev_signal.c.orig ev_signal.c
---- ev_signal.c.orig Thu Sep 7 05:28:36 2000
-+++ ev_signal.c Sun Nov 18 08:58:10 2001
-@@ -94,7 +94,7 @@
- SIGINT, ev_signal_initiator_generic, ev_handler_cleanup
- },
- {
-- SIGHUP, ev_signal_initiator_generic, ev_handler_cleanup
-+ SIGHUP, SIG_IGN, NULL
- },
- {
- SIGTERM, ev_signal_initiator_generic, ev_handler_cleanup
diff --git a/dns/totd/files/patch-ne_mesg.c b/dns/totd/files/patch-ne_mesg.c
deleted file mode 100644
index 64c488c0994a..000000000000
--- a/dns/totd/files/patch-ne_mesg.c
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -ru work/totd-1.3/ne_mesg.c work~/totd-1.3/ne_mesg.c
---- ne_mesg.c.orig Wed Mar 6 06:56:02 2002
-+++ ne_mesg.c Sat Jun 14 22:17:24 2003
-@@ -59,7 +59,7 @@
-
- /* write qname */
- if (T.debug > 4)
-- syslog (LOG_DEBUG, "%s: qname offset = %d", fn, ucp - buf);
-+ syslog (LOG_DEBUG, "%s: qname offset = %d", fn, (int)(ucp - buf));
-
- i = dname_copy (qname, ucp, buflen - written_len);
- if (i < 0)
-@@ -71,7 +71,7 @@
- /* write qtype / qclass */
- if (T.debug > 4)
- syslog (LOG_DEBUG, "%s: qtype/qclass offset = %d",
-- fn, ucp - buf);
-+ fn, (int)(ucp - buf));
-
- written_len += sizeof (uint16_t) * 2;
- if (written_len > buflen)
-@@ -232,7 +232,7 @@
- }
-
- if (T.debug > 4)
-- syslog (LOG_DEBUG, "%s: return %d", fn, *wp - wp_start);
-+ syslog (LOG_DEBUG, "%s: return %d", fn, (int)(*wp - wp_start));
-
- return (*wp - wp_start);
- }
diff --git a/dns/totd/files/patch-tcp_response.c b/dns/totd/files/patch-tcp_response.c
deleted file mode 100644
index 88f38c92e97b..000000000000
--- a/dns/totd/files/patch-tcp_response.c
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ru work/totd-1.3/tcp_response.c work~/totd-1.3/tcp_response.c
---- tcp_response.c.orig Wed Mar 6 06:56:03 2002
-+++ tcp_response.c Sat Jun 14 22:17:56 2003
-@@ -116,7 +116,7 @@
- cont->wp += len;
- if (cont->wp < (cont->mesg.p + cont->mesg_len)) {
- syslog (LOG_DEBUG, "%s: left %d bytes -- continue.", fn,
-- (cont->mesg.p + cont->mesg_len) - cont->wp);
-+ (int)((cont->mesg.p + cont->mesg_len) - cont->wp));
-
- /* SUCCESS */
- return 0; /* the processing continues ... */