Merge from vendor branch FILE:
[dragonfly.git] / etc / Makefile
1 #       from: @(#)Makefile      5.11 (Berkeley) 5/21/91
2 # $FreeBSD: src/etc/Makefile,v 1.219.2.38 2003/03/04 09:49:00 ru Exp $
3 # $DragonFly: src/etc/Makefile,v 1.209 2008/01/15 20:54:02 swildner Exp $
4
5 .if !defined(NO_SENDMAIL)
6 SUBDIR= sendmail
7 .endif
8
9 # Files that should be installed read-only (444)
10 #
11 BINUPDATE= apmd.conf fbtab gettytab network.subr \
12         pf.os \
13         protocols \
14         rc rc.firewall6 \
15         rc.sendmail rc.shutdown \
16         rc.subr rpc services \
17         etc.${MACHINE_ARCH}/disktab
18 .if defined(BINARY_UPGRADE) # location of these depends on upgrade method
19 BINUPDATE+=mail.rc locate.rc
20 .else
21 BINUPDATE+=${.CURDIR}/../usr.bin/mail/misc/mail.rc \
22         ${.CURDIR}/../usr.bin/locate/locate/locate.rc
23 .endif
24
25 # Initial distribution files are installed read-write (644)
26 #
27 BIN1=   amd.map auth.conf \
28         crontab csh.cshrc csh.login csh.logout \
29         devices.conf dhclient.conf dm.conf dntpd.conf ftpusers group \
30         hosts hosts.allow host.conf hosts.equiv hosts.lpd \
31         inetd.conf login.access login.conf \
32         motd modems networks newsyslog.conf \
33         pf.conf phones printcap profile \
34         remote sensorsd.conf \
35         shells sysctl.conf syslog.conf usbd.conf \
36         etc.${MACHINE_ARCH}/ttys
37 .if defined(BINARY_UPGRADE) # location of these depends on upgrade method
38 BIN1+=  manpath.config
39 .else
40 BIN1+=  ${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config
41 .endif
42
43 .if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
44 .if !defined(NO_OPENSSH)
45 DIRS+=  secure/lib/libssh \
46         secure/usr.bin/ssh \
47         secure/usr.sbin/sshd
48 .endif
49 DIRS+=  secure/usr.bin/openssl
50 .endif
51
52 # Files that should be installed read-only-executable (555) root:wheel
53 #
54 BIN2=   pccard_ether rc.firewall rc.suspend rc.resume
55
56 DEFAULTS= rc.conf make.conf periodic.conf uuids
57 PAMD_CONF=      README convert.sh ftpd gdm imap login other pop3 sshd \
58         telnetd xdm xserver
59
60 MTREE=  BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
61         BSD.var.dist
62 .if !defined(NO_SENDMAIL)
63 MTREE+= BSD.sendmail.dist
64 .endif
65
66 NAMEDB= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
67         make-localhost getroot README
68
69 PPPCNF= ppp.conf
70
71 ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
72         mailertable.sample aliases
73
74 # Special top level files for FreeBSD
75 FREEBSD=COPYRIGHT
76
77 # List of libraries in /usr/lib/compat that might have to be removed
78 # from /usr/lib.
79 COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
80
81 # Use this directory as the source for new configuration files when upgrading
82 UPGRADE_SRCDIR?=${.CURDIR}
83
84 distribute:
85         cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
86
87 # Include file which contains obsolete files
88 .if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
89 .include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
90 .else
91         @echo "Please do a make installworld first.  See build(7) for further"
92         @echo "information."
93 .endif
94
95 remove-obsolete-files:
96         @echo "===> Remove now obsolete files"
97         @for item in ${TO_REMOVE}; do \
98                 if [ -e ${DESTDIR}$${item} ]; then \
99                         echo "${DESTDIR}$${item}"; \
100                         rm -rf "${DESTDIR}$${item}"; \
101                 fi; \
102         done
103         @rm -f "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
104
105 preupgrade:
106 .if !defined(NO_SENDMAIL)
107         (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
108                 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
109         (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
110                 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
111                    -c "Sendmail Submission User" \
112                    -d /var/spool/clientmqueue -s /sbin/nologin
113 .endif
114         (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
115                 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
116                    -c "pflogd privsep user" \
117                    -d /var/empty -s /sbin/nologin
118         (pw -V ${DESTDIR}/etc usershow _ntp -q > /dev/null) || \
119                 pw -V ${DESTDIR}/etc useradd _ntp -u 65 \
120                    -c "ntpd privsep user" \
121                    -d /var/empty -s /sbin/nologin
122         (pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
123                 pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
124                    -c "sdpd privsep user" \
125                    -d /var/empty -s /sbin/nologin
126         (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
127                 pw -V ${DESTDIR}/etc groupadd authpf -g 63
128         (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
129                 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
130         (pw -V ${DESTDIR}/etc groupshow _ntp -q > /dev/null) || \
131                 pw -V ${DESTDIR}/etc groupadd _ntp -g 65
132         (pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
133                 pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
134
135 upgrade_etc:    preupgrade remove-obsolete-files
136 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
137         cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
138 .endif
139         cd ${UPGRADE_SRCDIR}; \
140             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
141                 ${BINUPDATE} ${DESTDIR}/etc; \
142             cap_mkdb ${DESTDIR}/etc/login.conf; \
143             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
144                 ${BIN2} ${DESTDIR}/etc;
145         cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
146             ${DEFAULTS} ${DESTDIR}/etc/defaults
147         cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
148         mkdir -p ${DESTDIR}/etc/rc.d
149         cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install 
150         # "../share/termcap/make etc-termcap" expanded inline here:
151         ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
152         # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
153         ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
154 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
155 .if !defined(NO_SENDMAIL)
156         cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
157 .endif
158 .endif
159 .if !defined(NO_I4B)
160         cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
161 .endif
162         cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
163             ${MTREE} ${DESTDIR}/etc/mtree
164         cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
165 .if !exists(${DESTDIR}/etc/pam.d)
166         mkdir -p ${DESTDIR}/etc/pam.d
167         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/README ${DESTDIR}/etc/pam.d
168         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/convert.sh ${DESTDIR}/etc/pam.d
169         sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
170 .else
171 .for pamconf in README convert.sh
172 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
173         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
174 .endif
175 .endfor
176 .endif
177 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
178         cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
179             ${FREEBSD} ${DESTDIR}/
180 .endif
181         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
182         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
183         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
184         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
185 .if exists(${DESTDIR}/usr/lib/gcc2)
186         ldconfig -m ${DESTDIR}/usr/lib/gcc2
187 .endif
188 .if exists(${DESTDIR}/usr/share/info/dc.info.gz)
189         gzip -d ${DESTDIR}/usr/share/info/dc.info.gz
190         install-info --delete ${DESTDIR}/usr/share/info/dc.info ${DESTDIR}/usr/share/info/dir
191         rm -f ${DESTDIR}/usr/share/info/dc.info
192 .endif
193 .if exists(${DESTDIR}/usr/share/info/gmp.info.gz)
194         gzip -d ${DESTDIR}/usr/share/info/gmp.info.gz
195         install-info --delete ${DESTDIR}/usr/share/info/gmp.info ${DESTDIR}/usr/share/info/dir
196         rm -f ${DESTDIR}/usr/share/info/gmp.info
197 .endif
198 .for lib in ${COMPAT_LIBS:M*.so.*}
199 .if exists(${DESTDIR}/usr/lib/${lib})
200         chflags noschg ${DESTDIR}/usr/lib/${lib}
201         rm -f ${DESTDIR}/usr/lib/${lib}
202 .endif
203 .endfor
204 .if exists(${DESTDIR}/usr/share/info/bzip2.info.gz)
205         gzip -d ${DESTDIR}/usr/share/info/bzip2.info.gz
206         install-info --delete ${DESTDIR}/usr/share/info/bzip2.info ${DESTDIR}/usr/share/info/dir
207         rm -f ${DESTDIR}/usr/share/info/bzip2.info
208 .endif
209 .if exists(${DESTDIR}/usr/share/info/gasp.info.gz)
210         gzip -d ${DESTDIR}/usr/share/info/gasp.info.gz
211         install-info --delete ${DESTDIR}/usr/share/info/gasp.info ${DESTDIR}/usr/share/info/dir
212         rm -f ${DESTDIR}/usr/share/info/gasp.info
213 .endif
214 .if exists(${DESTDIR}/usr/share/info/gperf.info.gz)
215         gzip -d ${DESTDIR}/usr/share/info/gperf.info.gz
216         install-info --delete ${DESTDIR}/usr/share/info/gperf.info ${DESTDIR}/usr/share/info/dir
217         rm -f ${DESTDIR}/usr/share/info/gperf.info
218 .endif
219 .if exists(${DESTDIR}/usr/share/info/gxxint.info.gz)
220         gzip -d ${DESTDIR}/usr/share/info/gxxint.info.gz
221         install-info --delete ${DESTDIR}/usr/share/info/gxxint.info ${DESTDIR}/usr/share/info/dir
222         rm -f ${DESTDIR}/usr/share/info/gxxint.info
223 .endif
224 .if exists(${DESTDIR}/usr/share/info/iostream.info.gz)
225         gzip -d ${DESTDIR}/usr/share/info/iostream.info.gz
226         install-info --delete ${DESTDIR}/usr/share/info/iostream.info ${DESTDIR}/usr/share/info/dir
227         rm -f ${DESTDIR}/usr/share/info/iostream.info
228 .endif
229 .if exists(${DESTDIR}/usr/share/info/ptx.info.gz)
230         gzip -d ${DESTDIR}/usr/share/info/ptx.info.gz
231         install-info --delete ${DESTDIR}/usr/share/info/ptx.info ${DESTDIR}/usr/share/info/dir
232         rm -f ${DESTDIR}/usr/share/info/ptx.info
233 .endif
234 .if exists(${DESTDIR}/usr/share/info/send-pr.info.gz)
235         gzip -d ${DESTDIR}/usr/share/info/send-pr.info.gz
236         install-info --delete ${DESTDIR}/usr/share/info/send-pr.info ${DESTDIR}/usr/share/info/dir
237         rm -f ${DESTDIR}/usr/share/info/send-pr.info
238 .endif
239 .if exists(${DESTDIR}/usr/share/info/cpp40.info.gz)
240         gzip -d ${DESTDIR}/usr/share/info/cpp40.info.gz
241         install-info --delete ${DESTDIR}/usr/share/info/cpp40.info ${DESTDIR}/usr/share/info/dir
242         rm -f ${DESTDIR}/usr/share/info/cpp40.info
243 .endif
244 .if exists(${DESTDIR}/usr/share/info/cppinternals40.info.gz)
245         gzip -d ${DESTDIR}/usr/share/info/cppinternals40.info.gz
246         install-info --delete ${DESTDIR}/usr/share/info/cppinternals40.info ${DESTDIR}/usr/share/info/dir
247         rm -f ${DESTDIR}/usr/share/info/cppinternals40.info
248 .endif
249 .if exists(${DESTDIR}/usr/share/info/gcc40.info.gz)
250         gzip -d ${DESTDIR}/usr/share/info/gcc40.info.gz
251         install-info --delete ${DESTDIR}/usr/share/info/gcc40.info ${DESTDIR}/usr/share/info/dir
252         rm -f ${DESTDIR}/usr/share/info/gcc40.info
253 .endif
254 .if exists(${DESTDIR}/usr/share/info/gccint40.info.gz)
255         gzip -d ${DESTDIR}/usr/share/info/gccint40.info.gz
256         install-info --delete ${DESTDIR}/usr/share/info/gccint40.info ${DESTDIR}/usr/share/info/dir
257         rm -f ${DESTDIR}/usr/share/info/gccint40.info
258 .endif
259 .if exists(${DESTDIR}/usr/share/info/tar.info.gz)
260         gzip -d ${DESTDIR}/usr/share/info/tar.info.gz
261         install-info --delete ${DESTDIR}/usr/share/info/tar.info ${DESTDIR}/usr/share/info/dir
262         rm -f ${DESTDIR}/usr/share/info/tar.info
263 .endif
264         ldconfig -R
265 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes
266 .if !defined(NOMAN)
267         cd ${UPGRADE_SRCDIR}/../share/man; ${MAKE} makedb
268 .endif
269 .if !defined(NO_MAKEDEV)
270         cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
271             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
272 .if !defined(NO_MAKEDEV_RUN)
273         cd ${DESTDIR}/dev; sh MAKEDEV upgrade
274 .endif
275 .endif
276 .endif
277
278 distribution:
279         cd ${.CURDIR}; \
280             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
281                 ${BINUPDATE} ${DESTDIR}/etc; \
282             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
283                 ${BIN1} ${DESTDIR}/etc; \
284             cap_mkdb ${DESTDIR}/etc/login.conf; \
285             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
286                 ${BIN2} ${DESTDIR}/etc; \
287             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
288                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
289             pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
290         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
291             ${DEFAULTS} ${DESTDIR}/etc/defaults
292         cd ${.CURDIR}/pam.d; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
293             ${PAMD_CONF} ${DESTDIR}/etc/pam.d
294         cd ${.CURDIR}/bluetooth; ${MAKE} install
295         cd ${.CURDIR}/periodic; ${MAKE} install
296         cd ${.CURDIR}/rc.d; ${MAKE} install 
297         cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
298         cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
299         cd ${.CURDIR}; \
300             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
301                 Makefile.usr ${DESTDIR}/usr/Makefile
302 .if !defined(NO_I4B)
303         cd ${.CURDIR}/isdn; ${MAKE} install
304 .endif
305 .if !defined(NO_SENDMAIL)
306         cd ${.CURDIR}/sendmail; ${MAKE} obj
307         cd ${.CURDIR}/sendmail; ${MAKE} distribution
308 .endif
309 .for dir in ${DIRS}
310 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
311         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
312         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
313 .endif
314 .endfor
315 .if !defined(NO_MAKEDEV)
316         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
317             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
318 .if !defined(NO_MAKEDEV_RUN)
319         cd ${DESTDIR}/dev; sh MAKEDEV all
320 .endif
321 .endif
322         cd ${.CURDIR}/root; \
323             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
324                 dot.cshrc ${DESTDIR}/root/.cshrc; \
325             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
326                 dot.klogin ${DESTDIR}/root/.klogin; \
327             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
328                 dot.login ${DESTDIR}/root/.login; \
329             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
330                 dot.profile ${DESTDIR}/root/.profile; \
331             rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
332             ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
333             ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
334         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
335             ${MTREE} ${DESTDIR}/etc/mtree
336         cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
337             ${NAMEDB} ${DESTDIR}/etc/namedb
338         cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
339             ${PPPCNF} ${DESTDIR}/etc/ppp
340         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
341             ${ETCMAIL} ${DESTDIR}/etc/mail
342         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
343               ! -f ${DESTDIR}/etc/aliases ]; then \
344                 set -x; \
345                 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
346         fi
347         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
348             ${DESTDIR}/etc/dumpdates
349         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
350             ${DESTDIR}/var/db/locate.database
351         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
352             ${DESTDIR}/var/log/auth.log
353         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
354             ${DESTDIR}/var/log/cron
355         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
356             ${DESTDIR}/var/log/lpd-errs
357         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
358             ${DESTDIR}/var/log/maillog
359         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
360             ${DESTDIR}/var/log/lastlog
361         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
362             ${DESTDIR}/var/log/messages
363         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
364             ${DESTDIR}/var/log/security
365         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
366             ${DESTDIR}/var/log/slip.log
367         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
368             ${DESTDIR}/var/log/ppp.log
369         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
370             ${DESTDIR}/var/log/wtmp
371         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
372             ${DESTDIR}/var/run/utmp
373         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
374             ${DESTDIR}/var/crash
375         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
376             ${FREEBSD} ${DESTDIR}/
377 .if !defined(NOMAN)
378         cd ${.CURDIR}/../share/man; ${MAKE} makedb
379 .endif
380
381 distrib-dirs:
382         -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
383         while [ $$# -gt 0 ] ; \
384         do \
385                 for dir in /usr/share/locale \
386                            /usr/share/nls \
387                            /usr/local/share/nls; \
388                 do \
389                         test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
390                         test -L "$$2" && rm -rf "$$2"; \
391                         test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
392                 done; \
393                 shift; shift; \
394         done
395         mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
396         mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
397         mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
398         mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
399                 -p ${DESTDIR}/usr/include
400 .if !defined(NO_SENDMAIL)
401         mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
402 .endif
403         cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
404         cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ${LN} -s usr/src/sys sys
405         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
406         cd ${DESTDIR}/usr/share/man; \
407         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
408         while [ $$# -gt 0 ] ; \
409         do \
410                 rm -rf "$$1"; \
411                 ${LN} -s "$$2" "$$1"; \
412                 shift; shift; \
413         done
414         cd ${DESTDIR}/usr/share/locale; \
415         set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
416         while [ $$# -gt 0 ] ; \
417         do \
418                 rm -rf "$$1"; \
419                 ${LN} -s "$$2" "$$1"; \
420                 shift; shift; \
421         done
422         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
423         cd ${DESTDIR}/usr/share/nls; \
424         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
425         while [ $$# -gt 0 ] ; \
426         do \
427                 rm -rf "$$1"; \
428                 ${LN} -s "$$2" "$$1"; \
429                 shift; shift; \
430         done
431
432 etc-examples:
433         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
434             ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
435             ${DESTDIR}/usr/share/examples/etc
436         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
437             ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
438
439 .include <bsd.prog.mk>