Add Makefile_upgrade.inc to the tree. This file contains all files
[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.206 2008/01/13 10:59:31 matthias 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}/var/db/Makefile_upgrade.inc)
89 .include "${DESTDIR}/var/db/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         @for item in ${TO_REMOVE}; do \
97                 if [ -e ${DESTDIR}$${item} ]; then \
98                         rm -rf "${DESTDIR}$${item}"; \
99                 fi; \
100         done
101         @rm -f "${DESTDIR}/var/db/Makefile_upgrade.inc"
102
103 preupgrade:
104 .if !defined(NO_SENDMAIL)
105         (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
106                 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
107         (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
108                 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
109                    -c "Sendmail Submission User" \
110                    -d /var/spool/clientmqueue -s /sbin/nologin
111 .endif
112         (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
113                 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
114                    -c "pflogd privsep user" \
115                    -d /var/empty -s /sbin/nologin
116         (pw -V ${DESTDIR}/etc usershow _ntp -q > /dev/null) || \
117                 pw -V ${DESTDIR}/etc useradd _ntp -u 65 \
118                    -c "ntpd privsep user" \
119                    -d /var/empty -s /sbin/nologin
120         (pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
121                 pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
122                    -c "sdpd privsep user" \
123                    -d /var/empty -s /sbin/nologin
124         (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
125                 pw -V ${DESTDIR}/etc groupadd authpf -g 63
126         (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
127                 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
128         (pw -V ${DESTDIR}/etc groupshow _ntp -q > /dev/null) || \
129                 pw -V ${DESTDIR}/etc groupadd _ntp -g 65
130         (pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
131                 pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
132
133 upgrade_etc:    preupgrade remove-obsolete-files
134 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
135         cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
136 .endif
137         cd ${UPGRADE_SRCDIR}; \
138             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
139                 ${BINUPDATE} ${DESTDIR}/etc; \
140             cap_mkdb ${DESTDIR}/etc/login.conf; \
141             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
142                 ${BIN2} ${DESTDIR}/etc;
143         cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
144             ${DEFAULTS} ${DESTDIR}/etc/defaults
145         cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
146         mkdir -p ${DESTDIR}/etc/rc.d
147         cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install 
148         # "../share/termcap/make etc-termcap" expanded inline here:
149         ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
150         # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
151         ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
152 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
153 .if !defined(NO_SENDMAIL)
154         cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
155 .endif
156 .endif
157 .if !defined(NO_I4B)
158         cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
159 .endif
160         cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
161             ${MTREE} ${DESTDIR}/etc/mtree
162         cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
163 .if !exists(${DESTDIR}/etc/pam.d)
164         mkdir -p ${DESTDIR}/etc/pam.d
165         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/README ${DESTDIR}/etc/pam.d
166         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/convert.sh ${DESTDIR}/etc/pam.d
167         sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
168 .else
169 .for pamconf in README convert.sh
170 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
171         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
172 .endif
173 .endfor
174 .endif
175 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
176         cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
177             ${FREEBSD} ${DESTDIR}/
178 .endif
179         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
180         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
181         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
182         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
183 .if exists(${DESTDIR}/usr/lib/gcc2)
184         ldconfig -m ${DESTDIR}/usr/lib/gcc2
185 .endif
186 .if exists(${DESTDIR}/usr/share/info/dc.info.gz)
187         gzip -d ${DESTDIR}/usr/share/info/dc.info.gz
188         install-info --delete ${DESTDIR}/usr/share/info/dc.info ${DESTDIR}/usr/share/info/dir
189         rm -f ${DESTDIR}/usr/share/info/dc.info
190 .endif
191 .if exists(${DESTDIR}/usr/share/info/gmp.info.gz)
192         gzip -d ${DESTDIR}/usr/share/info/gmp.info.gz
193         install-info --delete ${DESTDIR}/usr/share/info/gmp.info ${DESTDIR}/usr/share/info/dir
194         rm -f ${DESTDIR}/usr/share/info/gmp.info
195 .endif
196 .for lib in ${COMPAT_LIBS:M*.so.*}
197 .if exists(${DESTDIR}/usr/lib/${lib})
198         chflags noschg ${DESTDIR}/usr/lib/${lib}
199         rm -f ${DESTDIR}/usr/lib/${lib}
200 .endif
201 .endfor
202 .if exists(${DESTDIR}/usr/share/info/bzip2.info.gz)
203         gzip -d ${DESTDIR}/usr/share/info/bzip2.info.gz
204         install-info --delete ${DESTDIR}/usr/share/info/bzip2.info ${DESTDIR}/usr/share/info/dir
205         rm -f ${DESTDIR}/usr/share/info/bzip2.info
206 .endif
207 .if exists(${DESTDIR}/usr/share/info/gasp.info.gz)
208         gzip -d ${DESTDIR}/usr/share/info/gasp.info.gz
209         install-info --delete ${DESTDIR}/usr/share/info/gasp.info ${DESTDIR}/usr/share/info/dir
210         rm -f ${DESTDIR}/usr/share/info/gasp.info
211 .endif
212 .if exists(${DESTDIR}/usr/share/info/gperf.info.gz)
213         gzip -d ${DESTDIR}/usr/share/info/gperf.info.gz
214         install-info --delete ${DESTDIR}/usr/share/info/gperf.info ${DESTDIR}/usr/share/info/dir
215         rm -f ${DESTDIR}/usr/share/info/gperf.info
216 .endif
217 .if exists(${DESTDIR}/usr/share/info/gxxint.info.gz)
218         gzip -d ${DESTDIR}/usr/share/info/gxxint.info.gz
219         install-info --delete ${DESTDIR}/usr/share/info/gxxint.info ${DESTDIR}/usr/share/info/dir
220         rm -f ${DESTDIR}/usr/share/info/gxxint.info
221 .endif
222 .if exists(${DESTDIR}/usr/share/info/iostream.info.gz)
223         gzip -d ${DESTDIR}/usr/share/info/iostream.info.gz
224         install-info --delete ${DESTDIR}/usr/share/info/iostream.info ${DESTDIR}/usr/share/info/dir
225         rm -f ${DESTDIR}/usr/share/info/iostream.info
226 .endif
227 .if exists(${DESTDIR}/usr/share/info/ptx.info.gz)
228         gzip -d ${DESTDIR}/usr/share/info/ptx.info.gz
229         install-info --delete ${DESTDIR}/usr/share/info/ptx.info ${DESTDIR}/usr/share/info/dir
230         rm -f ${DESTDIR}/usr/share/info/ptx.info
231 .endif
232 .if exists(${DESTDIR}/usr/share/info/send-pr.info.gz)
233         gzip -d ${DESTDIR}/usr/share/info/send-pr.info.gz
234         install-info --delete ${DESTDIR}/usr/share/info/send-pr.info ${DESTDIR}/usr/share/info/dir
235         rm -f ${DESTDIR}/usr/share/info/send-pr.info
236 .endif
237 .if exists(${DESTDIR}/usr/share/info/cpp40.info.gz)
238         gzip -d ${DESTDIR}/usr/share/info/cpp40.info.gz
239         install-info --delete ${DESTDIR}/usr/share/info/cpp40.info ${DESTDIR}/usr/share/info/dir
240         rm -f ${DESTDIR}/usr/share/info/cpp40.info
241 .endif
242 .if exists(${DESTDIR}/usr/share/info/cppinternals40.info.gz)
243         gzip -d ${DESTDIR}/usr/share/info/cppinternals40.info.gz
244         install-info --delete ${DESTDIR}/usr/share/info/cppinternals40.info ${DESTDIR}/usr/share/info/dir
245         rm -f ${DESTDIR}/usr/share/info/cppinternals40.info
246 .endif
247 .if exists(${DESTDIR}/usr/share/info/gcc40.info.gz)
248         gzip -d ${DESTDIR}/usr/share/info/gcc40.info.gz
249         install-info --delete ${DESTDIR}/usr/share/info/gcc40.info ${DESTDIR}/usr/share/info/dir
250         rm -f ${DESTDIR}/usr/share/info/gcc40.info
251 .endif
252 .if exists(${DESTDIR}/usr/share/info/gccint40.info.gz)
253         gzip -d ${DESTDIR}/usr/share/info/gccint40.info.gz
254         install-info --delete ${DESTDIR}/usr/share/info/gccint40.info ${DESTDIR}/usr/share/info/dir
255         rm -f ${DESTDIR}/usr/share/info/gccint40.info
256 .endif
257 .if exists(${DESTDIR}/usr/share/info/tar.info.gz)
258         gzip -d ${DESTDIR}/usr/share/info/tar.info.gz
259         install-info --delete ${DESTDIR}/usr/share/info/tar.info ${DESTDIR}/usr/share/info/dir
260         rm -f ${DESTDIR}/usr/share/info/tar.info
261 .endif
262         ldconfig -R
263 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes
264 .if !defined(NOMAN)
265         cd ${UPGRADE_SRCDIR}/../share/man; ${MAKE} makedb
266 .endif
267 .if !defined(NO_MAKEDEV)
268         cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
269             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
270 .if !defined(NO_MAKEDEV_RUN)
271         cd ${DESTDIR}/dev; sh MAKEDEV upgrade
272 .endif
273 .endif
274 .endif
275
276 distribution:
277         cd ${.CURDIR}; \
278             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
279                 ${BINUPDATE} ${DESTDIR}/etc; \
280             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
281                 ${BIN1} ${DESTDIR}/etc; \
282             cap_mkdb ${DESTDIR}/etc/login.conf; \
283             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
284                 ${BIN2} ${DESTDIR}/etc; \
285             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
286                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
287             pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
288         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
289             ${DEFAULTS} ${DESTDIR}/etc/defaults
290         cd ${.CURDIR}/pam.d; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
291             ${PAMD_CONF} ${DESTDIR}/etc/pam.d
292         cd ${.CURDIR}/periodic; ${MAKE} install
293         cd ${.CURDIR}/rc.d; ${MAKE} install 
294         cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
295         cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
296         cd ${.CURDIR}; \
297             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
298                 Makefile.usr ${DESTDIR}/usr/Makefile
299 .if !defined(NO_I4B)
300         cd ${.CURDIR}/isdn; ${MAKE} install
301 .endif
302 .if !defined(NO_SENDMAIL)
303         cd ${.CURDIR}/sendmail; ${MAKE} obj
304         cd ${.CURDIR}/sendmail; ${MAKE} distribution
305 .endif
306 .for dir in ${DIRS}
307 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
308         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
309         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
310 .endif
311 .endfor
312 .if !defined(NO_MAKEDEV)
313         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
314             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
315 .if !defined(NO_MAKEDEV_RUN)
316         cd ${DESTDIR}/dev; sh MAKEDEV all
317 .endif
318 .endif
319         cd ${.CURDIR}/root; \
320             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
321                 dot.cshrc ${DESTDIR}/root/.cshrc; \
322             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
323                 dot.klogin ${DESTDIR}/root/.klogin; \
324             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
325                 dot.login ${DESTDIR}/root/.login; \
326             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
327                 dot.profile ${DESTDIR}/root/.profile; \
328             rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
329             ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
330             ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
331         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
332             ${MTREE} ${DESTDIR}/etc/mtree
333         cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
334             ${NAMEDB} ${DESTDIR}/etc/namedb
335         cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
336             ${PPPCNF} ${DESTDIR}/etc/ppp
337         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
338             ${ETCMAIL} ${DESTDIR}/etc/mail
339         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
340               ! -f ${DESTDIR}/etc/aliases ]; then \
341                 set -x; \
342                 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
343         fi
344         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
345             ${DESTDIR}/etc/dumpdates
346         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
347             ${DESTDIR}/var/db/locate.database
348         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
349             ${DESTDIR}/var/log/auth.log
350         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
351             ${DESTDIR}/var/log/cron
352         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
353             ${DESTDIR}/var/log/lpd-errs
354         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
355             ${DESTDIR}/var/log/maillog
356         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
357             ${DESTDIR}/var/log/lastlog
358         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
359             ${DESTDIR}/var/log/messages
360         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
361             ${DESTDIR}/var/log/security
362         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
363             ${DESTDIR}/var/log/slip.log
364         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
365             ${DESTDIR}/var/log/ppp.log
366         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
367             ${DESTDIR}/var/log/wtmp
368         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
369             ${DESTDIR}/var/run/utmp
370         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
371             ${DESTDIR}/var/crash
372         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
373             ${FREEBSD} ${DESTDIR}/
374 .if !defined(NOMAN)
375         cd ${.CURDIR}/../share/man; ${MAKE} makedb
376 .endif
377
378 distrib-dirs:
379         -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
380         while [ $$# -gt 0 ] ; \
381         do \
382                 for dir in /usr/share/locale \
383                            /usr/share/nls \
384                            /usr/local/share/nls; \
385                 do \
386                         test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
387                         test -L "$$2" && rm -rf "$$2"; \
388                         test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
389                 done; \
390                 shift; shift; \
391         done
392         mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
393         mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
394         mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
395         mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
396                 -p ${DESTDIR}/usr/include
397 .if !defined(NO_SENDMAIL)
398         mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
399 .endif
400         cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
401         cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ${LN} -s usr/src/sys sys
402         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
403         cd ${DESTDIR}/usr/share/man; \
404         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
405         while [ $$# -gt 0 ] ; \
406         do \
407                 rm -rf "$$1"; \
408                 ${LN} -s "$$2" "$$1"; \
409                 shift; shift; \
410         done
411         cd ${DESTDIR}/usr/share/locale; \
412         set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
413         while [ $$# -gt 0 ] ; \
414         do \
415                 rm -rf "$$1"; \
416                 ${LN} -s "$$2" "$$1"; \
417                 shift; shift; \
418         done
419         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
420         cd ${DESTDIR}/usr/share/nls; \
421         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
422         while [ $$# -gt 0 ] ; \
423         do \
424                 rm -rf "$$1"; \
425                 ${LN} -s "$$2" "$$1"; \
426                 shift; shift; \
427         done
428
429 etc-examples:
430         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
431             ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
432             ${DESTDIR}/usr/share/examples/etc
433         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
434             ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
435
436 .include <bsd.prog.mk>