mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
25422078f4
* Added support for DiG 9.x (BIND 9.0.1) * Replaced internal digparse utility with digstd utility - you call digstd as if it were dig, it calls dig for you with right options for your version and returns results in a standard easy-to-parse format. * Added SRV record support (ala RFC 2052). * Added LOC record support (ala RFC 1876). * Minor speed improvement to axfr * Numerous bug fixes and support for different local host configurations * Updated HOWTOUSE and MANUAL documents PR: ports/53785 Submitted by: Rob Evers <rob@debank.tv> Maintainer timeout: 3 weeks
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
--- Makefile.orig Tue Nov 21 15:24:13 2000
|
|
+++ Makefile Thu Jun 26 17:32:28 2003
|
|
@@ -35,12 +35,12 @@
|
|
# This directory is created, below, if it doesn't exist.
|
|
# "bin" will put it in $LDEST/bin.
|
|
# "bin/domtools" (my favorite) puts it in $LDEST/bin/domtools.
|
|
-DOMBIN=bin/domtools
|
|
+DOMBIN=domtools/bin
|
|
#DOMBIN=bin
|
|
|
|
# Library sub-directory under $LDEST where other files such as awk scripts should go.
|
|
# This directory is created, below, if it doesn't exist.
|
|
-DOMLIB=lib/domtools
|
|
+DOMLIB=domtools/lib
|
|
|
|
# Do you want a world-writable Zone Cache directory, or not?
|
|
# Good points: speeds up the axfr tool substantially.
|
|
@@ -103,7 +103,7 @@
|
|
#OWNER= pab
|
|
|
|
# Group for installing Domtools directories and files.
|
|
-GROUP= bin
|
|
+GROUP= wheel
|
|
#GROUP= staff
|
|
#GROUP= oper
|
|
#GROUP= user
|
|
@@ -118,7 +118,7 @@
|
|
# BSD-style installation command that creates missing parent dirs with "-d dir".
|
|
# You specify use Gnu Install here if you have it.
|
|
# First line is for BSD or SunOS; second is for SysV like Solaris 2.
|
|
-INSTALL=install
|
|
+INSTALL=/usr/bin/install
|
|
#INSTALL=/usr/ucb/install
|
|
#INSTALL=/usr/local/gnu/bin/install
|
|
#INSTALL=/stor/gnu/aix/bin/install
|
|
@@ -148,7 +148,7 @@
|
|
# Regardless of the name, it _must_ be a gnu-based awk.
|
|
# If you don't have gawk, get it and install it; or hosttbl,networktbl,netmasktbl
|
|
# tools won't work right. Gawk is much better than awk or nawk anyway.
|
|
-GAWKPROG=gawk # many systems
|
|
+GAWKPROG=/usr/bin/awk # many systems
|
|
#GAWKPROG=awk # BSDI, Linux
|
|
#GAWKPROG=/usr/local/bin/awk
|
|
|
|
@@ -234,7 +234,7 @@
|
|
# (Very important for BIND 8 users, because zone file format changed)
|
|
# No, we don't want the sticky (text) bit set on this directory.
|
|
-if test $(ZONECACHEWANTED) -eq 1; then \
|
|
- $(INSTALL) -m 777 $(CHOWNOPT) -g $(GROUP) -d $(PDEST)/$(ZONEDIR); \
|
|
+ $(INSTALL) -m 1777 $(CHOWNOPT) -g $(GROUP) -d $(PDEST)/$(ZONEDIR); \
|
|
cd $(PDEST)/$(ZONEDIR) && rm -f * > /dev/null 2>&1; \
|
|
fi
|
|
for i in $(LIBS); do \
|