aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authornaddy <naddy@FreeBSD.org>2004-11-03 07:58:18 +0800
committernaddy <naddy@FreeBSD.org>2004-11-03 07:58:18 +0800
commit28e76dd39e3fd8f2401e20a7aed2e7ae9a9ace66 (patch)
tree6cc832d9d5b2993de76d55b66e59fa193656e0a6 /net
parent952e8882d40e9616c30943bb039ec31942c23dbf (diff)
downloadfreebsd-ports-gnome-28e76dd39e3fd8f2401e20a7aed2e7ae9a9ace66.tar.gz
freebsd-ports-gnome-28e76dd39e3fd8f2401e20a7aed2e7ae9a9ace66.tar.zst
freebsd-ports-gnome-28e76dd39e3fd8f2401e20a7aed2e7ae9a9ace66.zip
Update to 3.6, the first formal release.
Diffstat (limited to 'net')
-rw-r--r--net/openntpd/Makefile9
-rw-r--r--net/openntpd/distinfo4
-rw-r--r--net/openntpd/files/patch-config.c17
3 files changed, 7 insertions, 23 deletions
diff --git a/net/openntpd/Makefile b/net/openntpd/Makefile
index 247b5b932a45..294de51df83a 100644
--- a/net/openntpd/Makefile
+++ b/net/openntpd/Makefile
@@ -6,11 +6,12 @@
#
PORTNAME= openntpd
-PORTVERSION= 20040824p
+PORTVERSION= 3.6p1
+PORTEPOCH= 1
CATEGORIES= net
-MASTER_SITES= http://www.openntpd.org/dist/portable/ \
- http://www.zip.com.au/~dtucker/openntpd/ \
- http://dtucker.freeshell.org/openntpd/
+MASTER_SITES= ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \
+ ftp://ftp.kd85.com/pub/OpenBSD/OpenNTPD/ \
+ ftp://ftp.jp.openbsd.org/pub/OpenBSD/OpenNTPD/
MAINTAINER= naddy@FreeBSD.org
COMMENT= OpenBSD's Network Time Protocol daemon
diff --git a/net/openntpd/distinfo b/net/openntpd/distinfo
index e398e6d3f30c..ab8f16f4b8b7 100644
--- a/net/openntpd/distinfo
+++ b/net/openntpd/distinfo
@@ -1,2 +1,2 @@
-MD5 (openntpd-20040824p.tar.gz) = 21045982ea8183515a683a13d6c17dbd
-SIZE (openntpd-20040824p.tar.gz) = 105638
+MD5 (openntpd-3.6p1.tar.gz) = ba69427e83a9a8080410261af116cdbe
+SIZE (openntpd-3.6p1.tar.gz) = 114924
diff --git a/net/openntpd/files/patch-config.c b/net/openntpd/files/patch-config.c
deleted file mode 100644
index db63ae348861..000000000000
--- a/net/openntpd/files/patch-config.c
+++ /dev/null
@@ -1,17 +0,0 @@
-
-$FreeBSD$
-
---- config.c.orig Fri Aug 20 13:43:20 2004
-+++ config.c Sat Sep 4 04:04:38 2004
-@@ -133,7 +133,11 @@
- if (error) {
- log_warnx("could not parse \"%s\": %s", s,
- gai_strerror(error));
-+#ifdef EAI_NODATA
- if (error == EAI_AGAIN || error == EAI_NODATA)
-+#else
-+ if (error == EAI_AGAIN)
-+#endif
- return (0);
- else
- return (-1);