aboutsummaryrefslogtreecommitdiff
path: root/net/openntpd
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2004-11-02 23:58:18 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2004-11-02 23:58:18 +0000
commitbc4a68140eca0afdd6f9a3b185d61d4f610fa6a0 (patch)
tree42763c9947c1f07006be35304acdc25323435154 /net/openntpd
parenta84ce9020a279c97c6b6a5e1174af617d5740093 (diff)
downloadports-bc4a68140eca0afdd6f9a3b185d61d4f610fa6a0.tar.gz
ports-bc4a68140eca0afdd6f9a3b185d61d4f610fa6a0.zip
Update to 3.6, the first formal release.
Notes
Notes: svn path=/head/; revision=120675
Diffstat (limited to 'net/openntpd')
-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);