summaryrefslogtreecommitdiffstats
path: root/tools/build
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
committersjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
commit65145fa4c81da358fcbc3b650156dab705dfa34e (patch)
tree55c065b6730aaac2afb6c29933ee6ec5fa4c4249 /tools/build
parent60ff4eb0dff94a04d75d0d52a3957aaaf5f8c693 (diff)
parente6b664c390af88d4a87208bc042ce503da664c3b (diff)
downloadFreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.zip
FreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.tar.gz
Merge sync of head
Diffstat (limited to 'tools/build')
-rw-r--r--tools/build/Makefile8
-rwxr-xr-xtools/build/check-links.sh124
-rw-r--r--tools/build/mk/OptionalObsoleteFiles.inc3944
-rw-r--r--tools/build/options/WITHOUT_AUTOFS4
-rw-r--r--tools/build/options/WITHOUT_BHYVE6
-rw-r--r--tools/build/options/WITHOUT_BOOTPARAMD3
-rw-r--r--tools/build/options/WITHOUT_BOOTPD3
-rw-r--r--tools/build/options/WITHOUT_BSDINSTALL5
-rw-r--r--tools/build/options/WITHOUT_CCD4
-rw-r--r--tools/build/options/WITHOUT_CROSS_COMPILER6
-rw-r--r--tools/build/options/WITHOUT_CXX2
-rw-r--r--tools/build/options/WITHOUT_EE5
-rw-r--r--tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS9
-rw-r--r--tools/build/options/WITHOUT_FILE4
-rw-r--r--tools/build/options/WITHOUT_FINGER5
-rw-r--r--tools/build/options/WITHOUT_FTP5
-rw-r--r--tools/build/options/WITHOUT_GPIB2
-rw-r--r--tools/build/options/WITHOUT_HAST4
-rw-r--r--tools/build/options/WITHOUT_INCLUDES3
-rw-r--r--tools/build/options/WITHOUT_INETD3
-rw-r--r--tools/build/options/WITHOUT_ISCSI4
-rw-r--r--tools/build/options/WITHOUT_RADIUS_SUPPORT5
-rw-r--r--tools/build/options/WITHOUT_RBOOTD3
-rw-r--r--tools/build/options/WITHOUT_RCS7
-rw-r--r--tools/build/options/WITHOUT_SYSCALL_COMPAT2
-rw-r--r--tools/build/options/WITHOUT_TALK5
-rw-r--r--tools/build/options/WITHOUT_TCP_WRAPPERS4
-rw-r--r--tools/build/options/WITHOUT_TFTP5
-rw-r--r--tools/build/options/WITHOUT_TIMED3
-rw-r--r--tools/build/options/WITHOUT_WARNS2
-rw-r--r--tools/build/options/WITH_FMAKE2
-rw-r--r--tools/build/options/WITH_INFO4
-rw-r--r--tools/build/stdlib.h42
33 files changed, 4043 insertions, 194 deletions
diff --git a/tools/build/Makefile b/tools/build/Makefile
index 6aead63..2617d8d 100644
--- a/tools/build/Makefile
+++ b/tools/build/Makefile
@@ -25,6 +25,14 @@ CFLAGS+= -I${.CURDIR}/../../contrib/libc-vis \
-I${.CURDIR}/../../lib/libc/include
.endif
+_WITH_REALLOCARRAY!= grep -c reallocarray /usr/include/stdlib.h || true
+.if ${_WITH_REALLOCARRAY} == 0
+.PATH: ${.CURDIR}/../../lib/libc/stdlib
+INCS+= stdlib.h
+SRCS+= reallocarray.c
+CFLAGS+= -I${.CURDIR}/../../lib/libc/include
+.endif
+
.if empty(SRCS)
SRCS= dummy.c
.endif
diff --git a/tools/build/check-links.sh b/tools/build/check-links.sh
index 28e52b5..57c9437 100755
--- a/tools/build/check-links.sh
+++ b/tools/build/check-links.sh
@@ -1,37 +1,111 @@
#!/bin/sh
# $FreeBSD$
-mime=$(file --mime-type $1)
+libkey() {
+ libkey="lib_symbols_$1"
+ patterns=[.+,/-]
+ replacement=_
+ while :; do
+ case " ${libkey} " in
+ *${patterns}*)
+ libkey="${libkey%%${patterns}*}${replacement}${libkey#*${patterns}}"
+ ;;
+ *)
+ break
+ ;;
+ esac
+ done
+ return 0
+}
+
+ret=0
+CHECK_UNRESOLVED=1
+VERBOSE_RESOLVED=0
+while getopts "Uv" flag; do
+ case "${flag}" in
+ U) CHECK_UNRESOLVED=0 ;;
+ v) VERBOSE_RESOLVED=1 ;;
+ esac
+done
+shift $((OPTIND-1))
+
+mime=$(file -L --mime-type $1)
+isbin=0
case $mime in
-*application/x-executable);;
+*application/x-executable) isbin=1 ;;
*application/x-sharedlib);;
*) echo "Not an elf file" >&2 ; exit 1;;
esac
+# Gather all symbols from the target
+unresolved_symbols=$(nm -u -D --format=posix "$1" | awk '$2 == "U" {print $1}' | tr '\n' ' ')
+[ ${isbin} -eq 1 ] && bss_symbols=$(nm -D --format=posix "$1" | awk '$2 == "B" && $4 != "" {print $1}' | tr '\n' ' ')
+ldd_libs=$(ldd $(realpath $1) | awk '{print $1 ":" $3}')
+
# Check for useful libs
-list_libs=""
-for lib in $(readelf -d $1 | awk '$2 == "(NEEDED)" { sub(/\[/,"",$NF); sub(/\]/,"",$NF); print $NF }'); do
- echo -n "checking if $lib is needed: "
- libpath=$(ldd $1 | awk -v lib=$lib '$1 == lib { print $3 }')
- list_libs="$list_libs $libpath"
- foundone=0
- for fct in $(nm -D $libpath | awk '$2 == "T" || $2 == "W" || $2 == "B" { print $3 }'); do
- nm -D $1 | awk -v s=$fct '$1 == "U" && $2 == s { found=1 ; exit } END { if (found != 1) { exit 1 } }' && foundone=1 && break
- done
- if [ $foundone -eq 1 ]; then
- echo "yes"
- else
- echo "no"
- fi
+list_libs=
+resolved_symbols=
+for lib in $(readelf -d $1 | awk '$2 ~ /\(?NEEDED\)?/ { sub(/\[/,"",$NF); sub(/\]/,"",$NF); print $NF }'); do
+ echo -n "checking if $lib is needed: "
+ if [ -n "${lib##/*}" ]; then
+ for libpair in ${ldd_libs}; do
+ case "${libpair}" in
+ ${lib}:*) libpath="${libpair#*:}" && break ;;
+ esac
+ done
+ else
+ libpath="${lib}"
+ fi
+ list_libs="$list_libs $lib"
+ foundone=
+ lib_symbols="$(nm -D --defined-only --format=posix "${libpath}" | awk '$2 ~ /C|R|D|T|W|B|V/ {print $1}' | tr '\n' ' ')"
+ if [ ${CHECK_UNRESOLVED} -eq 1 ]; then
+ # Save the global symbols for this lib
+ libkey "${lib}"
+ setvar "${libkey}" "${lib_symbols}"
+ fi
+ for fct in ${lib_symbols}; do
+ case " ${unresolved_symbols} ${bss_symbols} " in
+ *\ ${fct}\ *) foundone="${fct}" && break ;;
+ esac
+ done
+ if [ -n "${foundone}" ]; then
+ echo "yes... ${foundone}"
+ else
+ echo "no"
+ ret=1
+ fi
done
-for sym in $(nm -D $1 | awk '$1 == "U" { print $2 }'); do
- found=0
- for l in ${list_libs} ; do
- nm -D $l | awk -v s=$sym '($2 == "T" || $2 == "W" || $2 == "B") && $3 == s { found=1 ; exit } END { if (found != 1) { exit 1 } }' && found=1 && break
- done
- if [ $found -eq 0 ]; then
- echo "Unresolved symbol $sym"
- fi
-done
+if [ ${CHECK_UNRESOLVED} -eq 1 ]; then
+ # Add in crt1 symbols
+ list_libs="${list_libs} crt1.o"
+ lib_symbols="$(nm --defined-only --format=posix "/usr/lib/crt1.o" | awk '$2 ~ /C|R|D|T|W|B|V/ {print $1}' | tr '\n' ' ')"
+ # Save the global symbols for this lib
+ libkey "crt1.o"
+ setvar "${libkey}" "${lib_symbols}"
+
+ # Now search libs for all symbols and report missing ones.
+ for sym in ${unresolved_symbols}; do
+ found=0
+ for lib in ${list_libs}; do
+ libkey "${lib}"
+ eval "lib_symbols=\"\${${libkey}}\""
+ # lib_symbols now contains symbols for the lib.
+ case " ${lib_symbols} " in
+ *\ ${sym}\ *)
+ [ ${VERBOSE_RESOLVED} -eq 1 ] &&
+ echo "Resolved symbol ${sym} from ${lib}"
+ found=1
+ break
+ ;;
+ esac
+ done
+ if [ $found -eq 0 ]; then
+ echo "Unresolved symbol $sym"
+ ret=1
+ fi
+ done
+fi
+exit ${ret}
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc
index d77cef2..ed39f7d 100644
--- a/tools/build/mk/OptionalObsoleteFiles.inc
+++ b/tools/build/mk/OptionalObsoleteFiles.inc
@@ -6,6 +6,7 @@
#
.if ${MK_ACCT} == no
+OLD_FILES+=etc/rc.d/accounting
OLD_FILES+=etc/periodic/daily/310.accounting
OLD_FILES+=usr/sbin/accton
OLD_FILES+=usr/sbin/sa
@@ -14,6 +15,8 @@ OLD_FILES+=usr/share/man/man8/sa.8.gz
.endif
.if ${MK_ACPI} == no
+OLD_FILES+=etc/devd/asus.conf
+OLD_FILES+=etc/rc.d/power_profile
OLD_FILES+=usr/sbin/acpiconf
OLD_FILES+=usr/sbin/acpidb
OLD_FILES+=usr/sbin/acpidump
@@ -26,6 +29,7 @@ OLD_FILES+=usr/share/man/man8/iasl.8.gz
.if ${MK_AMD} == no
OLD_FILES+=etc/amd.map
+OLD_FILES+=etc/rc.d/amd
OLD_FILES+=usr/bin/pawd
OLD_FILES+=usr/sbin/amd
OLD_FILES+=usr/sbin/amq
@@ -48,6 +52,8 @@ OLD_FILES+=usr/share/man/man8/wire-test.8.gz
.endif
.if ${MK_APM} == no
+OLD_FILES+=etc/rc.d/apm
+OLD_FILES+=etc/rc.d/apmd
OLD_FILES+=etc/apmd.conf
OLD_FILES+=usr/sbin/apm
OLD_FILES+=usr/share/examples/etc/apmd.conf
@@ -56,6 +62,7 @@ OLD_FILES+=usr/share/man/man8/amd64/apmconf.8.gz
.endif
.if ${MK_AT} == no
+OLD_FILES+=etc/pam.d/atrun
OLD_FILES+=usr/bin/at
OLD_FILES+=usr/bin/atq
OLD_FILES+=usr/bin/atrm
@@ -144,11 +151,76 @@ OLD_FILES+=usr/share/man/man8/authpf.8.gz
OLD_FILES+=usr/share/man/man8/authpf-noip.8.gz
.endif
+.if ${MK_AUTOFS} == no
+OLD_FILES+=etc/autofs/include_ldap
+OLD_FILES+=etc/autofs/special_hosts
+OLD_FILES+=etc/autofs/special_media
+OLD_FILES+=etc/autofs/special_null
+OLD_FILES+=etc/auto_master
+OLD_FILES+=etc/rc.d/automount
+OLD_FILES+=etc/rc.d/automountd
+OLD_FILES+=etc/rc.d/autounmountd
+OLD_FILES+=usr/sbin/automount
+OLD_FILES+=usr/sbin/automountd
+OLD_FILES+=usr/sbin/autounmountd
+OLD_FILES+=usr/share/man/man5/autofs.5.gz
+OLD_FILES+=usr/share/man/man5/auto_master.5.gz
+OLD_FILES+=usr/share/man/man8/automount.8.gz
+OLD_FILES+=usr/share/man/man8/automountd.8.gz
+OLD_FILES+=usr/share/man/man8/autounmountd.8.gz
+OLD_DIRS+=etc/autofs
+.endif
+
+.if ${MK_BHYVE} == no
+OLD_FILES+=usr/sbin/bhyve
+OLD_FILES+=usr/sbin/bhyvectl
+OLD_FILES+=usr/sbin/bhyveload
+OLD_FILES+=usr/share/examples/bhyve/vmrun.sh
+OLD_FILES+=usr/share/man/man8/bhyve.8.gz
+OLD_FILES+=usr/share/man/man8/bhyveload.8.gz
+OLD_DIRS+=usr/share/examples/bhyve
+.endif
+
+.if ${MK_BINUTILS} == no
+OLD_FILES+=usr/bin/as
+OLD_FILES+=usr/bin/ld
+OLD_FILES+=usr/bin/objcopy
+OLD_FILES+=usr/bin/objdump
+OLD_FILES+=usr/bin/readelf
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.x
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xbn
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xc
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xd
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xdc
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xdw
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xn
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xr
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xs
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xsc
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xsw
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xu
+OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xw
+OLD_FILES+=usr/share/man/man1/as.1.gz
+OLD_FILES+=usr/share/man/man1/ld.1.gz
+OLD_FILES+=usr/share/man/man1/objcopy.1.gz
+OLD_FILES+=usr/share/man/man1/objdump.1.gz
+OLD_FILES+=usr/share/man/man1/readelf.1.gz
+OLD_FILES+=usr/share/man/man7/as.7.gz
+OLD_FILES+=usr/share/man/man7/ld.7.gz
+OLD_FILES+=usr/share/man/man7/ldint.7.gz
+OLD_FILES+=usr/share/man/man7/binutils.7.gz
+.endif
+
.if ${MK_BLUETOOTH} == no
OLD_FILES+=etc/bluetooth/hcsecd.conf
OLD_FILES+=etc/bluetooth/hosts
OLD_FILES+=etc/bluetooth/protocols
+OLD_FILES+=etc/defaults/bluetooth.device.conf
OLD_DIRS+=etc/bluetooth
+OLD_FILES+=etc/rc.d/bluetooth
+OLD_FILES+=etc/rc.d/bthidd
+OLD_FILES+=etc/rc.d/hcsecd
+OLD_FILES+=etc/rc.d/ubthidhci
OLD_FILES+=usr/bin/bthost
OLD_FILES+=usr/bin/btsockstat
OLD_FILES+=usr/bin/rfcomm_sppd
@@ -185,6 +257,7 @@ OLD_FILES+=usr/lib32/libsdp.so
OLD_LIBS+=usr/lib32/libsdp.so.4
OLD_FILES+=usr/lib32/libsdp_p.a
.endif
+OLD_FILES+=usr/sbin/ath3kfw
OLD_FILES+=usr/sbin/bcmfw
OLD_FILES+=usr/sbin/bt3cfw
OLD_FILES+=usr/sbin/bthidcontrol
@@ -198,6 +271,7 @@ OLD_FILES+=usr/sbin/l2ping
OLD_FILES+=usr/sbin/rfcomm_pppd
OLD_FILES+=usr/sbin/sdpcontrol
OLD_FILES+=usr/sbin/sdpd
+OLD_FILES+=usr/share/examples/etc/defaults/bluetooth.device.conf
OLD_FILES+=usr/share/man/man1/bthost.1.gz
OLD_FILES+=usr/share/man/man1/btsockstat.1.gz
OLD_FILES+=usr/share/man/man1/rfcomm_sppd.1.gz
@@ -255,6 +329,7 @@ OLD_FILES+=usr/share/man/man3/sdp_search.3.gz
OLD_FILES+=usr/share/man/man3/sdp_unregister_service.3.gz
OLD_FILES+=usr/share/man/man3/sdp_uuid2desc.3.gz
OLD_FILES+=usr/share/man/man5/hcsecd.conf.5.gz
+OLD_FILES+=usr/share/man/man8/ath3kfw.8.gz
OLD_FILES+=usr/share/man/man8/bcmfw.8.gz
OLD_FILES+=usr/share/man/man8/bt3cfw.8.gz
OLD_FILES+=usr/share/man/man8/bthidcontrol.8.gz
@@ -270,9 +345,215 @@ OLD_FILES+=usr/share/man/man8/sdpcontrol.8.gz
OLD_FILES+=usr/share/man/man8/sdpd.8.gz
.endif
-#.if ${MK_BOOT} == no
-# to be filled in
-#.endif
+.if ${MK_BOOT} == no
+OLD_FILES+=boot/beastie.4th
+OLD_FILES+=boot/boot
+OLD_FILES+=boot/boot0
+OLD_FILES+=boot/boot0sio
+OLD_FILES+=boot/boot1
+OLD_FILES+=boot/boot1.efi
+OLD_FILES+=boot/boot1.efifat
+OLD_FILES+=boot/boot2
+OLD_FILES+=boot/brand.4th
+OLD_FILES+=boot/cdboot
+OLD_FILES+=boot/check-password.4th
+OLD_FILES+=boot/color.4th
+OLD_FILES+=boot/defaults/loader.conf
+OLD_FILES+=boot/delay.4th
+OLD_FILES+=boot/device.hints
+OLD_FILES+=boot/frames.4th
+OLD_FILES+=boot/gptboot
+OLD_FILES+=boot/gptzfsboot
+OLD_FILES+=boot/loader
+OLD_FILES+=boot/loader.4th
+OLD_FILES+=boot/loader.efi
+OLD_FILES+=boot/loader.help
+OLD_FILES+=boot/loader.rc
+OLD_FILES+=boot/mbr
+OLD_FILES+=boot/menu-commands.4th
+OLD_FILES+=boot/menu.4th
+OLD_FILES+=boot/menu.rc
+OLD_FILES+=boot/menusets.4th
+OLD_FILES+=boot/pcibios.4th
+OLD_FILES+=boot/pmbr
+OLD_FILES+=boot/pxeboot
+OLD_FILES+=boot/screen.4th
+OLD_FILES+=boot/shortcuts.4th
+OLD_FILES+=boot/support.4th
+OLD_FILES+=boot/userboot.so
+OLD_FILES+=boot/version.4th
+OLD_FILES+=boot/zfsboot
+OLD_FILES+=boot/zfsloader
+OLD_FILES+=usr/lib/kgzldr.o
+OLD_FILES+=usr/share/man/man5/loader.conf.5.gz
+OLD_FILES+=usr/share/man/man8/beastie.4th.8.gz
+OLD_FILES+=usr/share/man/man8/brand.4th.8.gz
+OLD_FILES+=usr/share/man/man8/check-password.4th.8.gz
+OLD_FILES+=usr/share/man/man8/color.4th.8.gz
+OLD_FILES+=usr/share/man/man8/delay.4th.8.gz
+OLD_FILES+=usr/share/man/man8/gptboot.8.gz
+OLD_FILES+=usr/share/man/man8/gptzfsboot.8.gz
+OLD_FILES+=usr/share/man/man8/loader.4th.8.gz
+OLD_FILES+=usr/share/man/man8/loader.8.gz
+OLD_FILES+=usr/share/man/man8/menu.4th.8.gz
+OLD_FILES+=usr/share/man/man8/menusets.4th.8.gz
+OLD_FILES+=usr/share/man/man8/pxeboot.8.gz
+OLD_FILES+=usr/share/man/man8/version.4th.8.gz
+OLD_FILES+=usr/share/man/man8/zfsboot.8.gz
+OLD_FILES+=usr/share/man/man8/zfsloader.8.gz
+.endif
+
+.if ${MK_BSD_CPIO} == no
+OLD_FILES+=usr/bin/bsdcpio
+OLD_FILES+=usr/bin/cpio
+OLD_FILES+=usr/share/man/man1/bsdcpio.1.gz
+OLD_FILES+=usr/share/man/man1/cpio.1.gz
+.endif
+
+.if ${MK_BSDINSTALL} == no
+OLD_FILES+=usr/libexec/bsdinstall/adduser
+OLD_FILES+=usr/libexec/bsdinstall/auto
+OLD_FILES+=usr/libexec/bsdinstall/autopart
+OLD_FILES+=usr/libexec/bsdinstall/checksum
+OLD_FILES+=usr/libexec/bsdinstall/config
+OLD_FILES+=usr/libexec/bsdinstall/distextract
+OLD_FILES+=usr/libexec/bsdinstall/distfetch
+OLD_FILES+=usr/libexec/bsdinstall/docsinstall
+OLD_FILES+=usr/libexec/bsdinstall/entropy
+OLD_FILES+=usr/libexec/bsdinstall/hostname
+OLD_FILES+=usr/libexec/bsdinstall/jail
+OLD_FILES+=usr/libexec/bsdinstall/keymap
+OLD_FILES+=usr/libexec/bsdinstall/mirrorselect
+OLD_FILES+=usr/libexec/bsdinstall/mount
+OLD_FILES+=usr/libexec/bsdinstall/netconfig
+OLD_FILES+=usr/libexec/bsdinstall/netconfig_ipv4
+OLD_FILES+=usr/libexec/bsdinstall/netconfig_ipv6
+OLD_FILES+=usr/libexec/bsdinstall/partedit
+OLD_FILES+=usr/libexec/bsdinstall/rootpass
+OLD_FILES+=usr/libexec/bsdinstall/script
+OLD_FILES+=usr/libexec/bsdinstall/scriptedpart
+OLD_FILES+=usr/libexec/bsdinstall/services
+OLD_FILES+=usr/libexec/bsdinstall/time
+OLD_FILES+=usr/libexec/bsdinstall/umount
+OLD_FILES+=usr/libexec/bsdinstall/wlanconfig
+OLD_FILES+=usr/libexec/bsdinstall/zfsboot
+OLD_FILES+=usr/sbin/bsdinstall
+OLD_FILES+=usr/share/man/man8/bsdinstall.8.gz
+OLD_FILES+=usr/share/man/man8/sade.8.gz
+OLD_DIRS+=usr/libexec/bsdinstall
+.endif
+
+.if ${MK_BSNMP} == no
+OLD_FILES+=etc/snmpd.config
+OLD_FILES+=etc/rc.d/bsnmpd
+OLD_FILES+=usr/bin/bsnmpget
+OLD_FILES+=usr/bin/bsnmpset
+OLD_FILES+=usr/bin/bsnmpwalk
+OLD_FILES+=usr/include/bsnmp/asn1.h
+OLD_FILES+=usr/include/bsnmp/bridge_snmp.h
+OLD_FILES+=usr/include/bsnmp/snmp.h
+OLD_FILES+=usr/include/bsnmp/snmp_atm.h
+OLD_FILES+=usr/include/bsnmp/snmp_mibII.h
+OLD_FILES+=usr/include/bsnmp/snmp_netgraph.h
+OLD_FILES+=usr/include/bsnmp/snmpagent.h
+OLD_FILES+=usr/include/bsnmp/snmpclient.h
+OLD_FILES+=usr/include/bsnmp/snmpmod.h
+OLD_FILES+=usr/lib/libbsnmp.a
+OLD_FILES+=usr/lib/libbsnmp.so
+OLD_LIBS+=usr/lib/libbsnmp.so.6
+OLD_FILES+=usr/lib/libbsnmp_p.a
+OLD_FILES+=usr/lib/libbsnmptools.a
+OLD_FILES+=usr/lib/libbsnmptools.so
+OLD_LIBS+=usr/lib/libbsnmptools.so.0
+OLD_FILES+=usr/lib/libbsnmptools_p.a
+OLD_FILES+=usr/lib/snmp_atm.so
+OLD_LIBS+=usr/lib/snmp_atm.so.6
+OLD_FILES+=usr/lib/snmp_bridge.so
+OLD_LIBS+=usr/lib/snmp_bridge.so.6
+OLD_FILES+=usr/lib/snmp_hast.so
+OLD_LIBS+=usr/lib/snmp_hast.so.6
+OLD_FILES+=usr/lib/snmp_hostres.so
+OLD_LIBS+=usr/lib/snmp_hostres.so.6
+OLD_FILES+=usr/lib/snmp_lm75.so
+OLD_LIBS+=usr/lib/snmp_lm75.so.6
+OLD_FILES+=usr/lib/snmp_mibII.so
+OLD_LIBS+=usr/lib/snmp_mibII.so.6
+OLD_FILES+=usr/lib/snmp_netgraph.so
+OLD_LIBS+=usr/lib/snmp_netgraph.so.6
+OLD_FILES+=usr/lib/snmp_pf.so
+OLD_LIBS+=usr/lib/snmp_pf.so.6
+OLD_FILES+=usr/lib/snmp_target.so
+OLD_LIBS+=usr/lib/snmp_target.so.6
+OLD_FILES+=usr/lib/snmp_usm.so
+OLD_LIBS+=usr/lib/snmp_usm.so.6
+OLD_FILES+=usr/lib/snmp_vacm.so
+OLD_LIBS+=usr/lib/snmp_vacm.so.6
+OLD_FILES+=usr/lib/snmp_wlan.so
+OLD_LIBS+=usr/lib/snmp_wlan.so.6
+OLD_FILES+=usr/lib32/libbsnmp.a
+OLD_FILES+=usr/lib32/libbsnmp.so
+OLD_LIBS+=usr/lib32/libbsnmp.so.6
+OLD_FILES+=usr/lib32/libbsnmp_p.a
+OLD_FILES+=usr/sbin/bsnmpd
+OLD_FILES+=usr/sbin/gensnmptree
+OLD_FILES+=usr/share/examples/etc/snmpd.config
+OLD_FILES+=usr/share/man/man1/bsnmpd.1.gz
+OLD_FILES+=usr/share/man/man1/bsnmpget.1.gz
+OLD_FILES+=usr/share/man/man1/bsnmpset.1.gz
+OLD_FILES+=usr/share/man/man1/bsnmpwalk.1.gz
+OLD_FILES+=usr/share/man/man1/gensnmptree.1.gz
+OLD_FILES+=usr/share/man/man3/asn1.3.gz
+OLD_FILES+=usr/share/man/man3/bsnmpagent.3.gz
+OLD_FILES+=usr/share/man/man3/bsnmpclient.3.gz
+OLD_FILES+=usr/share/man/man3/bsnmplib.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_atm.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_bridge.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_hast.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_hostres.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_lm75.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_mibII.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_netgraph.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_target.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_usm.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_vacm.3.gz
+OLD_FILES+=usr/share/man/man3/snmp_wlan.3.gz
+OLD_FILES+=usr/share/man/man3/snmpmod.3.gz
+OLD_FILES+=usr/share/snmp/defs/atm_freebsd.def
+OLD_FILES+=usr/share/snmp/defs/atm_tree.def
+OLD_FILES+=usr/share/snmp/defs/bridge_tree.def
+OLD_FILES+=usr/share/snmp/defs/hast_tree.def
+OLD_FILES+=usr/share/snmp/defs/hostres_tree.def
+OLD_FILES+=usr/share/snmp/defs/lm75_tree.def
+OLD_FILES+=usr/share/snmp/defs/mibII_tree.def
+OLD_FILES+=usr/share/snmp/defs/netgraph_tree.def
+OLD_FILES+=usr/share/snmp/defs/pf_tree.def
+OLD_FILES+=usr/share/snmp/defs/target_tree.def
+OLD_FILES+=usr/share/snmp/defs/tree.def
+OLD_FILES+=usr/share/snmp/defs/usm_tree.def
+OLD_FILES+=usr/share/snmp/defs/vacm_tree.def
+OLD_FILES+=usr/share/snmp/defs/wlan_tree.def
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-ATM-FREEBSD-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-ATM.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-BRIDGE-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-HAST-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-HOSTRES-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-IP-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-LM75-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-MIB2-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-NETGRAPH.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-PF-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-SNMPD.txt
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-WIRELESS-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/BRIDGE-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/FOKUS-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/FREEBSD-MIB.txt
+OLD_FILES+=usr/share/snmp/mibs/RSTP-MIB.txt
+OLD_DIRS+=usr/include/bsnmp
+OLD_DIRS+=usr/share/snmp
+OLD_DIRS+=usr/share/snmp/defs
+OLD_DIRS+=usr/share/snmp/mibs
+.endif
.if ${MK_CALENDAR} == no
OLD_FILES+=etc/periodic/daily/300.calendar
@@ -359,10 +640,64 @@ OLD_FILES+=usr/share/man/man1/calendar.1.gz
.endif
.if ${MK_CASPER} == no
+OLD_FILES+=etc/casper/system.dns
+OLD_FILES+=etc/casper/system.grp
+OLD_FILES+=etc/casper/system.pwd
+OLD_FILES+=etc/casper/system.random
+OLD_FILES+=etc/casper/system.sysctl
OLD_FILES+=etc/rc.d/casperd
+OLD_LIBS+=lib/libcapsicum.so.0
OLD_LIBS+=lib/libcasper.so.0
+OLD_FILES+=libexec/casper/dns
+OLD_FILES+=libexec/casper/grp
+OLD_FILES+=libexec/casper/pwd
+OLD_FILES+=libexec/casper/random
+OLD_FILES+=libexec/casper/sysctl
OLD_FILES+=sbin/casper
+OLD_FILES+=sbin/casperd
+OLD_FILES+=usr/include/libcapsicum.h
+OLD_FILES+=usr/include/libcapsicum_dns.h
+OLD_FILES+=usr/include/libcapsicum_grp.h
+OLD_FILES+=usr/include/libcapsicum_pwd.h
+OLD_FILES+=usr/include/libcapsicum_random.h
+OLD_FILES+=usr/include/libcapsicum_service.h
+OLD_FILES+=usr/include/libcapsicum_sysctl.h
+OLD_FILES+=usr/include/libcasper.h
+OLD_FILES+=usr/lib/libcapsicum.a
+OLD_FILES+=usr/lib/libcapsicum.so
+OLD_FILES+=usr/lib/libcapsicum_p.a
OLD_FILES+=usr/lib/libcasper.a
+OLD_FILES+=usr/lib/libcasper.so
+OLD_FILES+=usr/lib/libcasper_p.a
+OLD_FILES+=usr/lib32/libcapsicum.a
+OLD_FILES+=usr/lib32/libcapsicum.so
+OLD_LIBS+=usr/lib32/libcapsicum.so.0
+OLD_FILES+=usr/lib32/libcapsicum_p.a
+OLD_FILES+=usr/lib32/libcasper.a
+OLD_FILES+=usr/lib32/libcasper.so
+OLD_LIBS+=usr/lib32/libcasper.so.0
+OLD_FILES+=usr/lib32/libcasper_p.a
+OLD_FILES+=usr/share/man/man3/cap_clone.3.gz
+OLD_FILES+=usr/share/man/man3/cap_close.3.gz
+OLD_FILES+=usr/share/man/man3/cap_init.3.gz
+OLD_FILES+=usr/share/man/man3/cap_limit_get.3.gz
+OLD_FILES+=usr/share/man/man3/cap_limit_set.3.gz
+OLD_FILES+=usr/share/man/man3/cap_recv_nvlist.3.gz
+OLD_FILES+=usr/share/man/man3/cap_send_nvlist.3.gz
+OLD_FILES+=usr/share/man/man3/cap_service_open.3.gz
+OLD_FILES+=usr/share/man/man3/cap_sock.3.gz
+OLD_FILES+=usr/share/man/man3/cap_unwrap.3.gz
+OLD_FILES+=usr/share/man/man3/cap_wrap.3.gz
+OLD_FILES+=usr/share/man/man3/cap_xfer_nvlist.3.gz
+OLD_FILES+=usr/share/man/man3/libcapsicum.3.gz
+OLD_FILES+=usr/share/man/man8/casperd.8.gz
+.endif
+
+.if ${MK_CCD} == no
+OLD_FILES+=etc/rc.d/ccd
+OLD_FILES+=sbin/ccdconfig
+OLD_FILES+=usr/share/man/man4/ccd.4.gz
+OLD_FILES+=usr/share/man/man8/ccdconfig.8.gz
.endif
.if ${MK_CDDL} == no
@@ -388,7 +723,6 @@ OLD_FILES+=usr/lib/dtrace/signal.d
OLD_FILES+=usr/lib/dtrace/tcp.d
OLD_FILES+=usr/lib/dtrace/udp.d
OLD_FILES+=usr/lib/dtrace/unistd.d
-OLD_DIRS+=usr/lib/dtrace
OLD_FILES+=usr/lib/libavl.a
OLD_FILES+=usr/lib/libavl.so
OLD_FILES+=usr/lib/libavl_p.a
@@ -409,7 +743,6 @@ OLD_FILES+=usr/lib/libuutil.so
OLD_FILES+=usr/lib/libuutil_p.a
.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
OLD_FILES+=usr/lib32/dtrace/drti.o
-OLD_DIRS+=usr/lib32/dtrace
OLD_FILES+=usr/lib32/libavl.a
OLD_FILES+=usr/lib32/libavl.so
OLD_LIBS+=usr/lib32/libavl.so.2
@@ -435,9 +768,28 @@ OLD_FILES+=usr/lib32/libuutil.so
OLD_LIBS+=usr/lib32/libuutil.so.2
OLD_FILES+=usr/lib32/libuutil_p.a
.endif
+OLD_LIBS+=lib/libdtrace.so.2
OLD_FILES+=usr/sbin/dtrace
OLD_FILES+=usr/sbin/lockstat
OLD_FILES+=usr/share/man/man1/dtrace.1.gz
+OLD_FILES+=usr/share/dtrace/disklatency
+OLD_FILES+=usr/share/dtrace/disklatencycmd
+OLD_FILES+=usr/share/dtrace/hotopen
+OLD_FILES+=usr/share/dtrace/nfsclienttime
+OLD_FILES+=usr/share/dtrace/toolkit/execsnoop
+OLD_FILES+=usr/share/dtrace/toolkit/hotkernel
+OLD_FILES+=usr/share/dtrace/toolkit/hotuser
+OLD_FILES+=usr/share/dtrace/toolkit/opensnoop
+OLD_FILES+=usr/share/dtrace/toolkit/procsystime
+OLD_FILES+=usr/share/dtrace/tcpconn
+OLD_FILES+=usr/share/dtrace/tcpstate
+OLD_FILES+=usr/share/dtrace/tcptrack
+OLD_FILES+=usr/share/dtrace/udptrack
+OLD_FILES+=usr/share/man/man1/dtrace.1.gz
+OLD_DIRS+=usr/lib/dtrace
+OLD_DIRS+=usr/lib32/dtrace
+OLD_DIRS+=usr/share/dtrace/toolkit
+OLD_DIRS+=usr/share/dtrace
.endif
.if ${MK_ZFS} == no
@@ -489,42 +841,67 @@ OLD_FILES+=usr/bin/clang++
OLD_FILES+=usr/bin/clang-cpp
OLD_FILES+=usr/bin/clang-tblgen
OLD_FILES+=usr/bin/tblgen
-OLD_FILES+=usr/include/clang/3.4.1/__wmmintrin_aes.h
-OLD_FILES+=usr/include/clang/3.4.1/__wmmintrin_pclmul.h
-OLD_FILES+=usr/include/clang/3.4.1/altivec.h
-OLD_FILES+=usr/include/clang/3.4.1/ammintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/arm_neon.h
-OLD_FILES+=usr/include/clang/3.4.1/avx2intrin.h
-OLD_FILES+=usr/include/clang/3.4.1/avxintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/bmi2intrin.h
-OLD_FILES+=usr/include/clang/3.4.1/bmiintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/cpuid.h
-OLD_FILES+=usr/include/clang/3.4.1/emmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/f16cintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/fma4intrin.h
-OLD_FILES+=usr/include/clang/3.4.1/fmaintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/immintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/lzcntintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/mm3dnow.h
-OLD_FILES+=usr/include/clang/3.4.1/mm_malloc.h
-OLD_FILES+=usr/include/clang/3.4.1/mmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/module.map
-OLD_FILES+=usr/include/clang/3.4.1/nmmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/pmmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/popcntintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/prfchwintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/rdseedintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/rtmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/shaintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/smmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/tbmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/tmmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/wmmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/x86intrin.h
-OLD_FILES+=usr/include/clang/3.4.1/xmmintrin.h
-OLD_FILES+=usr/include/clang/3.4.1/xopintrin.h
-OLD_DIRS+=usr/include/clang/3.4.1
-OLD_DIRS+=usr/include/clang
+OLD_FILES+=usr/lib/clang/3.6.0/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/altivec.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/cpuid.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/immintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/module.modulemap
+OLD_FILES+=usr/lib/clang/3.6.0/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/3.6.0/include/xopintrin.h
+OLD_DIRS+=usr/lib/clang/3.6.0/include
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.san-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.san-x86_64.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan-x86_64.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/3.6.0/lib/freebsd
+OLD_DIRS+=usr/lib/clang/3.6.0/lib
+OLD_DIRS+=usr/lib/clang/3.6.0
+OLD_DIRS+=usr/lib/clang
OLD_FILES+=usr/share/doc/llvm/clang/LICENSE.TXT
OLD_DIRS+=usr/share/doc/llvm/clang
OLD_FILES+=usr/share/doc/llvm/COPYRIGHT.regex
@@ -546,13 +923,12 @@ OLD_FILES+=usr/bin/llvm-bcanalyzer
OLD_FILES+=usr/bin/llvm-diff
OLD_FILES+=usr/bin/llvm-dis
OLD_FILES+=usr/bin/llvm-extract
-OLD_FILES+=usr/bin/llvm-ld
OLD_FILES+=usr/bin/llvm-link
OLD_FILES+=usr/bin/llvm-mc
OLD_FILES+=usr/bin/llvm-nm
OLD_FILES+=usr/bin/llvm-objdump
OLD_FILES+=usr/bin/llvm-rtdyld
-OLD_FILES+=usr/bin/llvm-stub
+OLD_FILES+=usr/bin/llvm-symbolizer
OLD_FILES+=usr/bin/macho-dump
OLD_FILES+=usr/bin/opt
OLD_FILES+=usr/share/man/man1/bugpoint.1.gz
@@ -564,9 +940,9 @@ OLD_FILES+=usr/share/man/man1/llvm-bcanalyzer.1.gz
OLD_FILES+=usr/share/man/man1/llvm-diff.1.gz
OLD_FILES+=usr/share/man/man1/llvm-dis.1.gz
OLD_FILES+=usr/share/man/man1/llvm-extract.1.gz
-OLD_FILES+=usr/share/man/man1/llvm-ld.1.gz
OLD_FILES+=usr/share/man/man1/llvm-link.1.gz
OLD_FILES+=usr/share/man/man1/llvm-nm.1.gz
+OLD_FILES+=usr/share/man/man1/llvm-symbolizer.1.gz
OLD_FILES+=usr/share/man/man1/opt.1.gz
.endif
@@ -591,18 +967,52 @@ OLD_FILES+=usr/share/man/man1/ctm_smail.1.gz
OLD_FILES+=usr/share/man/man5/ctm.5.gz
.endif
+.if ${MK_CUSE} == no
+OLD_FILES+=usr/include/fs/cuse/cuse_defs.h
+OLD_FILES+=usr/include/fs/cuse/cuse_ioctl.h
+OLD_FILES+=usr/include/cuse.h
+OLD_FILES+=usr/lib/libcuse.a
+OLD_LIBS+=usr/lib/libcuse.so.1
+OLD_FILES+=usr/lib/libcuse_p.a
+OLD_FILES+=usr/share/man/man3/cuse.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_alloc_unit_number.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_alloc_unit_number_by_id.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_copy_in.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_copy_out.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_create.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_destroy.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_get_current.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_get_per_file_handle.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_get_priv0.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_get_priv1.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_set_per_file_handle.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_set_priv0.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_dev_set_priv1.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_free_unit_number.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_free_unit_number_by_id.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_get_local.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_got_peer_signal.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_init.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_is_vmalloc_addr.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_poll_wakeup.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_set_local.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_uninit.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_vmalloc.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_vmfree.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_vmoffset.3.gz
+OLD_FILES+=usr/share/man/man3/cuse_wait_and_process.3.gz
+OLD_DIRS+=usr/include/fs/cuse
+.endif
+
# devd(8) not listed here on purpose
.if ${MK_CXX} == no
OLD_FILES+=usr/bin/CC
OLD_FILES+=usr/bin/c++
+.if ${MK_ELFTOOLCHAIN_TOOLS} == no
OLD_FILES+=usr/bin/c++filt
+.endif
OLD_FILES+=usr/bin/g++
OLD_FILES+=usr/libexec/cc1plus
-.if ${MK_GCC} == no
-OLD_FILES+=usr/bin/gperf
-OLD_FILES+=usr/share/info/gperf.info.gz
-OLD_FILES+=usr/share/man/man1/gperf.1.gz
-.endif
.endif
.if ${MK_FMTREE} == no
@@ -1198,6 +1608,36 @@ OLD_FILES+=usr/share/dict/words
OLD_DIRS+=usr/share/dict
.endif
+.if ${MK_DMAGENT} == no
+OLD_FILES+=etc/dma/dma.conf
+OLD_FILES+=usr/libexec/dma
+OLD_FILES+=usr/libexec/dma-mbox-create
+OLD_FILES+=usr/share/man/man8/dma.8.gz
+OLD_FILES+=usr/share/examples/dma/mailer.conf
+.endif
+
+.if ${MK_EE} == no
+OLD_FILES+=usr/bin/edit
+OLD_FILES+=usr/bin/ee
+OLD_FILES+=usr/bin/ree
+OLD_FILES+=usr/share/man/man1/edit.1.gz
+OLD_FILES+=usr/share/man/man1/ee.1.gz
+OLD_FILES+=usr/share/man/man1/ree.1.gz
+OLD_FILES+=usr/share/nls/C/ee.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/ee.cat
+OLD_FILES+=usr/share/nls/pl_PL.ISO8859-2/ee.cat
+OLD_FILES+=usr/share/nls/pt_BR.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/ee.cat
+OLD_FILES+=usr/share/nls/uk_UA.KOI8-U/ee.cat
+.endif
+
+.if ${MK_ELFTOOLCHAIN_TOOLS} == no
+OLD_FILES+=usr/bin/elfcopy
+OLD_FILES+=usr/share/man/man1/elfcopy.1.gz
+.endif
+
#.if ${MK_EXAMPLES} == no
# to be filled in
#.endif
@@ -1213,6 +1653,19 @@ OLD_FILES+=usr/share/man/man1/fdwrite.1.gz
OLD_FILES+=usr/share/man/man8/fdcontrol.8.gz
.endif
+.if ${MK_FORTH} == no
+OLD_FILES+=usr/share/man/man5/loader.conf.5.gz
+OLD_FILES+=usr/share/man/man8/beastie.4th.8.gz
+OLD_FILES+=usr/share/man/man8/brand.4th.8.gz
+OLD_FILES+=usr/share/man/man8/check-password.4th.8.gz
+OLD_FILES+=usr/share/man/man8/color.4th.8.gz
+OLD_FILES+=usr/share/man/man8/delay.4th.8.gz
+OLD_FILES+=usr/share/man/man8/loader.4th.8.gz
+OLD_FILES+=usr/share/man/man8/menu.4th.8.gz
+OLD_FILES+=usr/share/man/man8/menusets.4th.8.gz
+OLD_FILES+=usr/share/man/man8/version.4th.8.gz
+.endif
+
.if ${MK_FREEBSD_UPDATE} == no
OLD_FILES+=etc/freebsd-update.conf
OLD_FILES+=usr/sbin/freebsd-update
@@ -1222,21 +1675,18 @@ OLD_FILES+=usr/share/man/man8/freebsd-update.8.gz
.endif
.if ${MK_GAMES} == no
-OLD_FILES+=usr/games/bcd
-OLD_FILES+=usr/games/caesar
-OLD_FILES+=usr/games/factor
-OLD_FILES+=usr/games/fortune
-OLD_FILES+=usr/games/grdc
-OLD_FILES+=usr/games/morse
-OLD_FILES+=usr/games/number
-OLD_FILES+=usr/games/pom
-OLD_FILES+=usr/games/ppt
-OLD_FILES+=usr/games/primes
-OLD_FILES+=usr/games/random
-OLD_FILES+=usr/games/rot13
-OLD_FILES+=usr/games/strfile
-OLD_FILES+=usr/games/unstr
-OLD_DIRS+=usr/games
+OLD_FILES+=usr/bin/caesar
+OLD_FILES+=usr/bin/factor
+OLD_FILES+=usr/bin/fortune
+OLD_FILES+=usr/bin/grdc
+OLD_FILES+=usr/bin/morse
+OLD_FILES+=usr/bin/number
+OLD_FILES+=usr/bin/pom
+OLD_FILES+=usr/bin/primes
+OLD_FILES+=usr/bin/random
+OLD_FILES+=usr/bin/rot13
+OLD_FILES+=usr/bin/strfile
+OLD_FILES+=usr/bin/unstr
OLD_FILES+=usr/share/games/fortune/fortunes
OLD_FILES+=usr/share/games/fortune/fortunes.dat
OLD_FILES+=usr/share/games/fortune/freebsd-tips
@@ -1255,7 +1705,6 @@ OLD_FILES+=usr/share/games/fortune/zippy
OLD_FILES+=usr/share/games/fortune/zippy.dat
OLD_DIRS+=usr/share/games/fortune
OLD_DIRS+=usr/share/games
-OLD_FILES+=usr/share/man/man6/bcd.6.gz
OLD_FILES+=usr/share/man/man6/caesar.6.gz
OLD_FILES+=usr/share/man/man6/factor.6.gz
OLD_FILES+=usr/share/man/man6/fortune.6.gz
@@ -1263,7 +1712,6 @@ OLD_FILES+=usr/share/man/man6/grdc.6.gz
OLD_FILES+=usr/share/man/man6/morse.6.gz
OLD_FILES+=usr/share/man/man6/number.6.gz
OLD_FILES+=usr/share/man/man6/pom.6.gz
-OLD_FILES+=usr/share/man/man6/ppt.6.gz
OLD_FILES+=usr/share/man/man6/primes.6.gz
OLD_FILES+=usr/share/man/man6/random.6.gz
OLD_FILES+=usr/share/man/man6/rot13.6.gz
@@ -1272,11 +1720,14 @@ OLD_FILES+=usr/share/man/man8/unstr.8.gz
.endif
.if ${MK_GCC} == no
+.if ${MK_ELFTOOLCHAIN_TOOLS} == no
OLD_FILES+=usr/bin/c++filt
+.endif
OLD_FILES+=usr/bin/g++
OLD_FILES+=usr/bin/gcc
OLD_FILES+=usr/bin/gcov
OLD_FILES+=usr/bin/gcpp
+OLD_FILES+=usr/bin/gperf
.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_aes.h
OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_pclmul.h
@@ -1296,16 +1747,25 @@ OLD_FILES+=usr/include/gcc/4.2/altivec.h
OLD_FILES+=usr/include/gcc/4.2/ppc-asm.h
OLD_FILES+=usr/include/gcc/4.2/spe.h
.endif
+OLD_FILES+=usr/include/omp.h
+OLD_FILES+=usr/lib/libgcov.a
+OLD_FILES+=usr/lib/libgomp.a
+OLD_FILES+=usr/lib/libgomp.so
+OLD_LIBS+=usr/lib/libgomp.so.1
+OLD_FILES+=usr/lib/libgomp_p.a
OLD_FILES+=usr/libexec/cc1
OLD_FILES+=usr/libexec/cc1plus
OLD_FILES+=usr/share/info/cpp.info.gz
OLD_FILES+=usr/share/info/cppinternals.info.gz
OLD_FILES+=usr/share/info/gcc.info.gz
OLD_FILES+=usr/share/info/gccint.info.gz
+OLD_FILES+=usr/share/info/gperf.info.gz
OLD_FILES+=usr/share/man/man1/g++.1.gz
OLD_FILES+=usr/share/man/man1/gcc.1.gz
OLD_FILES+=usr/share/man/man1/gcov.1.gz
OLD_FILES+=usr/share/man/man1/gcpp.1.gz
+OLD_FILES+=usr/share/man/man1/gperf.1.gz
+OLD_FILES+=usr/share/man/man1/gperf.7.gz
.endif
.if ${MK_GCOV} == no
@@ -1326,28 +1786,38 @@ OLD_FILES+=usr/share/man/man1/gdbserver.1.gz
OLD_FILES+=usr/share/man/man1/kgdb.1.gz
.endif
-.if ${MK_GPIB} == no
-OLD_FILES+=usr/include/dev/ieee488/ibfoo_int.h
-OLD_FILES+=usr/include/dev/ieee488/tnt4882.h
-OLD_FILES+=usr/include/dev/ieee488/ugpib.h
-OLD_FILES+=usr/include/dev/ieee488/upd7210.h
-OLD_DIRS+=usr/include/dev/ieee488
-OLD_FILES+=usr/include/gpib/gpib.h
-OLD_DIRS+=usr/include/gpib
-OLD_FILES+=usr/lib/libgpib.a
-OLD_FILES+=usr/lib/libgpib.so
-OLD_LIBS+=usr/lib/libgpib.so.3
-OLD_FILES+=usr/lib/libgpib_p.a
-.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
-OLD_FILES+=usr/lib32/libgpib.a
-OLD_FILES+=usr/lib32/libgpib.so
-OLD_LIBS+=usr/lib32/libgpib.so.3
-OLD_FILES+=usr/lib32/libgpib_p.a
-.endif
-.endif
-
.if ${MK_GPIO} == no
+OLD_FILES+=usr/include/libgpio.h
+OLD_FILES+=usr/lib/libgpio.a
+OLD_FILES+=usr/lib/libgpio.so
+OLD_LIBS+=usr/lib/libgpio.so.0
+OLD_FILES+=usr/lib/libgpio_p.a
+OLD_FILES+=usr/lib32/libgpio.a
+OLD_FILES+=usr/lib32/libgpio.so
+OLD_LIBS+=usr/lib32/libgpio.so.0
+OLD_FILES+=usr/lib32/libgpio_p.a
OLD_FILES+=usr/sbin/gpioctl
+OLD_FILES+=usr/share/man/man3/gpio.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_close.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_open.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_open_device.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_config.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_get.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_high.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_input.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_invin.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_invout.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_list.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_low.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_opendrain.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_output.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_pulldown.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_pullup.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_pulsate.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_pushpull.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_set.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_set_flags.3.gz
+OLD_FILES+=usr/share/man/man3/gpio_pin_tristate.3.gz
OLD_FILES+=usr/share/man/man8/gpioctl.8.gz
.endif
@@ -1377,12 +1847,81 @@ OLD_FILES+=usr/bin/post-grohtml
OLD_FILES+=usr/bin/pre-grohtml
OLD_FILES+=usr/bin/psroff
OLD_FILES+=usr/bin/refer
-OLD_FILES+=usr/bin/soelim
OLD_FILES+=usr/bin/tbl
OLD_FILES+=usr/bin/tfmtodit
OLD_FILES+=usr/bin/troff
OLD_FILES+=usr/bin/vgrind
OLD_FILES+=usr/libexec/vfontedpr
+OLD_FILES+=usr/share/dict/eign
+OLD_FILES+=usr/share/doc/papers/beyond43.ascii.gz
+OLD_FILES+=usr/share/doc/papers/bio.ascii.gz
+OLD_FILES+=usr/share/doc/papers/contents.ascii.gz
+OLD_FILES+=usr/share/doc/papers/devfs.ascii.gz
+OLD_FILES+=usr/share/doc/papers/diskperf.ascii.gz
+OLD_FILES+=usr/share/doc/papers/fsinterface.ascii.gz
+OLD_FILES+=usr/share/doc/papers/hwpmc.ascii.gz
+OLD_FILES+=usr/share/doc/papers/jail.ascii.gz
+OLD_FILES+=usr/share/doc/papers/kernmalloc.ascii.gz
+OLD_FILES+=usr/share/doc/papers/kerntune.ascii.gz
+OLD_FILES+=usr/share/doc/papers/malloc.ascii.gz
+OLD_FILES+=usr/share/doc/papers/newvm.ascii.gz
+OLD_FILES+=usr/share/doc/papers/releng.ascii.gz
+OLD_FILES+=usr/share/doc/papers/sysperf.ascii.gz
+OLD_FILES+=usr/share/doc/papers/timecounter.ascii.gz
+OLD_FILES+=usr/share/doc/psd/01.cacm/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/02.implement/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/03.iosys/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/04.uprog/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/05.sysman/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/06.Clang/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/12.make/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/13.rcs/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/13.rcs/rcs_func.ascii.gz
+OLD_FILES+=usr/share/doc/psd/15.yacc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/16.lex/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/17.m4/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/18.gprof/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/20.ipctut/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/21.ipc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/22.rpcgen/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/23.rpc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/24.xdr/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/25.xdrrfc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/26.rpcrfc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/27.nfsrfc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/psd/Title.ascii.gz
+OLD_FILES+=usr/share/doc/psd/contents.ascii.gz
+OLD_FILES+=usr/share/doc/smm/01.setup/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/02.config/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/03.fsck/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/04.quotas/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/05.fastfs/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/06.nfs/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/07.lpd/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/08.sendmailop/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/11.timedop/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/12.timed/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/18.net/paper.ascii.gz
+OLD_FILES+=usr/share/doc/smm/Title.ascii.gz
+OLD_FILES+=usr/share/doc/smm/contents.ascii.gz
+OLD_FILES+=usr/share/doc/usd/04.csh/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/05.dc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/06.bc/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/07.mail/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/10.exref/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/10.exref/summary.ascii.gz
+OLD_FILES+=usr/share/doc/usd/11.edit/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/12.vi/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/12.vi/summary.ascii.gz
+OLD_FILES+=usr/share/doc/usd/12.vi/viapwh.ascii.gz
+OLD_FILES+=usr/share/doc/usd/13.viref/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/18.msdiffs/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/19.memacros/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/20.meref/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/21.troff/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/22.trofftut/paper.ascii.gz
+OLD_FILES+=usr/share/doc/usd/Title.ascii.gz
+OLD_FILES+=usr/share/doc/usd/contents.ascii.gz
OLD_FILES+=usr/share/groff_font/devX100-12/CB
OLD_FILES+=usr/share/groff_font/devX100-12/CBI
OLD_FILES+=usr/share/groff_font/devX100-12/CI
@@ -1714,7 +2253,6 @@ OLD_FILES+=usr/share/man/man1/pfbtops.1.gz
OLD_FILES+=usr/share/man/man1/pic.1.gz
OLD_FILES+=usr/share/man/man1/psroff.1.gz
OLD_FILES+=usr/share/man/man1/refer.1.gz
-OLD_FILES+=usr/share/man/man1/soelim.1.gz
OLD_FILES+=usr/share/man/man1/tbl.1.gz
OLD_FILES+=usr/share/man/man1/tfmtodit.1.gz
OLD_FILES+=usr/share/man/man1/troff.1.gz
@@ -1737,8 +2275,6 @@ OLD_FILES+=usr/share/man/man7/groff_mmse.7.gz
OLD_FILES+=usr/share/man/man7/groff_ms.7.gz
OLD_FILES+=usr/share/man/man7/groff_trace.7.gz
OLD_FILES+=usr/share/man/man7/groff_www.7.gz
-OLD_FILES+=usr/share/man/man7/man.7.gz
-OLD_FILES+=usr/share/man/man7/mdoc.7.gz
OLD_FILES+=usr/share/man/man7/mdoc.samples.7.gz
OLD_FILES+=usr/share/man/man7/me.7.gz
OLD_FILES+=usr/share/man/man7/mm.7.gz
@@ -1918,6 +2454,20 @@ OLD_FILES+=usr/share/man/man5/qop.5.gz
OLD_FILES+=usr/share/man/man8/gssd.8.gz
.endif
+.if ${MK_HAST} == no
+OLD_FILES+=sbin/hastctl
+OLD_FILES+=sbin/hastd
+OLD_FILES+=usr/share/examples/hast/ucarp.sh
+OLD_FILES+=usr/share/examples/hast/ucarp_down.sh
+OLD_FILES+=usr/share/examples/hast/ucarp_up.sh
+OLD_FILES+=usr/share/examples/hast/vip-down.sh
+OLD_FILES+=usr/share/examples/hast/vip-up.sh
+OLD_FILES+=usr/share/man/man5/hast.conf.5.gz
+OLD_FILES+=usr/share/man/man8/hastctl.8.gz
+OLD_FILES+=usr/share/man/man8/hastd.8.gz
+OLD_DIRS+=usr/share/examples/hast
+.endif
+
.if ${MK_HESIOD} == no
OLD_FILES+=usr/bin/hesinfo
OLD_FILES+=usr/include/hesiod.h
@@ -1926,9 +2476,76 @@ OLD_FILES+=usr/share/man/man3/hesiod.3.gz
OLD_FILES+=usr/share/man/man5/hesiod.conf.5.gz
.endif
-#.if ${MK_HTML} == no
-# to be filled in
-#.endif
+.if ${MK_HTML} == no
+OLD_FILES+=usr/share/doc/ncurses/hackguide.html
+OLD_FILES+=usr/share/doc/ncurses/ncurses-intro.html
+OLD_FILES+=usr/share/doc/ntp/accopt.html
+OLD_FILES+=usr/share/doc/ntp/assoc.html
+OLD_FILES+=usr/share/doc/ntp/audio.html
+OLD_FILES+=usr/share/doc/ntp/authopt.html
+OLD_FILES+=usr/share/doc/ntp/build.html
+OLD_FILES+=usr/share/doc/ntp/clockopt.html
+OLD_FILES+=usr/share/doc/ntp/config.html
+OLD_FILES+=usr/share/doc/ntp/confopt.html
+OLD_FILES+=usr/share/doc/ntp/copyright.html
+OLD_FILES+=usr/share/doc/ntp/debug.html
+OLD_FILES+=usr/share/doc/ntp/driver1.html
+OLD_FILES+=usr/share/doc/ntp/driver10.html
+OLD_FILES+=usr/share/doc/ntp/driver11.html
+OLD_FILES+=usr/share/doc/ntp/driver12.html
+OLD_FILES+=usr/share/doc/ntp/driver16.html
+OLD_FILES+=usr/share/doc/ntp/driver18.html
+OLD_FILES+=usr/share/doc/ntp/driver19.html
+OLD_FILES+=usr/share/doc/ntp/driver2.html
+OLD_FILES+=usr/share/doc/ntp/driver20.html
+OLD_FILES+=usr/share/doc/ntp/driver22.html
+OLD_FILES+=usr/share/doc/ntp/driver26.html
+OLD_FILES+=usr/share/doc/ntp/driver27.html
+OLD_FILES+=usr/share/doc/ntp/driver28.html
+OLD_FILES+=usr/share/doc/ntp/driver29.html
+OLD_FILES+=usr/share/doc/ntp/driver3.html
+OLD_FILES+=usr/share/doc/ntp/driver30.html
+OLD_FILES+=usr/share/doc/ntp/driver32.html
+OLD_FILES+=usr/share/doc/ntp/driver33.html
+OLD_FILES+=usr/share/doc/ntp/driver34.html
+OLD_FILES+=usr/share/doc/ntp/driver35.html
+OLD_FILES+=usr/share/doc/ntp/driver36.html
+OLD_FILES+=usr/share/doc/ntp/driver37.html
+OLD_FILES+=usr/share/doc/ntp/driver4.html
+OLD_FILES+=usr/share/doc/ntp/driver5.html
+OLD_FILES+=usr/share/doc/ntp/driver6.html
+OLD_FILES+=usr/share/doc/ntp/driver7.html
+OLD_FILES+=usr/share/doc/ntp/driver8.html
+OLD_FILES+=usr/share/doc/ntp/driver9.html
+OLD_FILES+=usr/share/doc/ntp/extern.html
+OLD_FILES+=usr/share/doc/ntp/hints.html
+OLD_FILES+=usr/share/doc/ntp/howto.html
+OLD_FILES+=usr/share/doc/ntp/index.html
+OLD_FILES+=usr/share/doc/ntp/kern.html
+OLD_FILES+=usr/share/doc/ntp/ldisc.html
+OLD_FILES+=usr/share/doc/ntp/measure.html
+OLD_FILES+=usr/share/doc/ntp/miscopt.html
+OLD_FILES+=usr/share/doc/ntp/monopt.html
+OLD_FILES+=usr/share/doc/ntp/mx4200data.html
+OLD_FILES+=usr/share/doc/ntp/notes.html
+OLD_FILES+=usr/share/doc/ntp/ntpd.html
+OLD_FILES+=usr/share/doc/ntp/ntpdate.html
+OLD_FILES+=usr/share/doc/ntp/ntpdc.html
+OLD_FILES+=usr/share/doc/ntp/ntpq.html
+OLD_FILES+=usr/share/doc/ntp/ntptime.html
+OLD_FILES+=usr/share/doc/ntp/ntptrace.html
+OLD_FILES+=usr/share/doc/ntp/parsedata.html
+OLD_FILES+=usr/share/doc/ntp/parsenew.html
+OLD_FILES+=usr/share/doc/ntp/patches.html
+OLD_FILES+=usr/share/doc/ntp/porting.html
+OLD_FILES+=usr/share/doc/ntp/pps.html
+OLD_FILES+=usr/share/doc/ntp/prefer.html
+OLD_FILES+=usr/share/doc/ntp/quick.html
+OLD_FILES+=usr/share/doc/ntp/rdebug.html
+OLD_FILES+=usr/share/doc/ntp/refclock.html
+OLD_FILES+=usr/share/doc/ntp/release.html
+OLD_FILES+=usr/share/doc/ntp/tickadj.html
+.endif
.if ${MK_ICONV} == no
OLD_FILES+=usr/bin/iconv
@@ -1960,9 +2577,11 @@ OLD_FILES+=usr/sbin/ndp
OLD_FILES+=usr/sbin/rip6query
OLD_FILES+=usr/sbin/route6d
OLD_FILES+=usr/sbin/rrenumd
+OLD_FILES+=usr/sbin/rtadvctl
OLD_FILES+=usr/sbin/rtadvd
OLD_FILES+=usr/sbin/rtsold
OLD_FILES+=usr/sbin/traceroute6
+OLD_FILES+=usr/share/doc/IPv6/IMPLEMENTATION
OLD_FILES+=usr/share/man/man5/rrenumd.conf.5.gz
OLD_FILES+=usr/share/man/man5/rtadvd.conf.5.gz
OLD_FILES+=usr/share/man/man8/ip6addrctl.8.gz
@@ -1972,6 +2591,7 @@ OLD_FILES+=usr/share/man/man8/ping6.8.gz
OLD_FILES+=usr/share/man/man8/rip6query.8.gz
OLD_FILES+=usr/share/man/man8/route6d.8.gz
OLD_FILES+=usr/share/man/man8/rrenumd.8.gz
+OLD_FILES+=usr/share/man/man8/rtadvctl.8.gz
OLD_FILES+=usr/share/man/man8/rtadvd.8.gz
OLD_FILES+=usr/share/man/man8/rtsol.8.gz
OLD_FILES+=usr/share/man/man8/rtsold.8.gz
@@ -1982,40 +2602,6 @@ OLD_FILES+=usr/share/man/man8/traceroute6.8.gz
OLD_FILES+=rescue/ping6
.endif
-.if ${MK_INFO} == no
-OLD_FILES+=usr/bin/info
-OLD_FILES+=usr/bin/infokey
-OLD_FILES+=usr/bin/install-info
-OLD_FILES+=usr/bin/makeinfo
-OLD_FILES+=usr/bin/texindex
-OLD_FILES+=usr/share/info/am-utils.info.gz
-OLD_FILES+=usr/share/info/as-utils.info.gz
-OLD_FILES+=usr/share/info/binutils.info.gz
-OLD_FILES+=usr/share/info/com_err.info.gz
-OLD_FILES+=usr/share/info/diff.info.gz
-OLD_FILES+=usr/share/info/gdb.info.gz
-OLD_FILES+=usr/share/info/gdbint.info.gz
-OLD_FILES+=usr/share/info/gperf.info.gz
-OLD_FILES+=usr/share/info/grep.info.gz
-OLD_FILES+=usr/share/info/groff.info.gz
-OLD_FILES+=usr/share/info/heimdal.info.gz
-OLD_FILES+=usr/share/info/history.info.gz
-OLD_FILES+=usr/share/info/info-stnd.info.gz
-OLD_FILES+=usr/share/info/info.info.gz
-OLD_FILES+=usr/share/info/ld.info.gz
-OLD_FILES+=usr/share/info/regex.info.gz
-OLD_FILES+=usr/share/info/rluserman.info.gz
-OLD_FILES+=usr/share/info/stabs.info.gz
-OLD_FILES+=usr/share/info/texinfo.info.gz
-OLD_FILES+=usr/share/man/man1/info.1.gz
-OLD_FILES+=usr/share/man/man1/infokey.1.gz
-OLD_FILES+=usr/share/man/man1/install-info.1.gz
-OLD_FILES+=usr/share/man/man1/makeinfo.1.gz
-OLD_FILES+=usr/share/man/man1/texindex.1.gz
-OLD_FILES+=usr/share/man/man5/info.5.gz
-OLD_FILES+=usr/share/man/man5/texinfo.5.gz
-.endif
-
.if ${MK_IPFILTER} == no
OLD_FILES+=etc/periodic/security/510.ipfdenied
OLD_FILES+=etc/periodic/security/610.ipf6denied
@@ -2110,16 +2696,41 @@ OLD_FILES+=usr/share/man/man8/ipfwpcap.8.gz
OLD_FILES+=usr/share/man/man8/natd.8.gz
.endif
+.if ${MK_ISCSI} == no
+OLD_FILES+=etc/rc.d/iscsictl
+OLD_FILES+=etc/rc.d/iscsid
+OLD_FILES+=sbin/iscontrol
+OLD_FILES+=usr/bin/iscsictl
+OLD_FILES+=usr/sbin/iscsid
+OLD_FILES+=usr/share/man/man4/iscsi.4.gz
+OLD_FILES+=usr/share/man/man4/iscsi_initiator.4.gz
+OLD_FILES+=usr/share/man/man5/iscsi.conf.5.gz
+OLD_FILES+=usr/share/man/man8/iscontrol.8.gz
+OLD_FILES+=usr/share/man/man8/iscsictl.8.gz
+OLD_FILES+=usr/share/man/man8/iscsid.8.gz
+.endif
+
.if ${MK_JAIL} == no
+OLD_FILES+=etc/rc.d/jail
OLD_FILES+=usr/sbin/jail
OLD_FILES+=usr/sbin/jexec
OLD_FILES+=usr/sbin/jls
+OLD_FILES+=usr/share/man/man5/jail.conf.5.gz
OLD_FILES+=usr/share/man/man8/jail.8.gz
OLD_FILES+=usr/share/man/man8/jexec.8.gz
OLD_FILES+=usr/share/man/man8/jls.8.gz
.endif
+.if ${MK_KDUMP} == no
+OLD_FILES+=usr/bin/kdump
+OLD_FILES+=usr/bin/truss
+OLD_FILES+=usr/share/man/man1/kdump.1.gz
+OLD_FILES+=usr/share/man/man1/truss.1.gz
+.endif
+
.if ${MK_KERBEROS} == no
+OLD_FILES+=etc/rc.d/ipropd_master
+OLD_FILES+=etc/rc.d/ipropd_slave
OLD_FILES+=usr/bin/compile_et
OLD_FILES+=usr/bin/hxtool
OLD_FILES+=usr/bin/kadmin
@@ -3093,6 +3704,22 @@ OLD_FILES+=usr/share/man/man8/string2key.8.gz
OLD_FILES+=usr/share/man/man8/verify_krb5_conf.8.gz
.endif
+.if ${MK_KERBEROS_SUPPORT} == no
+OLD_FILES+=usr/bin/compile_et
+OLD_FILES+=usr/include/com_err.h
+OLD_FILES+=usr/include/com_right.h
+OLD_FILES+=usr/lib/libcom_err.a
+OLD_FILES+=usr/lib/libcom_err.so
+OLD_LIBS+=usr/lib/libcom_err.so.5
+OLD_FILES+=usr/lib/libcom_err_p.a
+OLD_FILES+=usr/lib32/libcom_err.a
+OLD_FILES+=usr/lib32/libcom_err.so
+OLD_LIBS+=usr/lib32/libcom_err.so.5
+OLD_FILES+=usr/lib32/libcom_err_p.a
+OLD_FILES+=usr/share/man/man1/compile_et.1.gz
+OLD_FILES+=usr/share/man/man3/com_err.3.gz
+.endif
+
.if ${MK_LDNS} == no
OLD_FILES+=usr/lib/private/libldns.a
OLD_FILES+=usr/lib/private/libldns.so
@@ -3113,6 +3740,21 @@ OLD_FILES+=usr/bin/host
OLD_FILES+=usr/share/man/man1/host.1.gz
.endif
+.if ${MK_LEGACY_CONSOLE} == no
+OLD_FILES+=usr/sbin/kbdcontrol
+OLD_FILES+=usr/sbin/kbdmap
+OLD_FILES+=usr/sbin/moused
+OLD_FILES+=usr/sbin/vidcontrol
+OLD_FILES+=usr/sbin/vidfont
+OLD_FILES+=usr/share/man/man1/kbdcontrol.1.gz
+OLD_FILES+=usr/share/man/man1/kbdmap.1.gz
+OLD_FILES+=usr/share/man/man1/vidcontrol.1.gz
+OLD_FILES+=usr/share/man/man1/vidfont.1.gz
+OLD_FILES+=usr/share/man/man5/kbdmap.5.gz
+OLD_FILES+=usr/share/man/man5/keymap.5.gz
+OLD_FILES+=usr/share/man/man8/moused.8.gz
+.endif
+
#.if ${MK_LIB32} == no
# to be filled in
#.endif
@@ -3135,6 +3777,7 @@ OLD_FILES+=usr/include/c++/v1/__functional_base_03
OLD_FILES+=usr/include/c++/v1/__hash_table
OLD_FILES+=usr/include/c++/v1/__locale
OLD_FILES+=usr/include/c++/v1/__mutex_base
+OLD_FILES+=usr/include/c++/v1/__refstring
OLD_FILES+=usr/include/c++/v1/__split_buffer
OLD_FILES+=usr/include/c++/v1/__sso_allocator
OLD_FILES+=usr/include/c++/v1/__std_stream
@@ -3178,8 +3821,12 @@ OLD_FILES+=usr/include/c++/v1/cwctype
OLD_FILES+=usr/include/c++/v1/cxxabi.h
OLD_FILES+=usr/include/c++/v1/deque
OLD_FILES+=usr/include/c++/v1/exception
+OLD_FILES+=usr/include/c++/v1/experimental/__config
OLD_FILES+=usr/include/c++/v1/experimental/dynarray
OLD_FILES+=usr/include/c++/v1/experimental/optional
+OLD_FILES+=usr/include/c++/v1/experimental/string_view
+OLD_FILES+=usr/include/c++/v1/experimental/type_traits
+OLD_FILES+=usr/include/c++/v1/experimental/utility
OLD_FILES+=usr/include/c++/v1/ext/__hash
OLD_FILES+=usr/include/c++/v1/ext/hash_map
OLD_FILES+=usr/include/c++/v1/ext/hash_set
@@ -3209,6 +3856,7 @@ OLD_FILES+=usr/include/c++/v1/ratio
OLD_FILES+=usr/include/c++/v1/regex
OLD_FILES+=usr/include/c++/v1/scoped_allocator
OLD_FILES+=usr/include/c++/v1/set
+OLD_FILES+=usr/include/c++/v1/shared_mutex
OLD_FILES+=usr/include/c++/v1/sstream
OLD_FILES+=usr/include/c++/v1/stack
OLD_FILES+=usr/include/c++/v1/stdexcept
@@ -3218,6 +3866,103 @@ OLD_FILES+=usr/include/c++/v1/strstream
OLD_FILES+=usr/include/c++/v1/system_error
OLD_FILES+=usr/include/c++/v1/tgmath.h
OLD_FILES+=usr/include/c++/v1/thread
+OLD_FILES+=usr/include/c++/v1/tr1/__bit_reference
+OLD_FILES+=usr/include/c++/v1/tr1/__config
+OLD_FILES+=usr/include/c++/v1/tr1/__debug
+OLD_FILES+=usr/include/c++/v1/tr1/__functional_03
+OLD_FILES+=usr/include/c++/v1/tr1/__functional_base
+OLD_FILES+=usr/include/c++/v1/tr1/__functional_base_03
+OLD_FILES+=usr/include/c++/v1/tr1/__hash_table
+OLD_FILES+=usr/include/c++/v1/tr1/__locale
+OLD_FILES+=usr/include/c++/v1/tr1/__mutex_base
+OLD_FILES+=usr/include/c++/v1/tr1/__refstring
+OLD_FILES+=usr/include/c++/v1/tr1/__split_buffer
+OLD_FILES+=usr/include/c++/v1/tr1/__sso_allocator
+OLD_FILES+=usr/include/c++/v1/tr1/__std_stream
+OLD_FILES+=usr/include/c++/v1/tr1/__tree
+OLD_FILES+=usr/include/c++/v1/tr1/__tuple
+OLD_FILES+=usr/include/c++/v1/tr1/__tuple_03
+OLD_FILES+=usr/include/c++/v1/tr1/__undef_min_max
+OLD_FILES+=usr/include/c++/v1/tr1/algorithm
+OLD_FILES+=usr/include/c++/v1/tr1/array
+OLD_FILES+=usr/include/c++/v1/tr1/atomic
+OLD_FILES+=usr/include/c++/v1/tr1/bitset
+OLD_FILES+=usr/include/c++/v1/tr1/cassert
+OLD_FILES+=usr/include/c++/v1/tr1/ccomplex
+OLD_FILES+=usr/include/c++/v1/tr1/cctype
+OLD_FILES+=usr/include/c++/v1/tr1/cerrno
+OLD_FILES+=usr/include/c++/v1/tr1/cfenv
+OLD_FILES+=usr/include/c++/v1/tr1/cfloat
+OLD_FILES+=usr/include/c++/v1/tr1/chrono
+OLD_FILES+=usr/include/c++/v1/tr1/cinttypes
+OLD_FILES+=usr/include/c++/v1/tr1/ciso646
+OLD_FILES+=usr/include/c++/v1/tr1/climits
+OLD_FILES+=usr/include/c++/v1/tr1/clocale
+OLD_FILES+=usr/include/c++/v1/tr1/cmath
+OLD_FILES+=usr/include/c++/v1/tr1/codecvt
+OLD_FILES+=usr/include/c++/v1/tr1/complex
+OLD_FILES+=usr/include/c++/v1/tr1/complex.h
+OLD_FILES+=usr/include/c++/v1/tr1/condition_variable
+OLD_FILES+=usr/include/c++/v1/tr1/csetjmp
+OLD_FILES+=usr/include/c++/v1/tr1/csignal
+OLD_FILES+=usr/include/c++/v1/tr1/cstdarg
+OLD_FILES+=usr/include/c++/v1/tr1/cstdbool
+OLD_FILES+=usr/include/c++/v1/tr1/cstddef
+OLD_FILES+=usr/include/c++/v1/tr1/cstdint
+OLD_FILES+=usr/include/c++/v1/tr1/cstdio
+OLD_FILES+=usr/include/c++/v1/tr1/cstdlib
+OLD_FILES+=usr/include/c++/v1/tr1/cstring
+OLD_FILES+=usr/include/c++/v1/tr1/ctgmath
+OLD_FILES+=usr/include/c++/v1/tr1/ctime
+OLD_FILES+=usr/include/c++/v1/tr1/cwchar
+OLD_FILES+=usr/include/c++/v1/tr1/cwctype
+OLD_FILES+=usr/include/c++/v1/tr1/deque
+OLD_FILES+=usr/include/c++/v1/tr1/exception
+OLD_FILES+=usr/include/c++/v1/tr1/forward_list
+OLD_FILES+=usr/include/c++/v1/tr1/fstream
+OLD_FILES+=usr/include/c++/v1/tr1/functional
+OLD_FILES+=usr/include/c++/v1/tr1/future
+OLD_FILES+=usr/include/c++/v1/tr1/initializer_list
+OLD_FILES+=usr/include/c++/v1/tr1/iomanip
+OLD_FILES+=usr/include/c++/v1/tr1/ios
+OLD_FILES+=usr/include/c++/v1/tr1/iosfwd
+OLD_FILES+=usr/include/c++/v1/tr1/iostream
+OLD_FILES+=usr/include/c++/v1/tr1/istream
+OLD_FILES+=usr/include/c++/v1/tr1/iterator
+OLD_FILES+=usr/include/c++/v1/tr1/limits
+OLD_FILES+=usr/include/c++/v1/tr1/list
+OLD_FILES+=usr/include/c++/v1/tr1/locale
+OLD_FILES+=usr/include/c++/v1/tr1/map
+OLD_FILES+=usr/include/c++/v1/tr1/memory
+OLD_FILES+=usr/include/c++/v1/tr1/mutex
+OLD_FILES+=usr/include/c++/v1/tr1/new
+OLD_FILES+=usr/include/c++/v1/tr1/numeric
+OLD_FILES+=usr/include/c++/v1/tr1/ostream
+OLD_FILES+=usr/include/c++/v1/tr1/queue
+OLD_FILES+=usr/include/c++/v1/tr1/random
+OLD_FILES+=usr/include/c++/v1/tr1/ratio
+OLD_FILES+=usr/include/c++/v1/tr1/regex
+OLD_FILES+=usr/include/c++/v1/tr1/scoped_allocator
+OLD_FILES+=usr/include/c++/v1/tr1/set
+OLD_FILES+=usr/include/c++/v1/tr1/shared_mutex
+OLD_FILES+=usr/include/c++/v1/tr1/sstream
+OLD_FILES+=usr/include/c++/v1/tr1/stack
+OLD_FILES+=usr/include/c++/v1/tr1/stdexcept
+OLD_FILES+=usr/include/c++/v1/tr1/streambuf
+OLD_FILES+=usr/include/c++/v1/tr1/string
+OLD_FILES+=usr/include/c++/v1/tr1/strstream
+OLD_FILES+=usr/include/c++/v1/tr1/system_error
+OLD_FILES+=usr/include/c++/v1/tr1/tgmath.h
+OLD_FILES+=usr/include/c++/v1/tr1/thread
+OLD_FILES+=usr/include/c++/v1/tr1/tuple
+OLD_FILES+=usr/include/c++/v1/tr1/type_traits
+OLD_FILES+=usr/include/c++/v1/tr1/typeindex
+OLD_FILES+=usr/include/c++/v1/tr1/typeinfo
+OLD_FILES+=usr/include/c++/v1/tr1/unordered_map
+OLD_FILES+=usr/include/c++/v1/tr1/unordered_set
+OLD_FILES+=usr/include/c++/v1/tr1/utility
+OLD_FILES+=usr/include/c++/v1/tr1/valarray
+OLD_FILES+=usr/include/c++/v1/tr1/vector
OLD_FILES+=usr/include/c++/v1/tuple
OLD_FILES+=usr/include/c++/v1/type_traits
OLD_FILES+=usr/include/c++/v1/typeindex
@@ -3230,6 +3975,14 @@ OLD_FILES+=usr/include/c++/v1/unwind.h
OLD_FILES+=usr/include/c++/v1/utility
OLD_FILES+=usr/include/c++/v1/valarray
OLD_FILES+=usr/include/c++/v1/vector
+OLD_FILES+=usr/lib32/libc++.a
+OLD_FILES+=usr/lib32/libc++.so
+OLD_LIBS+=usr/lib32/libc++.so.1
+OLD_FILES+=usr/lib32/libc++_p.a
+OLD_FILES+=usr/lib32/libcxxrt.a
+OLD_FILES+=usr/lib32/libcxxrt.so
+OLD_LIBS+=usr/lib32/libcxxrt.so.1
+OLD_FILES+=usr/lib32/libcxxrt_p.a
OLD_DIRS+=usr/include/c++/v1/experimental
OLD_DIRS+=usr/include/c++/v1/ext
OLD_DIRS+=usr/include/c++/v1
@@ -3239,9 +3992,1039 @@ OLD_DIRS+=usr/include/c++/v1
# to be filled in
#.endif
-#.if ${MK_LOCALES} == no
-# to be filled in
-#.endif
+.if ${MK_LOCALES} == no
+OLD_FILES+=usr/share/locale/UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/af_ZA.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/af_ZA.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/am_ET.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_COLLATE
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_CTYPE
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_MESSAGES
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_MONETARY
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_NUMERIC
+OLD_FILES+=usr/share/locale/be_BY.CP1131/LC_TIME
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_COLLATE
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_CTYPE
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_MESSAGES
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_MONETARY
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_NUMERIC
+OLD_FILES+=usr/share/locale/be_BY.CP1251/LC_TIME
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_COLLATE
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_CTYPE
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_MONETARY
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_NUMERIC
+OLD_FILES+=usr/share/locale/be_BY.ISO8859-5/LC_TIME
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/be_BY.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_COLLATE
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_CTYPE
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_MESSAGES
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_MONETARY
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_NUMERIC
+OLD_FILES+=usr/share/locale/bg_BG.CP1251/LC_TIME
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/bg_BG.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_AD.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_AD.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_ES.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_ES.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_FR.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_FR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_IT.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ca_IT.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/cs_CZ.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/cs_CZ.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/da_DK.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/da_DK.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_AT.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_AT.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_CH.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_CH.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_DE.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/de_DE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_COLLATE
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_CTYPE
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_MONETARY
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_NUMERIC
+OLD_FILES+=usr/share/locale/el_GR.ISO8859-7/LC_TIME
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/el_GR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_AU.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_AU.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_CA.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_CA.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_GB.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_GB.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_GB.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_IE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_NZ.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_NZ.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_US.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_US.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/en_US.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/es_ES.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/es_ES.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/et_EE.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/et_EE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/eu_ES.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/eu_ES.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fi_FI.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fi_FI.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_BE.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_BE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CA.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CH.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_CH.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_FR.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/fr_FR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/he_IL.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_COLLATE
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_CTYPE
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_MONETARY
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hi_IN.ISCII-DEV/LC_TIME
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hr_HR.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hr_HR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hu_HU.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hu_HU.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hy_AM.ARMSCII-8/LC_TIME
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/hy_AM.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/is_IS.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/is_IS.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_CH.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_CH.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_IT.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/it_IT.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_COLLATE
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_CTYPE
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_MONETARY
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ja_JP.SJIS/LC_TIME
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ja_JP.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_COLLATE
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_CTYPE
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_MONETARY
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ja_JP.eucJP/LC_TIME
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_COLLATE
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_CTYPE
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MESSAGES
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MONETARY
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_NUMERIC
+OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_TIME
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/kk_KZ.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_COLLATE
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_CTYPE
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_MONETARY
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ko_KR.CP949/LC_TIME
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ko_KR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_COLLATE
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_CTYPE
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_MONETARY
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ko_KR.eucKR/LC_TIME
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_TIME
+OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_COLLATE
+OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_CTYPE
+OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_TIME
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_COLLATE
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_CTYPE
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_MONETARY
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_NUMERIC
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-13/LC_TIME
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_COLLATE
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_CTYPE
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MONETARY
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_NUMERIC
+OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_TIME
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/lt_LT.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_COLLATE
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_CTYPE
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_MESSAGES
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_MONETARY
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_NUMERIC
+OLD_FILES+=usr/share/locale/lv_LV.ISO8859-13/LC_TIME
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/lv_LV.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nb_NO.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nb_NO.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_BE.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_BE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_NL.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nl_NL.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nn_NO.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/nn_NO.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pl_PL.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pl_PL.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pt_BR.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pt_BR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pt_PT.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/pt_PT.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ro_RO.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ro_RO.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_COLLATE
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_CTYPE
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_MONETARY
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ru_RU.CP1251/LC_TIME
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_COLLATE
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_CTYPE
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_MONETARY
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ru_RU.CP866/LC_TIME
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_COLLATE
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_CTYPE
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_MONETARY
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ru_RU.ISO8859-5/LC_TIME
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_COLLATE
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_CTYPE
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_MONETARY
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ru_RU.KOI8-R/LC_TIME
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/ru_RU.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sk_SK.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sk_SK.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sl_SI.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sl_SI.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_COLLATE
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_CTYPE
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MONETARY
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_TIME
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_COLLATE
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_CTYPE
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MONETARY
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_TIME
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_COLLATE
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_CTYPE
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_MONETARY
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-1/LC_TIME
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_COLLATE
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_CTYPE
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_MONETARY
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sv_SE.ISO8859-15/LC_TIME
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/sv_SE.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_COLLATE
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_CTYPE
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_MONETARY
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_NUMERIC
+OLD_FILES+=usr/share/locale/tr_TR.ISO8859-9/LC_TIME
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/tr_TR.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_COLLATE
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_CTYPE
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_MESSAGES
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_MONETARY
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_NUMERIC
+OLD_FILES+=usr/share/locale/uk_UA.CP1251/LC_TIME
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_COLLATE
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_CTYPE
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_MONETARY
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_NUMERIC
+OLD_FILES+=usr/share/locale/uk_UA.ISO8859-5/LC_TIME
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_COLLATE
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_CTYPE
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_MONETARY
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_NUMERIC
+OLD_FILES+=usr/share/locale/uk_UA.KOI8-U/LC_TIME
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/uk_UA.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_CN.GB18030/LC_TIME
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_CN.GB2312/LC_TIME
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_CN.GBK/LC_TIME
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_CN.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_CN.eucCN/LC_TIME
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_TIME
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_HK.UTF-8/LC_TIME
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_TW.Big5/LC_TIME
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_COLLATE
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_CTYPE
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_MESSAGES
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_MONETARY
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_NUMERIC
+OLD_FILES+=usr/share/locale/zh_TW.UTF-8/LC_TIME
+OLD_FILES+=usr/tests/lib/libc/locale/Kyuafile
+OLD_FILES+=usr/tests/lib/libc/locale/io_test
+OLD_FILES+=usr/tests/lib/libc/locale/mbrtowc_test
+OLD_FILES+=usr/tests/lib/libc/locale/mbsnrtowcs_test
+OLD_FILES+=usr/tests/lib/libc/locale/mbstowcs_test
+OLD_FILES+=usr/tests/lib/libc/locale/mbtowc_test
+OLD_FILES+=usr/tests/lib/libc/locale/wcscspn_test
+OLD_FILES+=usr/tests/lib/libc/locale/wcspbrk_test
+OLD_FILES+=usr/tests/lib/libc/locale/wcsspn_test
+OLD_FILES+=usr/tests/lib/libc/locale/wcstod_test
+OLD_FILES+=usr/tests/lib/libc/locale/wctomb_test
+.endif
.if ${MK_LOCATE} == no
OLD_FILES+=etc/locate.rc
@@ -3260,6 +5043,7 @@ OLD_FILES+=usr/share/man/man8/updatedb.8.gz
.if ${MK_LPR} == no
OLD_FILES+=etc/hosts.lpd
OLD_FILES+=etc/printcap
+OLD_FILES+=etc/rc.d/lpd
OLD_FILES+=usr/bin/lp
OLD_FILES+=usr/bin/lpq
OLD_FILES+=usr/bin/lpr
@@ -3292,6 +5076,10 @@ OLD_FILES+=usr/share/man/man8/pac.8.gz
.endif
.if ${MK_MAIL} == no
+OLD_FILES+=etc/aliases
+OLD_FILES+=etc/mail.rc
+OLD_FILES+=etc/mail/aliases
+OLD_FILES+=etc/mail/mailer.conf
OLD_FILES+=etc/periodic/daily/130.clean-msgs
OLD_FILES+=usr/bin/Mail
OLD_FILES+=usr/bin/biff
@@ -3320,10 +5108,401 @@ OLD_FILES+=usr/sbin/mailwrapper
OLD_FILES+=usr/share/man/man8/mailwrapper.8.gz
.endif
-#.if ${MK_MAN} == no
-# This should add a dependency to a special target which removes all man pages.
-# Listing all of them here is overkill.
-#.endif
+.if ${MK_MAKE} == no
+OLD_FILES+=usr/bin/make
+OLD_FILES+=usr/share/man/man1/make.1.gz
+OLD_FILES+=usr/share/mk/atf.test.mk
+OLD_FILES+=usr/share/mk/bsd.README
+OLD_FILES+=usr/share/mk/bsd.arch.inc.mk
+OLD_FILES+=usr/share/mk/bsd.compiler.mk
+OLD_FILES+=usr/share/mk/bsd.cpu.mk
+OLD_FILES+=usr/share/mk/bsd.crunchgen.mk
+OLD_FILES+=usr/share/mk/bsd.dep.mk
+OLD_FILES+=usr/share/mk/bsd.doc.mk
+OLD_FILES+=usr/share/mk/bsd.dtb.mk
+OLD_FILES+=usr/share/mk/bsd.endian.mk
+OLD_FILES+=usr/share/mk/bsd.files.mk
+OLD_FILES+=usr/share/mk/bsd.incs.mk
+OLD_FILES+=usr/share/mk/bsd.info.mk
+OLD_FILES+=usr/share/mk/bsd.init.mk
+OLD_FILES+=usr/share/mk/bsd.kmod.mk
+OLD_FILES+=usr/share/mk/bsd.lib.mk
+OLD_FILES+=usr/share/mk/bsd.libnames.mk
+OLD_FILES+=usr/share/mk/bsd.links.mk
+OLD_FILES+=usr/share/mk/bsd.man.mk
+OLD_FILES+=usr/share/mk/bsd.mkopt.mk
+OLD_FILES+=usr/share/mk/bsd.nls.mk
+OLD_FILES+=usr/share/mk/bsd.obj.mk
+OLD_FILES+=usr/share/mk/bsd.opts.mk
+OLD_FILES+=usr/share/mk/bsd.own.mk
+OLD_FILES+=usr/share/mk/bsd.port.mk
+OLD_FILES+=usr/share/mk/bsd.port.options.mk
+OLD_FILES+=usr/share/mk/bsd.port.post.mk
+OLD_FILES+=usr/share/mk/bsd.port.pre.mk
+OLD_FILES+=usr/share/mk/bsd.port.subdir.mk
+OLD_FILES+=usr/share/mk/bsd.prog.mk
+OLD_FILES+=usr/share/mk/bsd.progs.mk
+OLD_FILES+=usr/share/mk/bsd.snmpmod.mk
+OLD_FILES+=usr/share/mk/bsd.subdir.mk
+OLD_FILES+=usr/share/mk/bsd.symver.mk
+OLD_FILES+=usr/share/mk/bsd.sys.mk
+OLD_FILES+=usr/share/mk/bsd.test.mk
+OLD_FILES+=usr/share/mk/plain.test.mk
+OLD_FILES+=usr/share/mk/suite.test.mk
+OLD_FILES+=usr/share/mk/sys.mk
+OLD_FILES+=usr/share/mk/tap.test.mk
+OLD_FILES+=usr/share/mk/version_gen.awk
+OLD_FILES+=usr/tests/usr.bin/bmake/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.status.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stderr.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/expected.stdout.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd/libtest.a
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.status.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stderr.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/expected.stdout.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_44bsd_mod/libtest.a
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.status.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stderr.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.3
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.4
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.5
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.6
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/expected.stdout.7
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/archives/fmt_oldbsd/libtest.a
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t0/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t0/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t0/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t0/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t0/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t1/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t2/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t3/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t3/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t3/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t3/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/basic/t3/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/common.sh
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/ellipsis/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/empty/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/joberr/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/execution/plus/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/builtin/sh
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/meta/sh
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path/sh
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/path_select/shell
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/replace/shell
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/shell/select/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/TEST1.a
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/basic/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/TEST1.a
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/TEST2.a
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild1/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/TEST1.a
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/TEST2.a
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/suffixes/src_wild2/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/directive-t0/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.status.3
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.status.4
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.status.5
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stderr.3
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stderr.4
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stderr.5
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stdout.3
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stdout.4
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/expected.stdout.5
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/enl/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/funny-targets/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/syntax/semi/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/1/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/mk/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t0/mk/sys.mk
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/cleanup
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/1/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/mk/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t1/mk/sys.mk
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/cleanup
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/1/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/mk/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/sysmk/t2/mk/sys.mk
+OLD_FILES+=usr/tests/usr.bin/bmake/test-new.mk
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_M/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.status.3
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stderr.3
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/expected.stdout.3
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/modifier_t/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.status.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.stderr.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/expected.stdout.2
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/opt_V/legacy_test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/Kyuafile
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/Makefile.test
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/expected.status.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/expected.stderr.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/expected.stdout.1
+OLD_FILES+=usr/tests/usr.bin/bmake/variables/t0/legacy_test
+.endif
+
+.if ${MK_MAN} == no
+MAN_FILES!=find ${DESTDIR}/usr/share/man ${DESTDIR}/usr/share/openssl/man -type f | sed -e 's,^${DESTDIR}/,,'; echo
+OLD_FILES+=${MAN_FILES}
+.endif
+
+.if ${MK_MAN_UTILS} == no
+OLD_FILES+=etc/periodic/weekly/320.whatis
+OLD_FILES+=etc/periodic/weekly/330.catman
+OLD_FILES+=usr/bin/apropos
+OLD_FILES+=usr/bin/catman
+OLD_FILES+=usr/bin/makewhatis
+OLD_FILES+=usr/bin/man
+OLD_FILES+=usr/bin/manpath
+OLD_FILES+=usr/bin/whatis
+OLD_FILES+=usr/libexec/catman.local
+OLD_FILES+=usr/libexec/makewhatis.local
+OLD_FILES+=usr/sbin/manctl
+OLD_FILES+=usr/share/man/man1/apropos.1.gz
+OLD_FILES+=usr/share/man/man1/catman.1.gz
+OLD_FILES+=usr/share/man/man1/makewhatis.1.gz
+OLD_FILES+=usr/share/man/man1/man.1.gz
+OLD_FILES+=usr/share/man/man1/manpath.1.gz
+OLD_FILES+=usr/share/man/man1/whatis.1.gz
+OLD_FILES+=usr/share/man/man5/man.conf.5.gz
+OLD_FILES+=usr/share/man/man8/catman.local.8.gz
+OLD_FILES+=usr/share/man/man8/makewhatis.local.8.gz
+OLD_FILES+=usr/share/man/man8/manctl.8.gz
+OLD_FILES+=usr/share/man/whatis
+OLD_FILES+=usr/share/openssl/man/whatis
+.endif
.if ${MK_NDIS} == no
OLD_FILES+=usr/sbin/ndiscvt
@@ -3338,6 +5517,52 @@ OLD_FILES+=usr/bin/nc
OLD_FILES+=usr/share/man/man1/nc.1.gz
.endif
+.if ${MK_NETGRAPH} == no
+OLD_FILES+=usr/include/netgraph.h
+OLD_FILES+=usr/lib/libnetgraph.a
+OLD_FILES+=usr/lib/libnetgraph.so
+OLD_LIBS+=usr/lib/libnetgraph.so.4
+OLD_FILES+=usr/lib/libnetgraph_p.a
+OLD_FILES+=usr/lib32/libnetgraph.a
+OLD_FILES+=usr/lib32/libnetgraph.so
+OLD_LIBS+=usr/lib32/libnetgraph.so.4
+OLD_FILES+=usr/lib32/libnetgraph_p.a
+OLD_FILES+=usr/libexec/pppoed
+OLD_FILES+=usr/sbin/flowctl
+OLD_FILES+=usr/sbin/lmcconfig
+OLD_FILES+=usr/sbin/ngctl
+OLD_FILES+=usr/sbin/nghook
+OLD_FILES+=usr/share/man/man3/NgAllocRecvAsciiMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgAllocRecvData.3.gz
+OLD_FILES+=usr/share/man/man3/NgAllocRecvMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgMkSockNode.3.gz
+OLD_FILES+=usr/share/man/man3/NgNameNode.3.gz
+OLD_FILES+=usr/share/man/man3/NgRecvAsciiMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgRecvData.3.gz
+OLD_FILES+=usr/share/man/man3/NgRecvMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgSendAsciiMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgSendData.3.gz
+OLD_FILES+=usr/share/man/man3/NgSendMsg.3.gz
+OLD_FILES+=usr/share/man/man3/NgSendMsgReply.3.gz
+OLD_FILES+=usr/share/man/man3/NgSetDebug.3.gz
+OLD_FILES+=usr/share/man/man3/NgSetErrLog.3.gz
+OLD_FILES+=usr/share/man/man3/netgraph.3.gz
+OLD_FILES+=usr/share/man/man8/flowctl.8.gz
+OLD_FILES+=usr/share/man/man8/lmcconfig.8.gz
+OLD_FILES+=usr/share/man/man8/ngctl.8.gz
+OLD_FILES+=usr/share/man/man8/nghook.8.gz
+OLD_FILES+=usr/share/man/man8/pppoed.8.gz
+.endif
+
+.if ${MK_NETGRAPH_SUPPORT} == no
+OLD_FILES+=usr/include/bsnmp/snmp_netgraph.h
+OLD_FILES+=usr/lib/snmp_netgraph.so
+OLD_LIBS+=usr/lib/snmp_netgraph.so.6
+OLD_FILES+=usr/share/man/man3/snmp_netgraph.3.gz
+OLD_FILES+=usr/share/snmp/defs/netgraph_tree.def
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-NETGRAPH.txt
+.endif
+
.if ${MK_NIS} == no
OLD_FILES+=usr/bin/ypcat
OLD_FILES+=usr/bin/ypchfn
@@ -3394,8 +5619,148 @@ OLD_FILES+=var/yp/Makefile.dist
.endif
.if ${MK_NLS} == no
+OLD_FILES+=usr/share/nls/C/ee.cat
+OLD_FILES+=usr/share/nls/be_BY.UTF-8/libc.cat
+OLD_FILES+=usr/share/nls/ca_ES.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/de_AT.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/de_AT.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/de_AT.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/de_AT.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/de_AT.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/de_CH.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/de_CH.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/de_CH.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/de_CH.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/de_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/de_DE.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/de_DE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/el_GR.ISO8859-7/libc.cat
+OLD_FILES+=usr/share/nls/el_GR.ISO8859-7/tcsh.cat
+OLD_FILES+=usr/share/nls/el_GR.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/en_US.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/en_US.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/es_ES.ISO8859-1/grep.cat
+OLD_FILES+=usr/share/nls/es_ES.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/es_ES.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/es_ES.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/es_ES.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/et_EE.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/et_EE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fi_FI.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/fi_FI.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/fi_FI.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/fi_FI.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_BE.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/fr_BE.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_BE.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/fr_BE.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_BE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CA.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/fr_CA.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CA.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/fr_CA.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CA.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CH.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/fr_CH.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CH.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/fr_CH.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-15/ee.cat
+OLD_FILES+=usr/share/nls/fr_FR.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_FR.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/gl_ES.ISO8859-1/grep.cat
+OLD_FILES+=usr/share/nls/gl_ES.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/ee.cat
+OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/grep.cat
+OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/libc.cat
+OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/sort.cat
+OLD_FILES+=usr/share/nls/it_CH.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/it_CH.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/it_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/it_IT.ISO8859-1/tcsh.cat
+OLD_FILES+=usr/share/nls/it_IT.ISO8859-15/libc.cat
+OLD_FILES+=usr/share/nls/it_IT.ISO8859-15/tcsh.cat
+OLD_FILES+=usr/share/nls/it_IT.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/ja_JP.SJIS/grep.cat
+OLD_FILES+=usr/share/nls/ja_JP.SJIS/tcsh.cat
+OLD_FILES+=usr/share/nls/ja_JP.UTF-8/grep.cat
+OLD_FILES+=usr/share/nls/ja_JP.UTF-8/libc.cat
+OLD_FILES+=usr/share/nls/ja_JP.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/ja_JP.eucJP/grep.cat
+OLD_FILES+=usr/share/nls/ja_JP.eucJP/libc.cat
+OLD_FILES+=usr/share/nls/ja_JP.eucJP/tcsh.cat
+OLD_FILES+=usr/share/nls/ko_KR.UTF-8/libc.cat
+OLD_FILES+=usr/share/nls/ko_KR.eucKR/libc.cat
+OLD_FILES+=usr/share/nls/mn_MN.UTF-8/libc.cat
+OLD_FILES+=usr/share/nls/nl_NL.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/no_NO.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/pl_PL.ISO8859-2/ee.cat
+OLD_FILES+=usr/share/nls/pl_PL.ISO8859-2/libc.cat
+OLD_FILES+=usr/share/nls/pt_BR.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/pt_BR.ISO8859-1/grep.cat
+OLD_FILES+=usr/share/nls/pt_BR.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/pt_PT.ISO8859-1/ee.cat
+OLD_FILES+=usr/share/nls/ru_RU.CP1251/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.CP866/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.ISO8859-5/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/ee.cat
+OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/grep.cat
+OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/libc.cat
+OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/sk_SK.ISO8859-2/libc.cat
+OLD_FILES+=usr/share/nls/sv_SE.ISO8859-1/libc.cat
+OLD_FILES+=usr/share/nls/uk_UA.ISO8859-5/tcsh.cat
+OLD_FILES+=usr/share/nls/uk_UA.KOI8-U/ee.cat
+OLD_FILES+=usr/share/nls/uk_UA.KOI8-U/tcsh.cat
+OLD_FILES+=usr/share/nls/uk_UA.UTF-8/grep.cat
+OLD_FILES+=usr/share/nls/uk_UA.UTF-8/libc.cat
+OLD_FILES+=usr/share/nls/uk_UA.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/zh_CN.GB18030/libc.cat
+OLD_FILES+=usr/share/nls/zh_CN.GB2312/libc.cat
+OLD_FILES+=usr/share/nls/zh_CN.UTF-8/grep.cat
+OLD_FILES+=usr/share/nls/zh_CN.UTF-8/libc.cat
OLD_FILES+=usr/tests/bin/sh/builtins/locale1.0
-# to be filled in
+.endif
+
+.if ${MK_NLS_CATALOGS} == no
+OLD_FILES+=usr/share/nls/de_AT.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/de_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/de_DE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/el_GR.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/es_ES.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/et_EE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fi_FI.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_BE.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CA.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/fr_FR.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/it_CH.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/it_IT.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/ja_JP.SJIS/tcsh.cat
+OLD_FILES+=usr/share/nls/ja_JP.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.CP1251/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.CP866/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.ISO8859-5/tcsh.cat
+OLD_FILES+=usr/share/nls/ru_RU.UTF-8/tcsh.cat
+OLD_FILES+=usr/share/nls/uk_UA.ISO8859-5/tcsh.cat
+OLD_FILES+=usr/share/nls/uk_UA.UTF-8/tcsh.cat
+.endif
+
+.if ${MK_NS_CACHING} == no
+OLD_FILES+=etc/nscd.conf
+OLD_FILES+=etc/rc.d/nscd
+OLD_FILES+=usr/sbin/nscd
+OLD_FILES+=usr/share/examples/etc/nscd.conf
+OLD_FILES+=usr/share/man/man5/nscd.conf.5.gz
+OLD_FILES+=usr/share/man/man8/nscd.8.gz
.endif
.if ${MK_NTP} == no
@@ -3476,6 +5841,7 @@ OLD_FILES+=usr/share/doc/ntp/release.html
OLD_FILES+=usr/share/doc/ntp/tickadj.html
OLD_DIRS+=usr/share/doc/ntp
OLD_FILES+=usr/share/examples/etc/ntp.conf
+OLD_FILES+=usr/share/man/man1/sntp.1.gz
OLD_FILES+=usr/share/man/man5/ntp.conf.5.gz
OLD_FILES+=usr/share/man/man5/ntp.keys.5.gz
OLD_FILES+=usr/share/man/man8/ntp-keygen.8.gz
@@ -3491,18 +5857,28 @@ OLD_FILES+=usr/share/man/man8/ntptime.8.gz
#.endif
.if ${MK_OPENSSH} == no
+OLD_FILES+=etc/rc.d/sshd
+OLD_FILES+=etc/ssh/moduli
+OLD_FILES+=etc/ssh/ssh_config
+OLD_FILES+=etc/ssh/sshd_config
+OLD_FILES+=usr/bin/scp
OLD_FILES+=usr/bin/sftp
+OLD_FILES+=usr/bin/slogin
OLD_FILES+=usr/bin/ssh
OLD_FILES+=usr/bin/ssh-add
OLD_FILES+=usr/bin/ssh-agent
OLD_FILES+=usr/bin/ssh-copy-id
OLD_FILES+=usr/bin/ssh-keygen
OLD_FILES+=usr/bin/ssh-keyscan
+OLD_FILES+=usr/lib/pam_ssh.so
+OLD_LIBS+=usr/lib/pam_ssh.so.5
OLD_FILES+=usr/lib/private/libssh.a
OLD_FILES+=usr/lib/private/libssh.so
OLD_LIBS+=usr/lib/private/libssh.so.5
OLD_FILES+=usr/lib/private/libssh_p.a
.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
+OLD_FILES+=usr/lib32/pam_ssh.so
+OLD_LIBS+=usr/lib32/pam_ssh.so.5
OLD_FILES+=usr/lib32/private/libssh.a
OLD_FILES+=usr/lib32/private/libssh.so
OLD_LIBS+=usr/lib32/private/libssh.so.5
@@ -3512,6 +5888,22 @@ OLD_FILES+=usr/libexec/sftp-server
OLD_FILES+=usr/libexec/ssh-keysign
OLD_FILES+=usr/libexec/ssh-pkcs11-helper
OLD_FILES+=usr/sbin/sshd
+OLD_FILES+=usr/share/man/man1/scp.1.gz
+OLD_FILES+=usr/share/man/man1/sftp.1.gz
+OLD_FILES+=usr/share/man/man1/slogin.1.gz
+OLD_FILES+=usr/share/man/man1/ssh-add.1.gz
+OLD_FILES+=usr/share/man/man1/ssh-agent.1.gz
+OLD_FILES+=usr/share/man/man1/ssh-copy-id.1.gz
+OLD_FILES+=usr/share/man/man1/ssh-keygen.1.gz
+OLD_FILES+=usr/share/man/man1/ssh-keyscan.1.gz
+OLD_FILES+=usr/share/man/man1/ssh.1.gz
+OLD_FILES+=usr/share/man/man5/ssh_config.5.gz
+OLD_FILES+=usr/share/man/man5/sshd_config.5.gz
+OLD_FILES+=usr/share/man/man8/pam_ssh.8.gz
+OLD_FILES+=usr/share/man/man8/sftp-server.8.gz
+OLD_FILES+=usr/share/man/man8/ssh-keysign.8.gz
+OLD_FILES+=usr/share/man/man8/ssh-pkcs11-helper.8.gz
+OLD_FILES+=usr/share/man/man8/sshd.8.gz
.endif
.if ${MK_OPENSSL} == no
@@ -3613,6 +6005,11 @@ OLD_FILES+=etc/pf.os
OLD_FILES+=etc/rc.d/ftp-proxy
OLD_FILES+=sbin/pfctl
OLD_FILES+=sbin/pflogd
+OLD_FILES+=usr/include/netpfil/pf/pf.h
+OLD_FILES+=usr/include/netpfil/pf/pf_altq.h
+OLD_FILES+=usr/include/netpfil/pf/pf_mtag.h
+OLD_FILES+=usr/lib/snmp_pf.so
+OLD_LIBS+=usr/lib/snmp_pf.so.6
OLD_FILES+=usr/libexec/tftp-proxy
OLD_FILES+=usr/sbin/ftp-proxy
OLD_FILES+=usr/share/examples/etc/pf.os
@@ -3636,6 +6033,8 @@ OLD_FILES+=usr/share/man/man8/ftp-proxy.8.gz
OLD_FILES+=usr/share/man/man8/pfctl.8.gz
OLD_FILES+=usr/share/man/man8/pflogd.8.gz
OLD_FILES+=usr/share/man/man8/tftp-proxy.8.gz
+OLD_FILES+=usr/share/snmp/defs/pf_tree.def
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-PF-MIB.txt
.endif
.if ${MK_PKGBOOTSTRAP} == no
@@ -3643,12 +6042,99 @@ OLD_FILES+=usr/sbin/pkg
OLD_FILES+=usr/share/man/man7/pkg.7.gz
.endif
+.if ${MK_PMC} == no
+OLD_FILES+=usr/bin/pmcstudy
+OLD_FILES+=usr/include/pmc.h
+OLD_FILES+=usr/include/pmclog.h
+OLD_FILES+=usr/lib/libpmc.a
+OLD_FILES+=usr/lib/libpmc.so
+OLD_LIBS+=usr/lib/libpmc.so.5
+OLD_FILES+=usr/lib/libpmc_p.a
+OLD_FILES+=usr/lib32/libpmc.a
+OLD_FILES+=usr/lib32/libpmc.so
+OLD_LIBS+=usr/lib32/libpmc.so.5
+OLD_FILES+=usr/lib32/libpmc_p.a
+OLD_FILES+=usr/sbin/pmcannotate
+OLD_FILES+=usr/sbin/pmccontrol
+OLD_FILES+=usr/sbin/pmcstat
+OLD_FILES+=usr/share/man/man1/pmcstudy.1.gz
+OLD_FILES+=usr/share/man/man3/pmc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.atom.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.atomsilvermont.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.core.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.core2.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.corei7.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.corei7uc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.haswell.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.haswelluc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.iaf.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.ivybridge.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.ivybridgexeon.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.k7.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.k8.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.mips24k.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.octeon.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.p4.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.p5.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.p6.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.sandybridge.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.sandybridgeuc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.sandybridgexeon.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.soft.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.tsc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.ucf.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.westmere.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.westmereuc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc.xscale.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_allocate.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_attach.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_capabilities.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_configure_logfile.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_cpuinfo.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_detach.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_disable.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_enable.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_event_names_of_class.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_flush_logfile.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_get_driver_stats.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_get_msr.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_init.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_capability.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_class.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_cputype.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_disposition.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_event.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_mode.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_name_of_state.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_ncpu.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_npmc.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_pmcinfo.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_read.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_release.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_rw.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_set.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_start.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_stop.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_width.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_write.3.gz
+OLD_FILES+=usr/share/man/man3/pmc_writelog.3.gz
+OLD_FILES+=usr/share/man/man3/pmclog.3.gz
+OLD_FILES+=usr/share/man/man3/pmclog_close.3.gz
+OLD_FILES+=usr/share/man/man3/pmclog_feed.3.gz
+OLD_FILES+=usr/share/man/man3/pmclog_open.3.gz
+OLD_FILES+=usr/share/man/man3/pmclog_read.3.gz
+OLD_FILES+=usr/share/man/man8/pmcannotate.8.gz
+OLD_FILES+=usr/share/man/man8/pmccontrol.8.gz
+OLD_FILES+=usr/share/man/man8/pmcstat.8.gz
+.endif
+
.if ${MK_PORTSNAP} == no
OLD_FILES+=etc/portsnap.conf
OLD_FILES+=usr/libexec/make_index
OLD_FILES+=usr/libexec/phttpget
OLD_FILES+=usr/sbin/portsnap
OLD_FILES+=usr/share/examples/etc/portsnap.conf
+OLD_FILES+=usr/share/man/man8/phttpget.8.gz
OLD_FILES+=usr/share/man/man8/portsnap.8.gz
.endif
@@ -3700,7 +6186,6 @@ OLD_FILES+=usr/lib/libformw_p.a
OLD_FILES+=usr/lib/libgcc_p.a
OLD_FILES+=usr/lib/libgeom_p.a
OLD_FILES+=usr/lib/libgnuregex_p.a
-OLD_FILES+=usr/lib/libgpib_p.a
OLD_FILES+=usr/lib/libgssapi_krb5_p.a
OLD_FILES+=usr/lib/libgssapi_p.a
OLD_FILES+=usr/lib/libhdb_p.a
@@ -3769,6 +6254,21 @@ OLD_FILES+=usr/lib/private/libldns_p.a
OLD_FILES+=usr/lib/private/libssh_p.a
.endif
+.if ${MK_QUOTAS} == no
+OLD_FILES+=sbin/quotacheck
+OLD_FILES+=usr/bin/quota
+OLD_FILES+=usr/sbin/edquota
+OLD_FILES+=usr/sbin/quotaoff
+OLD_FILES+=usr/sbin/quotaon
+OLD_FILES+=usr/sbin/repquota
+OLD_FILES+=usr/share/man/man1/quota.1.gz
+OLD_FILES+=usr/share/man/man8/edquota.8.gz
+OLD_FILES+=usr/share/man/man8/quotacheck.8.gz
+OLD_FILES+=usr/share/man/man8/quotaoff.8.gz
+OLD_FILES+=usr/share/man/man8/quotaon.8.gz
+OLD_FILES+=usr/share/man/man8/repquota.8.gz
+.endif
+
.if ${MK_RCMDS} == no
OLD_FILES+=bin/rcp
OLD_FILES+=etc/rc.d/rwho
@@ -4072,15 +6572,247 @@ OLD_FILES+=usr/share/doc/pjdfstest/README
OLD_DIRS+=usr/share/doc/pjdfstest
.endif
-#.if ${MK_SYSCONS} == no
-# to be filled in
-#.endif
+.if ${MK_SSP} == no
+OLD_LIBS+=lib/libssp.so.0
+OLD_FILES+=usr/include/ssp/ssp.h
+OLD_FILES+=usr/include/ssp/stdio.h
+OLD_FILES+=usr/include/ssp/string.h
+OLD_FILES+=usr/include/ssp/unistd.h
+OLD_FILES+=usr/lib/libssp.a
+OLD_FILES+=usr/lib/libssp.so
+OLD_FILES+=usr/lib/libssp_nonshared.a
+OLD_FILES+=usr/lib32/libssp.a
+OLD_FILES+=usr/lib32/libssp.so
+OLD_LIBS+=usr/lib32/libssp.so.0
+OLD_FILES+=usr/lib32/libssp_nonshared.a
+OLD_FILES+=usr/tests/lib/libc/ssp/Kyuafile
+OLD_FILES+=usr/tests/lib/libc/ssp/h_fgets
+OLD_FILES+=usr/tests/lib/libc/ssp/h_getcwd
+OLD_FILES+=usr/tests/lib/libc/ssp/h_gets
+OLD_FILES+=usr/tests/lib/libc/ssp/h_memcpy
+OLD_FILES+=usr/tests/lib/libc/ssp/h_memmove
+OLD_FILES+=usr/tests/lib/libc/ssp/h_memset
+OLD_FILES+=usr/tests/lib/libc/ssp/h_read
+OLD_FILES+=usr/tests/lib/libc/ssp/h_readlink
+OLD_FILES+=usr/tests/lib/libc/ssp/h_snprintf
+OLD_FILES+=usr/tests/lib/libc/ssp/h_sprintf
+OLD_FILES+=usr/tests/lib/libc/ssp/h_stpcpy
+OLD_FILES+=usr/tests/lib/libc/ssp/h_stpncpy
+OLD_FILES+=usr/tests/lib/libc/ssp/h_strcat
+OLD_FILES+=usr/tests/lib/libc/ssp/h_strcpy
+OLD_FILES+=usr/tests/lib/libc/ssp/h_strncat
+OLD_FILES+=usr/tests/lib/libc/ssp/h_strncpy
+OLD_FILES+=usr/tests/lib/libc/ssp/h_vsnprintf
+OLD_FILES+=usr/tests/lib/libc/ssp/h_vsprintf
+OLD_FILES+=usr/tests/lib/libc/ssp/ssp_test
+.endif
+
+.if ${MK_SYSCONS} == no
+OLD_FILES+=usr/share/syscons/fonts/INDEX.fonts
+OLD_FILES+=usr/share/syscons/fonts/armscii8-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/armscii8-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/armscii8-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp1251-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp1251-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp1251-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp437-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp437-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp437-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp437-thin-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp437-thin-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp850-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp850-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp850-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp850-thin-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp850-thin-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp865-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp865-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp865-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp865-thin-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp865-thin-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866b-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866c-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866u-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866u-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/cp866u-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/haik8-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/haik8-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/haik8-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso-thin-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso02-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso02-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso02-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-vga9-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-vga9-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-vga9-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-vga9-wide-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso04-wide-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso05-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso05-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso05-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso07-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso07-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso07-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso08-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso08-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso08-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso09-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso15-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso15-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso15-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/iso15-thin-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-r-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-r-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-r-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-rb-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-rc-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-u-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-u-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/koi8-u-8x8.fnt
+OLD_FILES+=usr/share/syscons/fonts/swiss-1131-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/swiss-1251-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/swiss-8x14.fnt
+OLD_FILES+=usr/share/syscons/fonts/swiss-8x16.fnt
+OLD_FILES+=usr/share/syscons/fonts/swiss-8x8.fnt
+OLD_FILES+=usr/share/syscons/keymaps/INDEX.keymaps
+OLD_FILES+=usr/share/syscons/keymaps/be.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/be.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/bg.bds.ctrlcaps.kbd
+OLD_FILES+=usr/share/syscons/keymaps/bg.phonetic.ctrlcaps.kbd
+OLD_FILES+=usr/share/syscons/keymaps/br275.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/br275.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/br275.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/by.cp1131.kbd
+OLD_FILES+=usr/share/syscons/keymaps/by.cp1251.kbd
+OLD_FILES+=usr/share/syscons/keymaps/by.iso5.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ce.iso2.kbd
+OLD_FILES+=usr/share/syscons/keymaps/colemak.iso15.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/cs.latin2.qwertz.kbd
+OLD_FILES+=usr/share/syscons/keymaps/cz.iso2.kbd
+OLD_FILES+=usr/share/syscons/keymaps/danish.cp865.kbd
+OLD_FILES+=usr/share/syscons/keymaps/danish.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/danish.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/danish.iso.macbook.kbd
+OLD_FILES+=usr/share/syscons/keymaps/dutch.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/eee_nordic.kbd
+OLD_FILES+=usr/share/syscons/keymaps/el.iso07.kbd
+OLD_FILES+=usr/share/syscons/keymaps/estonian.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/estonian.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/estonian.iso15.kbd
+OLD_FILES+=usr/share/syscons/keymaps/finnish.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/finnish.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr.dvorak.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr.macbook.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/fr_CA.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/german.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/german.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/german.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/gr.elot.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/gr.us101.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/hr.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/hu.iso2.101keys.kbd
+OLD_FILES+=usr/share/syscons/keymaps/hu.iso2.102keys.kbd
+OLD_FILES+=usr/share/syscons/keymaps/hy.armscii-8.kbd
+OLD_FILES+=usr/share/syscons/keymaps/icelandic.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/icelandic.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/it.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/iw.iso8.kbd
+OLD_FILES+=usr/share/syscons/keymaps/jp.106.kbd
+OLD_FILES+=usr/share/syscons/keymaps/jp.106x.kbd
+OLD_FILES+=usr/share/syscons/keymaps/jp.pc98.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/jp.pc98.kbd
+OLD_FILES+=usr/share/syscons/keymaps/kk.pt154.io.kbd
+OLD_FILES+=usr/share/syscons/keymaps/kk.pt154.kst.kbd
+OLD_FILES+=usr/share/syscons/keymaps/latinamerican.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/latinamerican.kbd
+OLD_FILES+=usr/share/syscons/keymaps/lt.iso4.kbd
+OLD_FILES+=usr/share/syscons/keymaps/norwegian.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/norwegian.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/pl_PL.ISO8859-2.kbd
+OLD_FILES+=usr/share/syscons/keymaps/pl_PL.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/pt.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/pt.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ru.cp866.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ru.iso5.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ru.koi8-r.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ru.koi8-r.shift.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ru.koi8-r.win.kbd
+OLD_FILES+=usr/share/syscons/keymaps/si.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/sk.iso2.kbd
+OLD_FILES+=usr/share/syscons/keymaps/spanish.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/spanish.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/spanish.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/spanish.iso15.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swedish.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swedish.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissfrench.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissfrench.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissfrench.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissgerman.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissgerman.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissgerman.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/swissgerman.macbook.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/tr.iso9.q.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ua.iso5.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ua.koi8-u.kbd
+OLD_FILES+=usr/share/syscons/keymaps/ua.koi8-u.shift.alt.kbd
+OLD_FILES+=usr/share/syscons/keymaps/uk.cp850-ctrl.kbd
+OLD_FILES+=usr/share/syscons/keymaps/uk.cp850.kbd
+OLD_FILES+=usr/share/syscons/keymaps/uk.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/uk.iso-ctrl.kbd
+OLD_FILES+=usr/share/syscons/keymaps/uk.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.dvorak.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.dvorakl.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.dvorakp.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.dvorakr.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.dvorakx.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.emacs.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.iso.acc.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.iso.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.pc-ctrl.kbd
+OLD_FILES+=usr/share/syscons/keymaps/us.unix.kbd
+OLD_FILES+=usr/share/syscons/scrnmaps/armscii8-2haik8.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/iso-8859-1_to_cp437.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/iso-8859-4_for_vga9.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/iso-8859-7_to_cp437.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/koi8-r2cp866.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/koi8-u2cp866u.scm
+OLD_FILES+=usr/share/syscons/scrnmaps/us-ascii_to_cp437.scm
+.endif
+
+.if ${MK_TALK} == no
+OLD_FILES+=usr/bin/talk
+OLD_FILES+=usr/libexec/ntalkd
+OLD_FILES+=usr/share/man/man1/talk.1.gz
+OLD_FILES+=usr/share/man/man8/talkd.8.gz
+.endif
.if ${MK_TCSH} == no
+OLD_FILES+=.cshrc
+OLD_FILES+=etc/csh.cshrc
+OLD_FILES+=etc/csh.login
+OLD_FILES+=etc/csh.logout
OLD_FILES+=bin/csh
OLD_FILES+=bin/tcsh
OLD_FILES+=rescue/csh
OLD_FILES+=rescue/tcsh
+OLD_FILES+=root/.cshrc
+OLD_FILES+=root/.login
+OLD_FILES+=usr/share/examples/etc/csh.cshrc
+OLD_FILES+=usr/share/examples/etc/csh.login
+OLD_FILES+=usr/share/examples/etc/csh.logout
OLD_FILES+=usr/share/examples/tcsh/complete.tcsh
OLD_FILES+=usr/share/examples/tcsh/csh-mode.el
OLD_DIRS+=usr/share/examples/tcsh
@@ -4613,6 +7345,7 @@ OLD_FILES+=usr/tests/usr.bin/yacc/undefined.y
.endif
.else
# ATF libraries.
+OLD_FILES+=etc/mtree/BSD.tests.dist
OLD_FILES+=usr/bin/atf-sh
OLD_DIRS+=usr/include/atf-c
OLD_FILES+=usr/include/atf-c/build.h
@@ -4643,6 +7376,7 @@ OLD_FILES+=usr/lib/libatf-c++.so.1
OLD_FILES+=usr/lib/libatf-c++.so
OLD_FILES+=usr/lib/libatf-c.a
OLD_FILES+=usr/libexec/atf-check
+OLD_FILES+=usr/libexec/atf-sh
OLD_DIRS+=usr/share/atf
OLD_FILES+=usr/share/atf/libatf-sh.subr
OLD_DIRS+=usr/share/doc/atf
@@ -4650,30 +7384,121 @@ OLD_FILES+=usr/share/doc/atf/AUTHORS
OLD_FILES+=usr/share/doc/atf/COPYING
OLD_FILES+=usr/share/doc/atf/NEWS
OLD_FILES+=usr/share/doc/atf/README
+OLD_FILES+=usr/share/doc/pjdfstest/README
OLD_FILES+=usr/share/man/man1/atf-check.1.gz
OLD_FILES+=usr/share/man/man1/atf-sh.1.gz
OLD_FILES+=usr/share/man/man1/atf-test-program.1.gz
OLD_FILES+=usr/share/man/man3/atf-c-api.3.gz
OLD_FILES+=usr/share/man/man3/atf-c++-api.3.gz
OLD_FILES+=usr/share/man/man3/atf-sh-api.3.gz
+OLD_FILES+=usr/share/man/man3/atf-sh.3.gz
OLD_FILES+=usr/share/man/man4/atf-test-case.4.gz
+OLD_FILES+=usr/share/man/man7/atf.7.gz
OLD_FILES+=usr/share/mk/atf.test.mk
+OLD_FILES+=usr/share/mk/plain.test.mk
+OLD_FILES+=usr/share/mk/suite.test.mk
+OLD_FILES+=usr/share/mk/tap.test.mk
# Test suite.
-. if(exists(${DESTDIR}/usr/tests/))
-TESTS_DIRS!=find ${DESTDIR}/usr/tests -type d | sed -e 's,^${DESTDIR}/,,'; echo
+. if exists(${DESTDIR}${TESTSBASE})
+TESTS_DIRS!=find ${DESTDIR}${TESTSBASE} -type d | sed -e 's,^${DESTDIR}/,,'; echo
OLD_DIRS+=${TESTS_DIRS}
-TESTS_FILES!=find ${DESTDIR}/usr/tests \! -type d | sed -e 's,^${DESTDIR}/,,'; echo
+TESTS_FILES!=find ${DESTDIR}${TESTSBASE} \! -type d | sed -e 's,^${DESTDIR}/,,'; echo
OLD_FILES+=${TESTS_FILES}
. endif
.endif # Test suite.
+.if ${MK_TESTS_SUPPORT} == no
+OLD_FILES+=usr/include/atf-c++.hpp
+OLD_FILES+=usr/include/atf-c++/build.hpp
+OLD_FILES+=usr/include/atf-c++/check.hpp
+OLD_FILES+=usr/include/atf-c++/macros.hpp
+OLD_FILES+=usr/include/atf-c++/tests.hpp
+OLD_FILES+=usr/include/atf-c++/utils.hpp
+OLD_FILES+=usr/include/atf-c.h
+OLD_FILES+=usr/include/atf-c/build.h
+OLD_FILES+=usr/include/atf-c/check.h
+OLD_FILES+=usr/include/atf-c/defs.h
+OLD_FILES+=usr/include/atf-c/error.h
+OLD_FILES+=usr/include/atf-c/error_fwd.h
+OLD_FILES+=usr/include/atf-c/macros.h
+OLD_FILES+=usr/include/atf-c/tc.h
+OLD_FILES+=usr/include/atf-c/tp.h
+OLD_FILES+=usr/include/atf-c/utils.h
+OLD_LIBS+=usr/lib/private/libatf-c++.so.2
+OLD_LIBS+=usr/lib/private/libatf-c.so.1
+OLD_FILES+=usr/share/man/man3/atf-c++.3.gz
+OLD_FILES+=usr/share/man/man3/atf-c-api++.3.gz
+OLD_FILES+=usr/share/man/man3/atf-c-api.3.gz
+OLD_FILES+=usr/share/man/man3/atf-c.3.gz
+OLD_FILES+=usr/tests/lib/atf/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/atf_c++_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/build_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/check_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/application_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/env_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/exceptions_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/fs_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/process_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/text_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/version_helper
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/macros_hpp_test.cpp
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/macros_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/tests_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/unused_test.cpp
+OLD_FILES+=usr/tests/lib/atf/libatf-c++/utils_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/libatf-c/atf_c_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/build_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/check_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/dynstr_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/env_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/fs_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/list_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/map_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/process_helpers
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/process_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/sanity_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/text_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/user_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/version_helper
+OLD_FILES+=usr/tests/lib/atf/libatf-c/error_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/macros_h_test.c
+OLD_FILES+=usr/tests/lib/atf/libatf-c/macros_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/tc_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/tp_test
+OLD_FILES+=usr/tests/lib/atf/libatf-c/unused_test.c
+OLD_FILES+=usr/tests/lib/atf/libatf-c/utils_test
+OLD_FILES+=usr/tests/lib/atf/test-programs/Kyuafile
+OLD_FILES+=usr/tests/lib/atf/test-programs/c_helpers
+OLD_FILES+=usr/tests/lib/atf/test-programs/config_test
+OLD_FILES+=usr/tests/lib/atf/test-programs/cpp_helpers
+OLD_FILES+=usr/tests/lib/atf/test-programs/expect_test
+OLD_FILES+=usr/tests/lib/atf/test-programs/meta_data_test
+OLD_FILES+=usr/tests/lib/atf/test-programs/result_test
+OLD_FILES+=usr/tests/lib/atf/test-programs/sh_helpers
+OLD_FILES+=usr/tests/lib/atf/test-programs/srcdir_test
+.endif
+
+.if ${MK_TEXTPROC} == no
+OLD_FILES+=usr/bin/checknr
+OLD_FILES+=usr/bin/colcrt
+OLD_FILES+=usr/bin/ul
+OLD_FILES+=usr/share/man/man1/checknr.1.gz
+OLD_FILES+=usr/share/man/man1/colcrt.1.gz
+OLD_FILES+=usr/share/man/man1/ul.1.gz
+.endif
+
#.if ${MK_TOOLCHAIN} == no
# to be filled in
#.endif
.if ${MK_UNBOUND} == no
OLD_FILES+=etc/rc.d/local_unbound
+OLD_FILES+=etc/unbound
OLD_FILES+=usr/lib/private/libunbound.a
OLD_FILES+=usr/lib/private/libunbound.so
OLD_LIBS+=usr/lib/private/libunbound.so.5
@@ -4690,11 +7515,365 @@ OLD_FILES+=usr/sbin/unbound-anchor
OLD_FILES+=usr/sbin/unbound-checkconf
OLD_FILES+=usr/sbin/unbound-control
OLD_FILES+=usr/sbin/unbound-control-setup
+OLD_FILES+=usr/share/man/man5/unbound.conf.5.gz
+OLD_FILES+=usr/share/man/man8/unbound-anchor.8.gz
+OLD_FILES+=usr/share/man/man8/unbound-checkconf.8.gz
+OLD_FILES+=usr/share/man/man8/unbound-control.8.gz
+OLD_FILES+=usr/share/man/man8/unbound.8.gz
.endif
.if ${MK_USB} == no
+OLD_FILES+=etc/devd/uath.conf
OLD_FILES+=etc/devd/uauth.conf
+OLD_FILES+=etc/devd/ulpt.conf
OLD_FILES+=etc/devd/usb.conf
+OLD_FILES+=usr/bin/usbhidaction
+OLD_FILES+=usr/bin/usbhidctl
+OLD_FILES+=usr/include/libusb.h
+OLD_FILES+=usr/include/libusb20.h
+OLD_FILES+=usr/include/libusb20_desc.h
+OLD_FILES+=usr/include/usb.h
+OLD_FILES+=usr/include/usbhid.h
+OLD_FILES+=usr/lib/libusb.a
+OLD_FILES+=usr/lib/libusb.so
+OLD_LIBS+=usr/lib/libusb.so.3
+OLD_FILES+=usr/lib/libusb_p.a
+OLD_FILES+=usr/lib/libusbhid.a
+OLD_FILES+=usr/lib/libusbhid.so
+OLD_LIBS+=usr/lib/libusbhid.so.4
+OLD_FILES+=usr/lib/libusbhid_p.a
+OLD_FILES+=usr/lib32/libusb.a
+OLD_FILES+=usr/lib32/libusb.so
+OLD_LIBS+=usr/lib32/libusb.so.3
+OLD_FILES+=usr/lib32/libusb_p.a
+OLD_FILES+=usr/lib32/libusbhid.a
+OLD_FILES+=usr/lib32/libusbhid.so
+OLD_LIBS+=usr/lib32/libusbhid.so.4
+OLD_FILES+=usr/lib32/libusbhid_p.a
+OLD_FILES+=usr/libdata/pkgconfig/libusb-0.1.pc
+OLD_FILES+=usr/libdata/pkgconfig/libusb-1.0.pc
+OLD_FILES+=usr/libdata/pkgconfig/libusb-2.0.pc
+OLD_FILES+=usr/sbin/uathload
+OLD_FILES+=usr/sbin/uhsoctl
+OLD_FILES+=usr/sbin/usbconfig
+OLD_FILES+=usr/sbin/usbdump
+OLD_FILES+=usr/share/examples/libusb20/Makefile
+OLD_FILES+=usr/share/examples/libusb20/README
+OLD_FILES+=usr/share/examples/libusb20/bulk.c
+OLD_FILES+=usr/share/examples/libusb20/control.c
+OLD_FILES+=usr/share/examples/libusb20/util.c
+OLD_FILES+=usr/share/examples/libusb20/util.h
+OLD_DIRS+=usr/share/examples/libusb20
+OLD_FILES+=usr/share/man/man1/uhsoctl.1.gz
+OLD_FILES+=usr/share/man/man1/usbhidaction.1.gz
+OLD_FILES+=usr/share/man/man1/usbhidctl.1.gz
+OLD_FILES+=usr/share/man/man3/hid_dispose_report_desc.3.gz
+OLD_FILES+=usr/share/man/man3/hid_end_parse.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_data.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_item.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_report_desc.3.gz
+OLD_FILES+=usr/share/man/man3/hid_init.3.gz
+OLD_FILES+=usr/share/man/man3/hid_locate.3.gz
+OLD_FILES+=usr/share/man/man3/hid_report_size.3.gz
+OLD_FILES+=usr/share/man/man3/hid_set_data.3.gz
+OLD_FILES+=usr/share/man/man3/hid_start_parse.3.gz
+OLD_FILES+=usr/share/man/man3/hid_usage_in_page.3.gz
+OLD_FILES+=usr/share/man/man3/hid_usage_page.3.gz
+OLD_FILES+=usr/share/man/man3/libusb.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_add_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_alloc_default.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_dequeue_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_device_foreach.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_enqueue_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_free.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_quirk_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_template.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_remove_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_set_template.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_desc_foreach.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_alloc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_alloc_config.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_detach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_free.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_backend_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_bus_number.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_config_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_device_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_fd.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_iface_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_info.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_parent_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_parent_port.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_port_path.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_power_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_power_usage.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_speed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_kernel_driver_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_process.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_req_string_simple_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_req_string_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_request_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_reset.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_alt_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_config_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_power_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_wait_process.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_error_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_decode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_encode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_get_1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_get_2.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_bulk_intr_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_callback_wrapper.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_clear_stall_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_drain.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_actual_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_actual_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_packet_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_total_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_pointer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_priv_sc0.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_priv_sc1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_status.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_time_complete.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_pending.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_buffer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_callback.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_flags.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_priv_sc0.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_priv_sc1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_total_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_bulk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_control.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_intr.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_isoc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_start.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_stop.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_submit.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_alloc_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_attach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_bulk_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_cancel_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_claim_interface.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_clear_halt.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_control_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_detach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_detach_kernel_driver_np.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_error_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_event_handler_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_event_handling_ok.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_exit.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_bos_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_device_list.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_ss_endpoint_comp.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_active_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_bus_number.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_config_descriptor_by_value.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_list.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_speed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_driver_np.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_max_iso_packet_size.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_max_packet_size.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_next_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_pollfds.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_string_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_string_descriptor_ascii.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_completed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_locked.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_timeout_completed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_init.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_interrupt_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_kernel_driver_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_lock_event_waiters.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_lock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_open_device_with_vid_pid.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_parse_bos_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_parse_ss_endpoint_comp.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_ref_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_release_interface.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_reset_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_interface_alt_setting.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_pollfd_notifiers.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_submit_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_try_lock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unlock_event_waiters.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unlock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unref_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_wait_for_event.3.gz
+OLD_FILES+=usr/share/man/man3/libusbhid.3.gz
+OLD_FILES+=usr/share/man/man3/usb.3.gz
+OLD_FILES+=usr/share/man/man3/usb_bulk_read.3.gz
+OLD_FILES+=usr/share/man/man3/usb_bulk_write.3.gz
+OLD_FILES+=usr/share/man/man3/usb_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/usb_claim_interface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_clear_halt.3.gz
+OLD_FILES+=usr/share/man/man3/usb_close.3.gz
+OLD_FILES+=usr/share/man/man3/usb_control_msg.3.gz
+OLD_FILES+=usr/share/man/man3/usb_destroy_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_device.3.gz
+OLD_FILES+=usr/share/man/man3/usb_fetch_and_parse_descriptors.3.gz
+OLD_FILES+=usr/share/man/man3/usb_find_busses.3.gz
+OLD_FILES+=usr/share/man/man3/usb_find_devices.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_busses.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_descriptor_by_endpoint.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_string.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_string_simple.3.gz
+OLD_FILES+=usr/share/man/man3/usb_init.3.gz
+OLD_FILES+=usr/share/man/man3/usb_interrupt_read.3.gz
+OLD_FILES+=usr/share/man/man3/usb_interrupt_write.3.gz
+OLD_FILES+=usr/share/man/man3/usb_open.3.gz
+OLD_FILES+=usr/share/man/man3/usb_parse_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_parse_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/usb_release_interface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_reset.3.gz
+OLD_FILES+=usr/share/man/man3/usb_resetep.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_altinterface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/usb_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/usbhid.3.gz
+OLD_FILES+=usr/share/man/man4/u3g.4.gz
+OLD_FILES+=usr/share/man/man4/u3gstub.4.gz
+OLD_FILES+=usr/share/man/man4/uark.4.gz
+OLD_FILES+=usr/share/man/man4/uart.4.gz
+OLD_FILES+=usr/share/man/man4/uath.4.gz
+OLD_FILES+=usr/share/man/man4/ubsa.4.gz
+OLD_FILES+=usr/share/man/man4/ubsec.4.gz
+OLD_FILES+=usr/share/man/man4/ubser.4.gz
+OLD_FILES+=usr/share/man/man4/ubtbcmfw.4.gz
+OLD_FILES+=usr/share/man/man4/uchcom.4.gz
+OLD_FILES+=usr/share/man/man4/ucom.4.gz
+OLD_FILES+=usr/share/man/man4/ucycom.4.gz
+OLD_FILES+=usr/share/man/man4/udav.4.gz
+OLD_FILES+=usr/share/man/man4/udbp.4.gz
+OLD_FILES+=usr/share/man/man4/udp.4.gz
+OLD_FILES+=usr/share/man/man4/udplite.4.gz
+OLD_FILES+=usr/share/man/man4/uep.4.gz
+OLD_FILES+=usr/share/man/man4/ufm.4.gz
+OLD_FILES+=usr/share/man/man4/ufoma.4.gz
+OLD_FILES+=usr/share/man/man4/uftdi.4.gz
+OLD_FILES+=usr/share/man/man4/ugen.4.gz
+OLD_FILES+=usr/share/man/man4/uhci.4.gz
+OLD_FILES+=usr/share/man/man4/uhid.4.gz
+OLD_FILES+=usr/share/man/man4/uhso.4.gz
+OLD_FILES+=usr/share/man/man4/uipaq.4.gz
+OLD_FILES+=usr/share/man/man4/ukbd.4.gz
+OLD_FILES+=usr/share/man/man4/uled.4.gz
+OLD_FILES+=usr/share/man/man4/ulpt.4.gz
+OLD_FILES+=usr/share/man/man4/umass.4.gz
+OLD_FILES+=usr/share/man/man4/umcs.4.gz
+OLD_FILES+=usr/share/man/man4/umct.4.gz
+OLD_FILES+=usr/share/man/man4/umodem.4.gz
+OLD_FILES+=usr/share/man/man4/umoscom.4.gz
+OLD_FILES+=usr/share/man/man4/ums.4.gz
+OLD_FILES+=usr/share/man/man4/unix.4.gz
+OLD_FILES+=usr/share/man/man4/upgt.4.gz
+OLD_FILES+=usr/share/man/man4/uplcom.4.gz
+OLD_FILES+=usr/share/man/man4/ural.4.gz
+OLD_FILES+=usr/share/man/man4/urio.4.gz
+OLD_FILES+=usr/share/man/man4/urndis.4.gz
+OLD_FILES+=usr/share/man/man4/urtw.4.gz
+OLD_FILES+=usr/share/man/man4/urtwn.4.gz
+OLD_FILES+=usr/share/man/man4/urtwnfw.4.gz
+OLD_FILES+=usr/share/man/man4/usb.4.gz
+OLD_FILES+=usr/share/man/man4/usb_quirk.4.gz
+OLD_FILES+=usr/share/man/man4/usb_template.4.gz
+OLD_FILES+=usr/share/man/man4/usfs.4.gz
+OLD_FILES+=usr/share/man/man4/uslcom.4.gz
+OLD_FILES+=usr/share/man/man4/utopia.4.gz
+OLD_FILES+=usr/share/man/man4/uvisor.4.gz
+OLD_FILES+=usr/share/man/man4/uvscom.4.gz
+OLD_FILES+=usr/share/man/man8/uathload.8.gz
+OLD_FILES+=usr/share/man/man8/usbconfig.8.gz
+OLD_FILES+=usr/share/man/man8/usbdump.8.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_alloc_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_attach.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_detach.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_free_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_error.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_linear.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_bytes_max.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_error.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_linear.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_reset.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_softc.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_wakeup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_do_request.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_do_request_flags.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_errstr.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_lookup_id_by_info.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_lookup_id_by_uaa.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_clear_stall.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_drain.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_pending.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_poll.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_setup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_start.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_stop.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_submit.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_unsetup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_clr_flag.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_frame_data.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_frame_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_get_frame.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_get_priv.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_is_stalled.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_framelen.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_frames.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_flag.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_data.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_offset.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frames.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_interval.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_priv.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_stall.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_timeout.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_softc.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_state.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_status.9.gz
+OLD_FILES+=usr/share/man/man9/usbdi.9.gz
+OLD_FILES+=usr/share/misc/usb_hid_usages
+OLD_FILES+=usr/share/misc/usbdevs
.endif
.if ${MK_UTMPX} == no
@@ -4715,6 +7894,8 @@ OLD_FILES+=usr/share/man/man8/utx.8.gz
.if ${MK_WIRELESS} == no
OLD_FILES+=etc/regdomain.xml
+OLD_FILES+=etc/rc.d/hostapd
+OLD_FILES+=etc/rc.d/wpa_supplicant
OLD_FILES+=usr/sbin/ancontrol
OLD_FILES+=usr/sbin/hostapd
OLD_FILES+=usr/sbin/hostapd_cli
@@ -4772,13 +7953,6 @@ OLD_FILES+=usr/bin/svnsync
OLD_FILES+=usr/bin/svnversion
.endif
-.if ${MK_DMAGENT} == no
-OLD_FILES+=usr/libexec/dma
-OLD_FILES+=usr/libexec/dma-mbox-create
-OLD_FILES+=usr/share/man/man8/dma.8.gz
-OLD_FILES+=usr/share/examples/dma/mailer.conf
-.endif
-
.if ${MK_HYPERV} == no
OLD_FILES+=etc/devd/hyperv.conf
OLD_FILES+=usr/libexec/hyperv/hv_set_ifconfig
@@ -4787,3 +7961,475 @@ OLD_FILES+=usr/libexec/hyperv/hv_get_dhcp_info
OLD_FILES+=usr/sbin/hv_kvp_daemon
OLD_FILES+=usr/share/man/man8/hv_kvp_daemon.8.gz
.endif
+
+.if ${MK_ZONEINFO} == no
+OLD_FILES+=usr/share/zoneinfo/Africa/Abidjan
+OLD_FILES+=usr/share/zoneinfo/Africa/Accra
+OLD_FILES+=usr/share/zoneinfo/Africa/Addis_Ababa
+OLD_FILES+=usr/share/zoneinfo/Africa/Algiers
+OLD_FILES+=usr/share/zoneinfo/Africa/Asmara
+OLD_FILES+=usr/share/zoneinfo/Africa/Bamako
+OLD_FILES+=usr/share/zoneinfo/Africa/Bangui
+OLD_FILES+=usr/share/zoneinfo/Africa/Banjul
+OLD_FILES+=usr/share/zoneinfo/Africa/Bissau
+OLD_FILES+=usr/share/zoneinfo/Africa/Blantyre
+OLD_FILES+=usr/share/zoneinfo/Africa/Brazzaville
+OLD_FILES+=usr/share/zoneinfo/Africa/Bujumbura
+OLD_FILES+=usr/share/zoneinfo/Africa/Cairo
+OLD_FILES+=usr/share/zoneinfo/Africa/Casablanca
+OLD_FILES+=usr/share/zoneinfo/Africa/Ceuta
+OLD_FILES+=usr/share/zoneinfo/Africa/Conakry
+OLD_FILES+=usr/share/zoneinfo/Africa/Dakar
+OLD_FILES+=usr/share/zoneinfo/Africa/Dar_es_Salaam
+OLD_FILES+=usr/share/zoneinfo/Africa/Djibouti
+OLD_FILES+=usr/share/zoneinfo/Africa/Douala
+OLD_FILES+=usr/share/zoneinfo/Africa/El_Aaiun
+OLD_FILES+=usr/share/zoneinfo/Africa/Freetown
+OLD_FILES+=usr/share/zoneinfo/Africa/Gaborone
+OLD_FILES+=usr/share/zoneinfo/Africa/Harare
+OLD_FILES+=usr/share/zoneinfo/Africa/Johannesburg
+OLD_FILES+=usr/share/zoneinfo/Africa/Juba
+OLD_FILES+=usr/share/zoneinfo/Africa/Kampala
+OLD_FILES+=usr/share/zoneinfo/Africa/Khartoum
+OLD_FILES+=usr/share/zoneinfo/Africa/Kigali
+OLD_FILES+=usr/share/zoneinfo/Africa/Kinshasa
+OLD_FILES+=usr/share/zoneinfo/Africa/Lagos
+OLD_FILES+=usr/share/zoneinfo/Africa/Libreville
+OLD_FILES+=usr/share/zoneinfo/Africa/Lome
+OLD_FILES+=usr/share/zoneinfo/Africa/Luanda
+OLD_FILES+=usr/share/zoneinfo/Africa/Lubumbashi
+OLD_FILES+=usr/share/zoneinfo/Africa/Lusaka
+OLD_FILES+=usr/share/zoneinfo/Africa/Malabo
+OLD_FILES+=usr/share/zoneinfo/Africa/Maputo
+OLD_FILES+=usr/share/zoneinfo/Africa/Maseru
+OLD_FILES+=usr/share/zoneinfo/Africa/Mbabane
+OLD_FILES+=usr/share/zoneinfo/Africa/Mogadishu
+OLD_FILES+=usr/share/zoneinfo/Africa/Monrovia
+OLD_FILES+=usr/share/zoneinfo/Africa/Nairobi
+OLD_FILES+=usr/share/zoneinfo/Africa/Ndjamena
+OLD_FILES+=usr/share/zoneinfo/Africa/Niamey
+OLD_FILES+=usr/share/zoneinfo/Africa/Nouakchott
+OLD_FILES+=usr/share/zoneinfo/Africa/Ouagadougou
+OLD_FILES+=usr/share/zoneinfo/Africa/Porto-Novo
+OLD_FILES+=usr/share/zoneinfo/Africa/Sao_Tome
+OLD_FILES+=usr/share/zoneinfo/Africa/Tripoli
+OLD_FILES+=usr/share/zoneinfo/Africa/Tunis
+OLD_FILES+=usr/share/zoneinfo/Africa/Windhoek
+OLD_FILES+=usr/share/zoneinfo/America/Adak
+OLD_FILES+=usr/share/zoneinfo/America/Anchorage
+OLD_FILES+=usr/share/zoneinfo/America/Anguilla
+OLD_FILES+=usr/share/zoneinfo/America/Antigua
+OLD_FILES+=usr/share/zoneinfo/America/Araguaina
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Buenos_Aires
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Catamarca
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Cordoba
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Jujuy
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/La_Rioja
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Mendoza
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Rio_Gallegos
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Salta
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/San_Juan
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/San_Luis
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Tucuman
+OLD_FILES+=usr/share/zoneinfo/America/Argentina/Ushuaia
+OLD_FILES+=usr/share/zoneinfo/America/Aruba
+OLD_FILES+=usr/share/zoneinfo/America/Asuncion
+OLD_FILES+=usr/share/zoneinfo/America/Atikokan
+OLD_FILES+=usr/share/zoneinfo/America/Bahia
+OLD_FILES+=usr/share/zoneinfo/America/Bahia_Banderas
+OLD_FILES+=usr/share/zoneinfo/America/Barbados
+OLD_FILES+=usr/share/zoneinfo/America/Belem
+OLD_FILES+=usr/share/zoneinfo/America/Belize
+OLD_FILES+=usr/share/zoneinfo/America/Blanc-Sablon
+OLD_FILES+=usr/share/zoneinfo/America/Boa_Vista
+OLD_FILES+=usr/share/zoneinfo/America/Bogota
+OLD_FILES+=usr/share/zoneinfo/America/Boise
+OLD_FILES+=usr/share/zoneinfo/America/Cambridge_Bay
+OLD_FILES+=usr/share/zoneinfo/America/Campo_Grande
+OLD_FILES+=usr/share/zoneinfo/America/Cancun
+OLD_FILES+=usr/share/zoneinfo/America/Caracas
+OLD_FILES+=usr/share/zoneinfo/America/Cayenne
+OLD_FILES+=usr/share/zoneinfo/America/Cayman
+OLD_FILES+=usr/share/zoneinfo/America/Chicago
+OLD_FILES+=usr/share/zoneinfo/America/Chihuahua
+OLD_FILES+=usr/share/zoneinfo/America/Costa_Rica
+OLD_FILES+=usr/share/zoneinfo/America/Creston
+OLD_FILES+=usr/share/zoneinfo/America/Cuiaba
+OLD_FILES+=usr/share/zoneinfo/America/Curacao
+OLD_FILES+=usr/share/zoneinfo/America/Danmarkshavn
+OLD_FILES+=usr/share/zoneinfo/America/Dawson
+OLD_FILES+=usr/share/zoneinfo/America/Dawson_Creek
+OLD_FILES+=usr/share/zoneinfo/America/Denver
+OLD_FILES+=usr/share/zoneinfo/America/Detroit
+OLD_FILES+=usr/share/zoneinfo/America/Dominica
+OLD_FILES+=usr/share/zoneinfo/America/Edmonton
+OLD_FILES+=usr/share/zoneinfo/America/Eirunepe
+OLD_FILES+=usr/share/zoneinfo/America/El_Salvador
+OLD_FILES+=usr/share/zoneinfo/America/Fortaleza
+OLD_FILES+=usr/share/zoneinfo/America/Glace_Bay
+OLD_FILES+=usr/share/zoneinfo/America/Godthab
+OLD_FILES+=usr/share/zoneinfo/America/Goose_Bay
+OLD_FILES+=usr/share/zoneinfo/America/Grand_Turk
+OLD_FILES+=usr/share/zoneinfo/America/Grenada
+OLD_FILES+=usr/share/zoneinfo/America/Guadeloupe
+OLD_FILES+=usr/share/zoneinfo/America/Guatemala
+OLD_FILES+=usr/share/zoneinfo/America/Guayaquil
+OLD_FILES+=usr/share/zoneinfo/America/Guyana
+OLD_FILES+=usr/share/zoneinfo/America/Halifax
+OLD_FILES+=usr/share/zoneinfo/America/Havana
+OLD_FILES+=usr/share/zoneinfo/America/Hermosillo
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Indianapolis
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Knox
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Marengo
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Petersburg
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Tell_City
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Vevay
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Vincennes
+OLD_FILES+=usr/share/zoneinfo/America/Indiana/Winamac
+OLD_FILES+=usr/share/zoneinfo/America/Inuvik
+OLD_FILES+=usr/share/zoneinfo/America/Iqaluit
+OLD_FILES+=usr/share/zoneinfo/America/Jamaica
+OLD_FILES+=usr/share/zoneinfo/America/Juneau
+OLD_FILES+=usr/share/zoneinfo/America/Kentucky/Louisville
+OLD_FILES+=usr/share/zoneinfo/America/Kentucky/Monticello
+OLD_FILES+=usr/share/zoneinfo/America/Kralendijk
+OLD_FILES+=usr/share/zoneinfo/America/La_Paz
+OLD_FILES+=usr/share/zoneinfo/America/Lima
+OLD_FILES+=usr/share/zoneinfo/America/Los_Angeles
+OLD_FILES+=usr/share/zoneinfo/America/Lower_Princes
+OLD_FILES+=usr/share/zoneinfo/America/Maceio
+OLD_FILES+=usr/share/zoneinfo/America/Managua
+OLD_FILES+=usr/share/zoneinfo/America/Manaus
+OLD_FILES+=usr/share/zoneinfo/America/Marigot
+OLD_FILES+=usr/share/zoneinfo/America/Martinique
+OLD_FILES+=usr/share/zoneinfo/America/Matamoros
+OLD_FILES+=usr/share/zoneinfo/America/Mazatlan
+OLD_FILES+=usr/share/zoneinfo/America/Menominee
+OLD_FILES+=usr/share/zoneinfo/America/Merida
+OLD_FILES+=usr/share/zoneinfo/America/Metlakatla
+OLD_FILES+=usr/share/zoneinfo/America/Mexico_City
+OLD_FILES+=usr/share/zoneinfo/America/Miquelon
+OLD_FILES+=usr/share/zoneinfo/America/Moncton
+OLD_FILES+=usr/share/zoneinfo/America/Monterrey
+OLD_FILES+=usr/share/zoneinfo/America/Montevideo
+OLD_FILES+=usr/share/zoneinfo/America/Montreal
+OLD_FILES+=usr/share/zoneinfo/America/Montserrat
+OLD_FILES+=usr/share/zoneinfo/America/Nassau
+OLD_FILES+=usr/share/zoneinfo/America/New_York
+OLD_FILES+=usr/share/zoneinfo/America/Nipigon
+OLD_FILES+=usr/share/zoneinfo/America/Nome
+OLD_FILES+=usr/share/zoneinfo/America/Noronha
+OLD_FILES+=usr/share/zoneinfo/America/North_Dakota/Beulah
+OLD_FILES+=usr/share/zoneinfo/America/North_Dakota/Center
+OLD_FILES+=usr/share/zoneinfo/America/North_Dakota/New_Salem
+OLD_FILES+=usr/share/zoneinfo/America/Ojinaga
+OLD_FILES+=usr/share/zoneinfo/America/Panama
+OLD_FILES+=usr/share/zoneinfo/America/Pangnirtung
+OLD_FILES+=usr/share/zoneinfo/America/Paramaribo
+OLD_FILES+=usr/share/zoneinfo/America/Phoenix
+OLD_FILES+=usr/share/zoneinfo/America/Port-au-Prince
+OLD_FILES+=usr/share/zoneinfo/America/Port_of_Spain
+OLD_FILES+=usr/share/zoneinfo/America/Porto_Velho
+OLD_FILES+=usr/share/zoneinfo/America/Puerto_Rico
+OLD_FILES+=usr/share/zoneinfo/America/Rainy_River
+OLD_FILES+=usr/share/zoneinfo/America/Rankin_Inlet
+OLD_FILES+=usr/share/zoneinfo/America/Recife
+OLD_FILES+=usr/share/zoneinfo/America/Regina
+OLD_FILES+=usr/share/zoneinfo/America/Resolute
+OLD_FILES+=usr/share/zoneinfo/America/Rio_Branco
+OLD_FILES+=usr/share/zoneinfo/America/Santa_Isabel
+OLD_FILES+=usr/share/zoneinfo/America/Santarem
+OLD_FILES+=usr/share/zoneinfo/America/Santiago
+OLD_FILES+=usr/share/zoneinfo/America/Santo_Domingo
+OLD_FILES+=usr/share/zoneinfo/America/Sao_Paulo
+OLD_FILES+=usr/share/zoneinfo/America/Scoresbysund
+OLD_FILES+=usr/share/zoneinfo/America/Sitka
+OLD_FILES+=usr/share/zoneinfo/America/St_Barthelemy
+OLD_FILES+=usr/share/zoneinfo/America/St_Johns
+OLD_FILES+=usr/share/zoneinfo/America/St_Kitts
+OLD_FILES+=usr/share/zoneinfo/America/St_Lucia
+OLD_FILES+=usr/share/zoneinfo/America/St_Thomas
+OLD_FILES+=usr/share/zoneinfo/America/St_Vincent
+OLD_FILES+=usr/share/zoneinfo/America/Swift_Current
+OLD_FILES+=usr/share/zoneinfo/America/Tegucigalpa
+OLD_FILES+=usr/share/zoneinfo/America/Thule
+OLD_FILES+=usr/share/zoneinfo/America/Thunder_Bay
+OLD_FILES+=usr/share/zoneinfo/America/Tijuana
+OLD_FILES+=usr/share/zoneinfo/America/Toronto
+OLD_FILES+=usr/share/zoneinfo/America/Tortola
+OLD_FILES+=usr/share/zoneinfo/America/Vancouver
+OLD_FILES+=usr/share/zoneinfo/America/Whitehorse
+OLD_FILES+=usr/share/zoneinfo/America/Winnipeg
+OLD_FILES+=usr/share/zoneinfo/America/Yakutat
+OLD_FILES+=usr/share/zoneinfo/America/Yellowknife
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Casey
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Davis
+OLD_FILES+=usr/share/zoneinfo/Antarctica/DumontDUrville
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Macquarie
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Mawson
+OLD_FILES+=usr/share/zoneinfo/Antarctica/McMurdo
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Palmer
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Rothera
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Syowa
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Troll
+OLD_FILES+=usr/share/zoneinfo/Antarctica/Vostok
+OLD_FILES+=usr/share/zoneinfo/Arctic/Longyearbyen
+OLD_FILES+=usr/share/zoneinfo/Asia/Aden
+OLD_FILES+=usr/share/zoneinfo/Asia/Almaty
+OLD_FILES+=usr/share/zoneinfo/Asia/Amman
+OLD_FILES+=usr/share/zoneinfo/Asia/Anadyr
+OLD_FILES+=usr/share/zoneinfo/Asia/Aqtau
+OLD_FILES+=usr/share/zoneinfo/Asia/Aqtobe
+OLD_FILES+=usr/share/zoneinfo/Asia/Ashgabat
+OLD_FILES+=usr/share/zoneinfo/Asia/Baghdad
+OLD_FILES+=usr/share/zoneinfo/Asia/Bahrain
+OLD_FILES+=usr/share/zoneinfo/Asia/Baku
+OLD_FILES+=usr/share/zoneinfo/Asia/Bangkok
+OLD_FILES+=usr/share/zoneinfo/Asia/Beirut
+OLD_FILES+=usr/share/zoneinfo/Asia/Bishkek
+OLD_FILES+=usr/share/zoneinfo/Asia/Brunei
+OLD_FILES+=usr/share/zoneinfo/Asia/Chita
+OLD_FILES+=usr/share/zoneinfo/Asia/Choibalsan
+OLD_FILES+=usr/share/zoneinfo/Asia/Colombo
+OLD_FILES+=usr/share/zoneinfo/Asia/Damascus
+OLD_FILES+=usr/share/zoneinfo/Asia/Dhaka
+OLD_FILES+=usr/share/zoneinfo/Asia/Dili
+OLD_FILES+=usr/share/zoneinfo/Asia/Dubai
+OLD_FILES+=usr/share/zoneinfo/Asia/Dushanbe
+OLD_FILES+=usr/share/zoneinfo/Asia/Gaza
+OLD_FILES+=usr/share/zoneinfo/Asia/Hebron
+OLD_FILES+=usr/share/zoneinfo/Asia/Ho_Chi_Minh
+OLD_FILES+=usr/share/zoneinfo/Asia/Hong_Kong
+OLD_FILES+=usr/share/zoneinfo/Asia/Hovd
+OLD_FILES+=usr/share/zoneinfo/Asia/Irkutsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Istanbul
+OLD_FILES+=usr/share/zoneinfo/Asia/Jakarta
+OLD_FILES+=usr/share/zoneinfo/Asia/Jayapura
+OLD_FILES+=usr/share/zoneinfo/Asia/Jerusalem
+OLD_FILES+=usr/share/zoneinfo/Asia/Kabul
+OLD_FILES+=usr/share/zoneinfo/Asia/Kamchatka
+OLD_FILES+=usr/share/zoneinfo/Asia/Karachi
+OLD_FILES+=usr/share/zoneinfo/Asia/Kathmandu
+OLD_FILES+=usr/share/zoneinfo/Asia/Khandyga
+OLD_FILES+=usr/share/zoneinfo/Asia/Kolkata
+OLD_FILES+=usr/share/zoneinfo/Asia/Krasnoyarsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Kuala_Lumpur
+OLD_FILES+=usr/share/zoneinfo/Asia/Kuching
+OLD_FILES+=usr/share/zoneinfo/Asia/Kuwait
+OLD_FILES+=usr/share/zoneinfo/Asia/Macau
+OLD_FILES+=usr/share/zoneinfo/Asia/Magadan
+OLD_FILES+=usr/share/zoneinfo/Asia/Makassar
+OLD_FILES+=usr/share/zoneinfo/Asia/Manila
+OLD_FILES+=usr/share/zoneinfo/Asia/Muscat
+OLD_FILES+=usr/share/zoneinfo/Asia/Nicosia
+OLD_FILES+=usr/share/zoneinfo/Asia/Novokuznetsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Novosibirsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Omsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Oral
+OLD_FILES+=usr/share/zoneinfo/Asia/Phnom_Penh
+OLD_FILES+=usr/share/zoneinfo/Asia/Pontianak
+OLD_FILES+=usr/share/zoneinfo/Asia/Pyongyang
+OLD_FILES+=usr/share/zoneinfo/Asia/Qatar
+OLD_FILES+=usr/share/zoneinfo/Asia/Qyzylorda
+OLD_FILES+=usr/share/zoneinfo/Asia/Rangoon
+OLD_FILES+=usr/share/zoneinfo/Asia/Riyadh
+OLD_FILES+=usr/share/zoneinfo/Asia/Sakhalin
+OLD_FILES+=usr/share/zoneinfo/Asia/Samarkand
+OLD_FILES+=usr/share/zoneinfo/Asia/Seoul
+OLD_FILES+=usr/share/zoneinfo/Asia/Shanghai
+OLD_FILES+=usr/share/zoneinfo/Asia/Singapore
+OLD_FILES+=usr/share/zoneinfo/Asia/Srednekolymsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Taipei
+OLD_FILES+=usr/share/zoneinfo/Asia/Tashkent
+OLD_FILES+=usr/share/zoneinfo/Asia/Tbilisi
+OLD_FILES+=usr/share/zoneinfo/Asia/Tehran
+OLD_FILES+=usr/share/zoneinfo/Asia/Thimphu
+OLD_FILES+=usr/share/zoneinfo/Asia/Tokyo
+OLD_FILES+=usr/share/zoneinfo/Asia/Ulaanbaatar
+OLD_FILES+=usr/share/zoneinfo/Asia/Urumqi
+OLD_FILES+=usr/share/zoneinfo/Asia/Ust-Nera
+OLD_FILES+=usr/share/zoneinfo/Asia/Vientiane
+OLD_FILES+=usr/share/zoneinfo/Asia/Vladivostok
+OLD_FILES+=usr/share/zoneinfo/Asia/Yakutsk
+OLD_FILES+=usr/share/zoneinfo/Asia/Yekaterinburg
+OLD_FILES+=usr/share/zoneinfo/Asia/Yerevan
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Azores
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Bermuda
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Canary
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Cape_Verde
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Faroe
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Madeira
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Reykjavik
+OLD_FILES+=usr/share/zoneinfo/Atlantic/South_Georgia
+OLD_FILES+=usr/share/zoneinfo/Atlantic/St_Helena
+OLD_FILES+=usr/share/zoneinfo/Atlantic/Stanley
+OLD_FILES+=usr/share/zoneinfo/Australia/Adelaide
+OLD_FILES+=usr/share/zoneinfo/Australia/Brisbane
+OLD_FILES+=usr/share/zoneinfo/Australia/Broken_Hill
+OLD_FILES+=usr/share/zoneinfo/Australia/Currie
+OLD_FILES+=usr/share/zoneinfo/Australia/Darwin
+OLD_FILES+=usr/share/zoneinfo/Australia/Eucla
+OLD_FILES+=usr/share/zoneinfo/Australia/Hobart
+OLD_FILES+=usr/share/zoneinfo/Australia/Lindeman
+OLD_FILES+=usr/share/zoneinfo/Australia/Lord_Howe
+OLD_FILES+=usr/share/zoneinfo/Australia/Melbourne
+OLD_FILES+=usr/share/zoneinfo/Australia/Perth
+OLD_FILES+=usr/share/zoneinfo/Australia/Sydney
+OLD_FILES+=usr/share/zoneinfo/CET
+OLD_FILES+=usr/share/zoneinfo/CST6CDT
+OLD_FILES+=usr/share/zoneinfo/EET
+OLD_FILES+=usr/share/zoneinfo/EST
+OLD_FILES+=usr/share/zoneinfo/EST5EDT
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+0
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+1
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+10
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+11
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+12
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+2
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+3
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+4
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+5
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+6
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+7
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+8
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT+9
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-0
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-1
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-10
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-11
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-12
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-13
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-14
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-2
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-3
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-4
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-5
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-6
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-7
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-8
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT-9
+OLD_FILES+=usr/share/zoneinfo/Etc/GMT0
+OLD_FILES+=usr/share/zoneinfo/Etc/Greenwich
+OLD_FILES+=usr/share/zoneinfo/Etc/UCT
+OLD_FILES+=usr/share/zoneinfo/Etc/UTC
+OLD_FILES+=usr/share/zoneinfo/Etc/Universal
+OLD_FILES+=usr/share/zoneinfo/Etc/Zulu
+OLD_FILES+=usr/share/zoneinfo/Europe/Amsterdam
+OLD_FILES+=usr/share/zoneinfo/Europe/Andorra
+OLD_FILES+=usr/share/zoneinfo/Europe/Athens
+OLD_FILES+=usr/share/zoneinfo/Europe/Belgrade
+OLD_FILES+=usr/share/zoneinfo/Europe/Berlin
+OLD_FILES+=usr/share/zoneinfo/Europe/Bratislava
+OLD_FILES+=usr/share/zoneinfo/Europe/Brussels
+OLD_FILES+=usr/share/zoneinfo/Europe/Bucharest
+OLD_FILES+=usr/share/zoneinfo/Europe/Budapest
+OLD_FILES+=usr/share/zoneinfo/Europe/Busingen
+OLD_FILES+=usr/share/zoneinfo/Europe/Chisinau
+OLD_FILES+=usr/share/zoneinfo/Europe/Copenhagen
+OLD_FILES+=usr/share/zoneinfo/Europe/Dublin
+OLD_FILES+=usr/share/zoneinfo/Europe/Gibraltar
+OLD_FILES+=usr/share/zoneinfo/Europe/Guernsey
+OLD_FILES+=usr/share/zoneinfo/Europe/Helsinki
+OLD_FILES+=usr/share/zoneinfo/Europe/Isle_of_Man
+OLD_FILES+=usr/share/zoneinfo/Europe/Istanbul
+OLD_FILES+=usr/share/zoneinfo/Europe/Jersey
+OLD_FILES+=usr/share/zoneinfo/Europe/Kaliningrad
+OLD_FILES+=usr/share/zoneinfo/Europe/Kiev
+OLD_FILES+=usr/share/zoneinfo/Europe/Lisbon
+OLD_FILES+=usr/share/zoneinfo/Europe/Ljubljana
+OLD_FILES+=usr/share/zoneinfo/Europe/London
+OLD_FILES+=usr/share/zoneinfo/Europe/Luxembourg
+OLD_FILES+=usr/share/zoneinfo/Europe/Madrid
+OLD_FILES+=usr/share/zoneinfo/Europe/Malta
+OLD_FILES+=usr/share/zoneinfo/Europe/Mariehamn
+OLD_FILES+=usr/share/zoneinfo/Europe/Minsk
+OLD_FILES+=usr/share/zoneinfo/Europe/Monaco
+OLD_FILES+=usr/share/zoneinfo/Europe/Moscow
+OLD_FILES+=usr/share/zoneinfo/Europe/Nicosia
+OLD_FILES+=usr/share/zoneinfo/Europe/Oslo
+OLD_FILES+=usr/share/zoneinfo/Europe/Paris
+OLD_FILES+=usr/share/zoneinfo/Europe/Podgorica
+OLD_FILES+=usr/share/zoneinfo/Europe/Prague
+OLD_FILES+=usr/share/zoneinfo/Europe/Riga
+OLD_FILES+=usr/share/zoneinfo/Europe/Rome
+OLD_FILES+=usr/share/zoneinfo/Europe/Samara
+OLD_FILES+=usr/share/zoneinfo/Europe/San_Marino
+OLD_FILES+=usr/share/zoneinfo/Europe/Sarajevo
+OLD_FILES+=usr/share/zoneinfo/Europe/Simferopol
+OLD_FILES+=usr/share/zoneinfo/Europe/Skopje
+OLD_FILES+=usr/share/zoneinfo/Europe/Sofia
+OLD_FILES+=usr/share/zoneinfo/Europe/Stockholm
+OLD_FILES+=usr/share/zoneinfo/Europe/Tallinn
+OLD_FILES+=usr/share/zoneinfo/Europe/Tirane
+OLD_FILES+=usr/share/zoneinfo/Europe/Uzhgorod
+OLD_FILES+=usr/share/zoneinfo/Europe/Vaduz
+OLD_FILES+=usr/share/zoneinfo/Europe/Vatican
+OLD_FILES+=usr/share/zoneinfo/Europe/Vienna
+OLD_FILES+=usr/share/zoneinfo/Europe/Vilnius
+OLD_FILES+=usr/share/zoneinfo/Europe/Volgograd
+OLD_FILES+=usr/share/zoneinfo/Europe/Warsaw
+OLD_FILES+=usr/share/zoneinfo/Europe/Zagreb
+OLD_FILES+=usr/share/zoneinfo/Europe/Zaporozhye
+OLD_FILES+=usr/share/zoneinfo/Europe/Zurich
+OLD_FILES+=usr/share/zoneinfo/Factory
+OLD_FILES+=usr/share/zoneinfo/HST
+OLD_FILES+=usr/share/zoneinfo/Indian/Antananarivo
+OLD_FILES+=usr/share/zoneinfo/Indian/Chagos
+OLD_FILES+=usr/share/zoneinfo/Indian/Christmas
+OLD_FILES+=usr/share/zoneinfo/Indian/Cocos
+OLD_FILES+=usr/share/zoneinfo/Indian/Comoro
+OLD_FILES+=usr/share/zoneinfo/Indian/Kerguelen
+OLD_FILES+=usr/share/zoneinfo/Indian/Mahe
+OLD_FILES+=usr/share/zoneinfo/Indian/Maldives
+OLD_FILES+=usr/share/zoneinfo/Indian/Mauritius
+OLD_FILES+=usr/share/zoneinfo/Indian/Mayotte
+OLD_FILES+=usr/share/zoneinfo/Indian/Reunion
+OLD_FILES+=usr/share/zoneinfo/MET
+OLD_FILES+=usr/share/zoneinfo/MST
+OLD_FILES+=usr/share/zoneinfo/MST7MDT
+OLD_FILES+=usr/share/zoneinfo/PST8PDT
+OLD_FILES+=usr/share/zoneinfo/Pacific/Apia
+OLD_FILES+=usr/share/zoneinfo/Pacific/Auckland
+OLD_FILES+=usr/share/zoneinfo/Pacific/Bougainville
+OLD_FILES+=usr/share/zoneinfo/Pacific/Chatham
+OLD_FILES+=usr/share/zoneinfo/Pacific/Chuuk
+OLD_FILES+=usr/share/zoneinfo/Pacific/Easter
+OLD_FILES+=usr/share/zoneinfo/Pacific/Efate
+OLD_FILES+=usr/share/zoneinfo/Pacific/Enderbury
+OLD_FILES+=usr/share/zoneinfo/Pacific/Fakaofo
+OLD_FILES+=usr/share/zoneinfo/Pacific/Fiji
+OLD_FILES+=usr/share/zoneinfo/Pacific/Funafuti
+OLD_FILES+=usr/share/zoneinfo/Pacific/Galapagos
+OLD_FILES+=usr/share/zoneinfo/Pacific/Gambier
+OLD_FILES+=usr/share/zoneinfo/Pacific/Guadalcanal
+OLD_FILES+=usr/share/zoneinfo/Pacific/Guam
+OLD_FILES+=usr/share/zoneinfo/Pacific/Honolulu
+OLD_FILES+=usr/share/zoneinfo/Pacific/Johnston
+OLD_FILES+=usr/share/zoneinfo/Pacific/Kiritimati
+OLD_FILES+=usr/share/zoneinfo/Pacific/Kosrae
+OLD_FILES+=usr/share/zoneinfo/Pacific/Kwajalein
+OLD_FILES+=usr/share/zoneinfo/Pacific/Majuro
+OLD_FILES+=usr/share/zoneinfo/Pacific/Marquesas
+OLD_FILES+=usr/share/zoneinfo/Pacific/Midway
+OLD_FILES+=usr/share/zoneinfo/Pacific/Nauru
+OLD_FILES+=usr/share/zoneinfo/Pacific/Niue
+OLD_FILES+=usr/share/zoneinfo/Pacific/Norfolk
+OLD_FILES+=usr/share/zoneinfo/Pacific/Noumea
+OLD_FILES+=usr/share/zoneinfo/Pacific/Pago_Pago
+OLD_FILES+=usr/share/zoneinfo/Pacific/Palau
+OLD_FILES+=usr/share/zoneinfo/Pacific/Pitcairn
+OLD_FILES+=usr/share/zoneinfo/Pacific/Pohnpei
+OLD_FILES+=usr/share/zoneinfo/Pacific/Port_Moresby
+OLD_FILES+=usr/share/zoneinfo/Pacific/Rarotonga
+OLD_FILES+=usr/share/zoneinfo/Pacific/Saipan
+OLD_FILES+=usr/share/zoneinfo/Pacific/Tahiti
+OLD_FILES+=usr/share/zoneinfo/Pacific/Tarawa
+OLD_FILES+=usr/share/zoneinfo/Pacific/Tongatapu
+OLD_FILES+=usr/share/zoneinfo/Pacific/Wake
+OLD_FILES+=usr/share/zoneinfo/Pacific/Wallis
+OLD_FILES+=usr/share/zoneinfo/UTC
+OLD_FILES+=usr/share/zoneinfo/WET
+OLD_FILES+=usr/share/zoneinfo/posixrules
+OLD_FILES+=usr/share/zoneinfo/zone.tab
+.endif
diff --git a/tools/build/options/WITHOUT_AUTOFS b/tools/build/options/WITHOUT_AUTOFS
new file mode 100644
index 0000000..f9c5c2c
--- /dev/null
+++ b/tools/build/options/WITHOUT_AUTOFS
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build
+.Xr autofs 4
+related programs, libraries, and kernel modules.
diff --git a/tools/build/options/WITHOUT_BHYVE b/tools/build/options/WITHOUT_BHYVE
new file mode 100644
index 0000000..b80a726
--- /dev/null
+++ b/tools/build/options/WITHOUT_BHYVE
@@ -0,0 +1,6 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr bhyve 8 ,
+associated utilities, and examples.
+.Pp
+This option only affects amd64/amd64.
diff --git a/tools/build/options/WITHOUT_BOOTPARAMD b/tools/build/options/WITHOUT_BOOTPARAMD
new file mode 100644
index 0000000..f996083
--- /dev/null
+++ b/tools/build/options/WITHOUT_BOOTPARAMD
@@ -0,0 +1,3 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr bootparamd 8 .
diff --git a/tools/build/options/WITHOUT_BOOTPD b/tools/build/options/WITHOUT_BOOTPD
new file mode 100644
index 0000000..6733d5a
--- /dev/null
+++ b/tools/build/options/WITHOUT_BOOTPD
@@ -0,0 +1,3 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr bootpd 8 .
diff --git a/tools/build/options/WITHOUT_BSDINSTALL b/tools/build/options/WITHOUT_BSDINSTALL
new file mode 100644
index 0000000..8aaf2a6
--- /dev/null
+++ b/tools/build/options/WITHOUT_BSDINSTALL
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build
+.Xr bsdinstall 8 ,
+.Xr sade 8 ,
+and related programs.
diff --git a/tools/build/options/WITHOUT_CCD b/tools/build/options/WITHOUT_CCD
new file mode 100644
index 0000000..b4d044e
--- /dev/null
+++ b/tools/build/options/WITHOUT_CCD
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build
+.Xr geom_ccd 4
+and related utilities.
diff --git a/tools/build/options/WITHOUT_CROSS_COMPILER b/tools/build/options/WITHOUT_CROSS_COMPILER
index ab1bd23..80420c5 100644
--- a/tools/build/options/WITHOUT_CROSS_COMPILER
+++ b/tools/build/options/WITHOUT_CROSS_COMPILER
@@ -1,13 +1,13 @@
.\" $FreeBSD$
Set to not build any cross compiler in the cross-tools stage of buildworld.
If you are compiling a different version of
-.Fx
+.Fx
than what is installed on the system, you will need to provide an alternate
compiler with XCC to ensure success.
If you are compiling with an identical version of
-.Fx
+.Fx
to the host, this option may be safely used.
This option may also be safe when the host version of
-.Fx
+.Fx
is close to the sources being built, but all bets are off if there have
been any changes to the toolchain between the versions.
diff --git a/tools/build/options/WITHOUT_CXX b/tools/build/options/WITHOUT_CXX
index 541cc3c..ab9346a 100644
--- a/tools/build/options/WITHOUT_CXX
+++ b/tools/build/options/WITHOUT_CXX
@@ -1,6 +1,6 @@
.\" $FreeBSD$
Set to not build
-.Xr g++ 1
+.Xr c++ 1
and related libraries.
It will also prevent building of
.Xr gperf 1
diff --git a/tools/build/options/WITHOUT_EE b/tools/build/options/WITHOUT_EE
new file mode 100644
index 0000000..721ddaa
--- /dev/null
+++ b/tools/build/options/WITHOUT_EE
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build and install
+.Xr edit 1 ,
+.Xr ee 1 ,
+and related programs.
diff --git a/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS b/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS
new file mode 100644
index 0000000..e478058
--- /dev/null
+++ b/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS
@@ -0,0 +1,9 @@
+.\" $FreeBSD$
+Set to use
+.Xr addr2line 1 ,
+.Xr nm 1 ,
+.Xr size 1 ,
+.Xr strings 1 ,
+and
+.Xr strip 1
+from GNU binutils instead of the ELF Tool Chain project.
diff --git a/tools/build/options/WITHOUT_FILE b/tools/build/options/WITHOUT_FILE
new file mode 100644
index 0000000..636d00a
--- /dev/null
+++ b/tools/build/options/WITHOUT_FILE
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build
+.Xr file 1
+and related programs.
diff --git a/tools/build/options/WITHOUT_FINGER b/tools/build/options/WITHOUT_FINGER
new file mode 100644
index 0000000..7f65408
--- /dev/null
+++ b/tools/build/options/WITHOUT_FINGER
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr finger 1
+and
+.Xr fingerd 8 .
diff --git a/tools/build/options/WITHOUT_FTP b/tools/build/options/WITHOUT_FTP
new file mode 100644
index 0000000..5e0fc8e
--- /dev/null
+++ b/tools/build/options/WITHOUT_FTP
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr ftp 1
+and
+.Xr ftpd 8 .
diff --git a/tools/build/options/WITHOUT_GPIB b/tools/build/options/WITHOUT_GPIB
deleted file mode 100644
index 82cec15..0000000
--- a/tools/build/options/WITHOUT_GPIB
+++ /dev/null
@@ -1,2 +0,0 @@
-.\" $FreeBSD$
-Set to not build GPIB bus support.
diff --git a/tools/build/options/WITHOUT_HAST b/tools/build/options/WITHOUT_HAST
new file mode 100644
index 0000000..0c31b8c
--- /dev/null
+++ b/tools/build/options/WITHOUT_HAST
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build
+.Xr hastd 8
+and related utilities.
diff --git a/tools/build/options/WITHOUT_INCLUDES b/tools/build/options/WITHOUT_INCLUDES
index 8ccb207..40f8ff5 100644
--- a/tools/build/options/WITHOUT_INCLUDES
+++ b/tools/build/options/WITHOUT_INCLUDES
@@ -1,8 +1,7 @@
.\" $FreeBSD$
Set to not install header files.
-This option used to be spelled
+This option used to be spelled
.Va NO_INCS .
.Bf -symbolic
The option does not work for build targets.
.Ef
-
diff --git a/tools/build/options/WITHOUT_INETD b/tools/build/options/WITHOUT_INETD
new file mode 100644
index 0000000..b4fe5dc
--- /dev/null
+++ b/tools/build/options/WITHOUT_INETD
@@ -0,0 +1,3 @@
+.\" $FreeBSD$
+Set to not build
+.Xr inetd 8 .
diff --git a/tools/build/options/WITHOUT_ISCSI b/tools/build/options/WITHOUT_ISCSI
new file mode 100644
index 0000000..83f3d74
--- /dev/null
+++ b/tools/build/options/WITHOUT_ISCSI
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build
+.Xr iscid 8
+and related utilities.
diff --git a/tools/build/options/WITHOUT_RADIUS_SUPPORT b/tools/build/options/WITHOUT_RADIUS_SUPPORT
new file mode 100644
index 0000000..31f5aab
--- /dev/null
+++ b/tools/build/options/WITHOUT_RADIUS_SUPPORT
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build radius support into various applications, like
+.Xr pam_radius 8
+and
+.Xr ppp 8 .
diff --git a/tools/build/options/WITHOUT_RBOOTD b/tools/build/options/WITHOUT_RBOOTD
new file mode 100644
index 0000000..f7c33e1
--- /dev/null
+++ b/tools/build/options/WITHOUT_RBOOTD
@@ -0,0 +1,3 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr rbootd 8 .
diff --git a/tools/build/options/WITHOUT_RCS b/tools/build/options/WITHOUT_RCS
index e21e027..b4f89e1 100644
--- a/tools/build/options/WITHOUT_RCS
+++ b/tools/build/options/WITHOUT_RCS
@@ -1,6 +1,5 @@
.\" $FreeBSD$
Set to not build
-.Xr rcs 1
-,
-.Xr etcupdate 8
-, and related utilities.
+.Xr rcs 1 ,
+.Xr etcupdate 8 ,
+and related utilities.
diff --git a/tools/build/options/WITHOUT_SYSCALL_COMPAT b/tools/build/options/WITHOUT_SYSCALL_COMPAT
deleted file mode 100644
index a20adcb..0000000
--- a/tools/build/options/WITHOUT_SYSCALL_COMPAT
+++ /dev/null
@@ -1,2 +0,0 @@
-.\" $FreeBSD$
-Do not include some compatible syscall wrappers in libc.
diff --git a/tools/build/options/WITHOUT_TALK b/tools/build/options/WITHOUT_TALK
new file mode 100644
index 0000000..33d4167
--- /dev/null
+++ b/tools/build/options/WITHOUT_TALK
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr talk 1
+and
+.Xr talkd 8 .
diff --git a/tools/build/options/WITHOUT_TCP_WRAPPERS b/tools/build/options/WITHOUT_TCP_WRAPPERS
new file mode 100644
index 0000000..7c41198
--- /dev/null
+++ b/tools/build/options/WITHOUT_TCP_WRAPPERS
@@ -0,0 +1,4 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr tcpd 8 ,
+and related utilities.
diff --git a/tools/build/options/WITHOUT_TFTP b/tools/build/options/WITHOUT_TFTP
new file mode 100644
index 0000000..bdb51ac
--- /dev/null
+++ b/tools/build/options/WITHOUT_TFTP
@@ -0,0 +1,5 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr tftp 1
+and
+.Xr tftpd 8 .
diff --git a/tools/build/options/WITHOUT_TIMED b/tools/build/options/WITHOUT_TIMED
new file mode 100644
index 0000000..a1f4c68
--- /dev/null
+++ b/tools/build/options/WITHOUT_TIMED
@@ -0,0 +1,3 @@
+.\" $FreeBSD$
+Set to not build or install
+.Xr timed 8 .
diff --git a/tools/build/options/WITHOUT_WARNS b/tools/build/options/WITHOUT_WARNS
index 185a279..a0c1339 100644
--- a/tools/build/options/WITHOUT_WARNS
+++ b/tools/build/options/WITHOUT_WARNS
@@ -2,4 +2,4 @@
Set this to not add warning flags to the compiler invocations.
Useful as a temporary workaround when code enters the tree
which triggers warnings in environments that differ from the
-original develoepr.
+original developer.
diff --git a/tools/build/options/WITH_FMAKE b/tools/build/options/WITH_FMAKE
index 72ae456..9a98c8c 100644
--- a/tools/build/options/WITH_FMAKE
+++ b/tools/build/options/WITH_FMAKE
@@ -1,4 +1,4 @@
.\" $FreeBSD$
-Causes the old FreeBSD
+Causes the old FreeBSD
.Xr make 1
program to be built and installed as fmake.
diff --git a/tools/build/options/WITH_INFO b/tools/build/options/WITH_INFO
deleted file mode 100644
index 01c8291..0000000
--- a/tools/build/options/WITH_INFO
+++ /dev/null
@@ -1,4 +0,0 @@
-.\" $FreeBSD$
-Set to make or install
-.Xr info 5
-files.
diff --git a/tools/build/stdlib.h b/tools/build/stdlib.h
new file mode 100644
index 0000000..5f9b90b
--- /dev/null
+++ b/tools/build/stdlib.h
@@ -0,0 +1,42 @@
+/*-
+ * Copyright (c) 2015 Dimitry Andric <dim@FreeBSD.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+#ifndef _LEGACY_STDLIB_H_
+#define _LEGACY_STDLIB_H_
+
+#include_next <stdlib.h>
+
+__BEGIN_DECLS
+
+#if __BSD_VISIBLE
+void *reallocarray(void *, size_t, size_t);
+#endif /* __BSD_VISIBLE */
+
+__END_DECLS
+
+#endif /* !_LEGACY_STDLIB_H_ */
OpenPOWER on IntegriCloud