diff options
author | dougb <dougb@FreeBSD.org> | 2004-09-25 00:42:38 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2004-09-25 00:42:38 +0000 |
commit | 45457fa40bf7b662b3d05b57fc85f53b24c5848e (patch) | |
tree | 7a7d6f8e77c68bc2b877cfcd14b688b272b33929 /share/doc | |
parent | fc1ae4d927fb9c28bfbf93ae9b1f027a96765d36 (diff) | |
download | FreeBSD-src-45457fa40bf7b662b3d05b57fc85f53b24c5848e.zip FreeBSD-src-45457fa40bf7b662b3d05b57fc85f53b24c5848e.tar.gz |
Install the documentation for bind9, and remove the /usr/share/doc/bind
directory from mtree while we're at it.
Help, advice, and code from: ru, des
Diffstat (limited to 'share/doc')
-rw-r--r-- | share/doc/Makefile | 6 | ||||
-rw-r--r-- | share/doc/bind9/Makefile | 22 |
2 files changed, 27 insertions, 1 deletions
diff --git a/share/doc/Makefile b/share/doc/Makefile index 20fe279..7876ae8 100644 --- a/share/doc/Makefile +++ b/share/doc/Makefile @@ -1,7 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -SUBDIR= IPv6 papers psd smm usd +SUBDIR= IPv6 ${_bind9} papers psd smm usd + +.if !defined(NO_BIND) +_bind9= bind9 +.endif # Default output format for troff documents is ascii. # To generate postscript versions of troff documents, use: diff --git a/share/doc/bind9/Makefile b/share/doc/bind9/Makefile new file mode 100644 index 0000000..6fe2bc6 --- /dev/null +++ b/share/doc/bind9/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +BIND_DIR= ${.CURDIR}/../../../contrib/bind9 +SRCDIR= ${BIND_DIR}/doc + +.PATH: ${BIND_DIR} ${SRCDIR}/arm ${SRCDIR}/misc + +NOOBJ= noobj + +FILESGROUPS= TOP ARM MISC +TOP= CHANGES COPYRIGHT FAQ KNOWN_DEFECTS README +TOPDIR= ${DOCDIR}/bind9 +ARM= Bv9ARM.ch01.html Bv9ARM.ch02.html Bv9ARM.ch03.html \ + Bv9ARM.ch04.html Bv9ARM.ch05.html Bv9ARM.ch06.html \ + Bv9ARM.ch07.html Bv9ARM.ch08.html Bv9ARM.ch09.html \ + Bv9ARM.html +ARMDIR= ${TOPDIR}/arm +MISC= dnssec format-options.pl ipv6 migration migration-4to9 \ + options rfc-compliance roadmap sdb +MISCDIR= ${TOPDIR}/misc + +.include <bsd.prog.mk> |