mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add sheerdns, a master DNS server whose zone records are stored on a
One-Record-Per-File bases. Because of this, sheerdns is the simplest of any DNS to configure, the easiest to update, and the most efficient for networks that experience a lot of updates (for example master servers for dynamic IP address ranges). PR: ports/67241 Submitted by: <bkhl@elektrubadur.se>
This commit is contained in:
parent
fe903ca9af
commit
6b94e4d349
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=110697
5 changed files with 53 additions and 0 deletions
|
@ -62,6 +62,7 @@
|
|||
SUBDIR += py-adns
|
||||
SUBDIR += py-dns
|
||||
SUBDIR += rbldnsd
|
||||
SUBDIR += sheerdns
|
||||
SUBDIR += skadns
|
||||
SUBDIR += sleuth
|
||||
SUBDIR += staticcharge
|
||||
|
|
23
dns/sheerdns/Makefile
Normal file
23
dns/sheerdns/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# New ports collection makefile for: sheerdns
|
||||
# Date created: 26 May 2004
|
||||
# Whom: bkhl
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= sheerdns
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://threading.2038bug.com/sheerdns/
|
||||
|
||||
MAINTAINER= bkhl@elektrubadur.se
|
||||
COMMENT= A light-weight, simple and fast master DNS server
|
||||
|
||||
USE_GMAKE= yes
|
||||
|
||||
MAN8= sheerdns.8
|
||||
PLIST_FILES= sbin/sheerdns sbin/sheerdnshash
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
.include <bsd.port.mk>
|
2
dns/sheerdns/distinfo
Normal file
2
dns/sheerdns/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (sheerdns-1.0.1.tar.gz) = abe66eabbd519e620e4679a2dabd93f1
|
||||
SIZE (sheerdns-1.0.1.tar.gz) = 22335
|
19
dns/sheerdns/files/patch-Makefile
Normal file
19
dns/sheerdns/files/patch-Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- Makefile.orig Sat Apr 12 10:04:41 2003
|
||||
+++ Makefile Wed Jun 2 21:10:14 2004
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
-CFLAGS=-Wall -g -O0 -ansi -pedantic
|
||||
+CFLAGS+=-Wall -ansi -pedantic
|
||||
|
||||
SRCS=$(wildcard *.c)
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
groff -Tps -mandoc sheerdns.8 > sheerdns.ps
|
||||
|
||||
install: all
|
||||
- install sheerdnshash sheerdns /usr/sbin/
|
||||
- install sheerdns.8 /usr/share/man/man8/
|
||||
- install sheerdns.8 /usr/man/man8/
|
||||
+ install sheerdnshash sheerdns ${PREFIX}/sbin/
|
||||
+ install sheerdns.8 ${MANPREFIX}/man/man8/
|
||||
|
8
dns/sheerdns/pkg-descr
Normal file
8
dns/sheerdns/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
sheerdns is a master DNS server whose zone records are stored on a
|
||||
One-Record-Per-File bases. Because of this, sheerdns is the simplest of any DNS
|
||||
to configure, the easiest to update, and the most efficient for networks that
|
||||
experience a lot of updates (for example master servers for dynamic IP address
|
||||
ranges). You never have to restart sheerdns; any updates are available
|
||||
immediately without having to notify the sheerdns process.
|
||||
|
||||
WWW: http://threading.2038bug.com/sheerdns/
|
Loading…
Add table
Reference in a new issue