summaryrefslogtreecommitdiff
path: root/net/bind9
AgeCommit message (Collapse)AuthorFilesLines
2006-03-22Add DragonFly support.joerg3-6/+53
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-3/+3
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-08-23The real user name in PKG_USERS does not need to be escaped with doublerillig1-2/+2
backslashes anymore. A single backslash is enough. Changed the definition in all affected packages. For those that are not caught, an additional check is placed into bsd.pkginstall.mk.
2005-07-05whitespace fixesgrant1-2/+7
2005-07-05- fix two typosgrant1-4/+4
- s/change root/chroot/ for clarity - punctuation fixes
2005-06-26Fix the detection of bind on systems where it's available natively.jlam1-9/+17
This bug was introduced in revision 1.7 where bind was determined to be built-in only if libbind.* existed on the system, which isn't necessarily true on systems where the resolver routines are incorporated into libc, e.g. NetBSD. We now consider bind to be built-in if BUILTIN_VERSION.bind is defined, and we define BUILTIN_VERSION.bind only if /usr/sbin/named exists on the system. We also improve the derivation of the version number of BIND by parsing the named output, so we can now also detect bind-4.x and bind-8.x.
2005-06-02Check that a variable is defined before using it.jlam1-2/+3
2005-06-01Don't set "DIST_SUBDIR". BIND 9.x archives include the version number.tron2-6/+5
2005-06-01Update "bind" package to version 9.3.1. Changes since version 9.3.0:tron3-17/+9
BIND 9.3.1 is a maintenance release, containing fixes for a number of bugs in 9.3.0. libbind: corresponds to that from BIND 8.4.6-REL.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-22/+70
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-17Use RCD_SCRIPTS_SHELL. Script now works on Solaris.sketch1-2/+2
2005-05-03Sort.wiz1-2/+2
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+3
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-18- Incooperate change root non-root support from NetBSD's "/etc/rc.d/named"tron3-8/+45
into "named9.sh". - Create a user and a group "named" for running the name server. - Add a message file which encourages to run the name server in a change root non-root configuration. This address PR pkg/14876 by Greg A. Woods. Bump package revision because of the above changes.
2005-03-16- Rename rc script "named" to "named9" to avoid conflicts with NetBSD'stron4-5/+21
builtin script. - Don't set "pidfile" in "named9.sh" because it breaks change rooted configurations. - Disable inlining in "lib/dns/rbt.c" on PowerPC systems because certain GCC version create broken code for that file. Bump package revision because of the above changes.
2005-03-15- Reorder assignment to fix "pkglint" warnings.tron2-18/+8
- Use RCD_SCRIPTS mechanism to install startup scripts as suggested by Greg A. Woods in PR pkg/19099.
2005-03-15Add missing RCS Ids.tron3-3/+7
2005-03-15Improve description as suggested by Greg A. Woods in PR pkg/19099.tron1-14/+19
2005-02-24Add RMD160 digests.agc1-1/+3
2005-01-26Apply ISC patch to fix a potential DoS in BIND 9.3.0 reported in VU#938617.tron2-4/+10
Bump package version number to 9.3.0pl1 because of this.
2004-12-29Use VARBASE.minskim1-2/+2
2004-12-18BIND 9.3.0 dies right after launch on VAX and m68k when threading isjklos1-2/+4
enabled. Until this is fixed, we'll turn off threading for VAX and m68k. PowerPC has some other issue, and i386 and SPARC appear to work fine with threading.
2004-10-03Update "bind9" package to version 9.3.0. Changes since version 9.2.3:tron14-194/+175
- DNSSEC is now DS based (RFC 3658). See also RFC 3845, doc/draft/draft-ietf-dnsext-dnssec-*. - DNSSEC lookaside validation. - check-names is now implemented. - rrset-order in more complete. - IPv4/IPv6 transition support, dual-stack-servers. - IXFR deltas can now be generated when loading master files, ixfr-from-differences. - It is now possible to specify the size of a journal, max-journal-size. - It is now possible to define a named set of master servers to be used in masters clause, masters. - The advertised EDNS UDP size can now be set, edns-udp-size. allow-v6-synthesis has been obsoleted. NOTE: * Zones containing MD and MF will now be rejected. * dig, nslookup name. now report "Not Implemented" as NOTIMP rather than NOTIMPL. This will have impact on scripts that are looking for NOTIMPL. - libbind: corresponds to that from BIND 8.4.5.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-4/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-30Only set "BUILDLINK_LDADD.bind" if we are really using the "bind9" ortron2-3/+6
"bind9-current" package.
2004-09-23Favor using BUILDLINK_INCDIRS.<pkg> instead of BUILDLINK_CPPFLAGS.<pkg>jlam1-3/+4
to add directories to the header search path. Also, use BUILDLINK_LDADD.<pkg>, which currently doesn't do anything yet, but will some time soon.
2004-09-22Set "BUILDLINK_LDFLAGS.bind" to "-lbind" to make sure that programs ortron1-1/+2
libraries get linked with the BIND 9 resolver library.
2004-09-22Map "include/bind" to "include" in the buildlink area so that programstron1-1/+3
will pickup the BIND 9 version of e.g. "arpa/nameser.h".
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-25/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam1-2/+2
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-07-19Do package version handling properly.markd1-2/+16
2004-07-19Cleanup whitespace.markd1-7/+7
2004-07-18Redo original bind version test in way that doesnt result in a makemarkd1-3/+3
warning about null output from shell. We don't want to get a version number for bind versions older that 9 as that complicates the later tests.
2004-07-18Fix BIND version test to work with pre BIND 9 versions in NetBSD.tron1-2/+2
2004-07-17Add builtin.mk to allow use of bind9 from the base OS.markd1-0/+16
2004-05-18Make this build under NetBSD 2.0E and newer.tron2-1/+15
2004-05-07Add RCS tagscjep3-0/+3
2004-04-15Remove unused buildlink2 files (before somebody starts to use them again).tron1-36/+0
2004-04-15Require version 9.2.3nb4 or newer of the "bind9" package because previoustron2-4/+4
versions were incomplete.
2004-04-15Bump package revision after recent package list changes because oldertron1-3/+2
version of the package miss an important shared library.
2004-04-15Fix ordering of package list entries, files should be listed beforetron1-6/+6
"@dirrm" commands.
2004-04-14Convert to buildlink3.snj2-4/+25
2004-04-07Missing files in PLISTmanu1-1/+5
2004-04-07Fogotten changed file in last commitsmanu2-3/+6
2004-04-06I forgot to cvs add a patch. Also a missing file in PLISTmanu1-0/+12
2004-04-06Build and install BIND9 resolver in ${prefix}/include/bind/ andmanu5-5/+83
${prefix}/lib/libbind.a , just like the BIND8 package does.
2004-04-01Include "sys/param.h" before "sys/sysctl.h" (as documented) on NetBSD totron2-1/+16
fix build failure in (at least) NetBSD 2.0B.