diff options
author | sergei <sergei@FreeBSD.org> | 2004-11-24 00:19:36 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2004-11-24 00:19:36 +0800 |
commit | bbbcd6f068d1f9cde9399b76b9ebf3de476586c7 (patch) | |
tree | 20d0621eed5e7f22a79f1b58943e1355632327bb | |
parent | 6e7b16138acc7f5309cdd0c0879f211d0d6715d6 (diff) | |
download | freebsd-ports-gnome-bbbcd6f068d1f9cde9399b76b9ebf3de476586c7.tar.gz freebsd-ports-gnome-bbbcd6f068d1f9cde9399b76b9ebf3de476586c7.tar.zst freebsd-ports-gnome-bbbcd6f068d1f9cde9399b76b9ebf3de476586c7.zip |
- Update to 1.2
PR: ports/73296
Submitted by: Andrey Slusar <anray@inet.ua>
Approved by: maintainer timeout (3 weeks)
-rw-r--r-- | dns/pdnsd/Makefile | 5 | ||||
-rw-r--r-- | dns/pdnsd/distinfo | 4 | ||||
-rw-r--r-- | dns/pdnsd/files/patch-src_conff.h | 12 | ||||
-rw-r--r-- | dns/pdnsd/files/patch-src_dns.h | 12 |
4 files changed, 29 insertions, 4 deletions
diff --git a/dns/pdnsd/Makefile b/dns/pdnsd/Makefile index 7fe52a1fa543..fbadb0ddcd0c 100644 --- a/dns/pdnsd/Makefile +++ b/dns/pdnsd/Makefile @@ -6,9 +6,9 @@ # PORTNAME= pdnsd -PORTVERSION= 1.1.11a +PORTVERSION= 1.2 CATEGORIES= dns -MASTER_SITES= http://www.phys.uu.nl/~rombouts/pdnsd/ +MASTER_SITES= http://www.phys.uu.nl/~rombouts/pdnsd/releases/ DISTNAME= ${PORTNAME}-${PORTVERSION}-par MAINTAINER= ports@oven.org @@ -20,6 +20,7 @@ CONFIGURE_ARGS= --with-cachedir=${PDNSDB} \ --enable-ipv6 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +MAN5= pdnsd.conf.5 MAN8= pdnsd.8 pdnsd-ctl.8 PDNSDB= /var/db/pdnsd diff --git a/dns/pdnsd/distinfo b/dns/pdnsd/distinfo index 0ed0e5942a7d..33e04b9b486d 100644 --- a/dns/pdnsd/distinfo +++ b/dns/pdnsd/distinfo @@ -1,2 +1,2 @@ -MD5 (pdnsd-1.1.11a-par.tar.gz) = 2caf6335b92e0955f07af9bd9d429443 -SIZE (pdnsd-1.1.11a-par.tar.gz) = 305135 +MD5 (pdnsd-1.2-par.tar.gz) = 0ddcc8c1a3e6301df1a18ad320260d67 +SIZE (pdnsd-1.2-par.tar.gz) = 345082 diff --git a/dns/pdnsd/files/patch-src_conff.h b/dns/pdnsd/files/patch-src_conff.h new file mode 100644 index 000000000000..a6c0e1e186b9 --- /dev/null +++ b/dns/pdnsd/files/patch-src_conff.h @@ -0,0 +1,12 @@ +--- src/conff.h.orig Fri Oct 29 01:11:36 2004 ++++ src/conff.h Fri Oct 29 01:12:36 2004 +@@ -32,6 +32,9 @@ + #include <config.h> + #include <stdio.h> + #include <pthread.h> ++#if TARGET==TARGET_BSD ++#include <sys/socket.h> ++#endif + #include <net/if.h> + #include "ipvers.h" + #include "list.h" diff --git a/dns/pdnsd/files/patch-src_dns.h b/dns/pdnsd/files/patch-src_dns.h new file mode 100644 index 000000000000..c424e1ac1787 --- /dev/null +++ b/dns/pdnsd/files/patch-src_dns.h @@ -0,0 +1,12 @@ +--- src/dns.h.orig Fri Oct 29 01:03:35 2004 ++++ src/dns.h Fri Oct 29 01:04:55 2004 +@@ -27,6 +27,9 @@ + + #include <config.h> + #include <arpa/inet.h> ++#if TARGET==TARGET_BSD ++#include <sys/socket.h> ++#endif + #include <net/if.h> + #include <sys/types.h> + #include <inttypes.h> |