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