Merge branch 'master' into net80211-update
[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.217 2008/10/03 10:27:42 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         devd.conf devtab dhclient.conf dm.conf dntpd.conf \
30         ftpusers group \
31         hosts hosts.allow hosts.equiv hosts.lpd \
32         inetd.conf login.access login.conf \
33         motd modems netconfig networks newsyslog.conf \
34         nscd.conf pf.conf phones printcap profile \
35         regdomain.xml remote sensorsd.conf \
36         shells sysctl.conf syslog.conf usbd.conf \
37         etc.${MACHINE_ARCH}/ttys
38 .if defined(BINARY_UPGRADE) # location of these depends on upgrade method
39 BIN1+=  manpath.config
40 .else
41 BIN1+=  ${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config
42 .endif
43
44 .if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
45 .if !defined(NO_OPENSSH)
46 DIRS+=  secure/lib/libssh \
47         secure/usr.bin/ssh \
48         secure/usr.sbin/sshd
49 .endif
50 DIRS+=  secure/usr.bin/openssl
51 .endif
52 DIRS+=  libexec/dma
53
54 # Files that should be installed read-only-executable (555) root:wheel
55 #
56 BIN2=   pccard_ether rc.firewall rc.suspend rc.resume
57
58 DEFAULTS= compilers.conf devfs.conf make.conf periodic.conf rc.conf uuids
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 # Include file which contains obsolete files
85 .if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
86 .include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
87 .endif
88
89 remove-obsolete-files:
90         @if [ -z "${TO_REMOVE}" ]; then \
91                 echo "Please do a 'make installworld' first."; \
92                 echo "See build(7) for further information."; \
93                 exit 1; \
94         fi;
95         @echo "===> Remove now obsolete files"
96         @for item in ${TO_REMOVE:M*.info.gz}; do \
97                 if [ -e ${DESTDIR}$${item} ]; then \
98                         install-info --delete ${DESTDIR}$${item} \
99                             /usr/share/info/dir; \
100                 fi; \
101         done;
102         @for item in ${TO_REMOVE}; do \
103                 if [ -e ${DESTDIR}$${item} ]; then \
104                         echo "${DESTDIR}$${item}"; \
105                         rm -rf "${DESTDIR}$${item}"; \
106                 fi; \
107         done
108
109 preupgrade:
110 .if !defined(NO_SENDMAIL)
111         (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
112                 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
113         (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
114                 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
115                    -c "Sendmail Submission User" \
116                    -d /var/spool/clientmqueue -s /sbin/nologin
117 .endif
118         (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
119                 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
120                    -c "pflogd 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 usershow _dhcp -q > /dev/null) || \
127                 pw -V ${DESTDIR}/etc useradd _dhcp -u 77 \
128                    -c "DHCP programs" \
129                    -d /var/empty -s /sbin/nologin
130         (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
131                 pw -V ${DESTDIR}/etc groupadd authpf -g 63
132         (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
133                 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
134         (pw -V ${DESTDIR}/etc groupshow _sdpd -q > /dev/null) || \
135                 pw -V ${DESTDIR}/etc groupadd _sdpd -g 70
136         (pw -V ${DESTDIR}/etc groupshow _dhcp -q > /dev/null) || \
137                 pw -V ${DESTDIR}/etc groupadd _dhcp -g 77
138
139 upgrade_etc:    preupgrade remove-obsolete-files
140         # files that should be dirs (not possible with Makefile_upgrade.inc)
141 .for f in usr/include/dev/misc/ppi
142         [ -d ${DESTDIR}/${f} ] || rm -f ${DESTDIR}/${f}
143 .endfor
144 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
145         cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
146 .endif
147         cd ${UPGRADE_SRCDIR}; \
148             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
149                 ${BINUPDATE} ${DESTDIR}/etc; \
150             cap_mkdb ${DESTDIR}/etc/login.conf; \
151             for f in ${BIN1}; do \
152                 [ -e "${DESTDIR}/etc/$${f##*/}" ] || \
153                     ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
154                         $$f ${DESTDIR}/etc; \
155             done; \
156             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
157                 ${BIN2} ${DESTDIR}/etc;
158         cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
159             ${DEFAULTS} ${DESTDIR}/etc/defaults
160         cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
161         mkdir -p ${DESTDIR}/etc/rc.d
162         cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install 
163         # "../share/termcap/make etc-termcap" expanded inline here:
164         ${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
165         # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
166         ${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
167 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
168 .if !defined(NO_SENDMAIL)
169         cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
170 .endif
171 .endif
172 .if !defined(NO_I4B)
173         cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
174 .endif
175         cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
176             ${MTREE} ${DESTDIR}/etc/mtree
177         cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
178         cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.usr ${DESTDIR}/usr/Makefile
179 .if !exists(${DESTDIR}/etc/pam.d)
180         mkdir -p ${DESTDIR}/etc/pam.d
181         cd ${UPGRADE_SRCDIR}/pam.d; ${MAKE} install
182         sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
183 .else
184 .for pamconf in README convert.sh atrun cron passwd rsh su system
185 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
186         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
187 .endif
188 .endfor
189 .endif
190         # these removals must occur AFTER any pam conversion
191         csh -c "rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
192         rm -f /etc/pam.conf
193 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
194         cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
195             ${FREEBSD} ${DESTDIR}/
196 .endif
197         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
198         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
199         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
200         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
201 .if exists(${DESTDIR}/usr/lib/gcc2)
202         ldconfig -m ${DESTDIR}/usr/lib/gcc2
203 .endif
204 .for lib in ${COMPAT_LIBS:M*.so.*}
205 .if exists(${DESTDIR}/usr/lib/${lib})
206         chflags noschg ${DESTDIR}/usr/lib/${lib}
207         rm -f ${DESTDIR}/usr/lib/${lib}
208 .endif
209 .endfor
210 .if !defined(NO_OPENSSH)
211         cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc obj
212         cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc install
213 .endif
214 .if exists(${DESTDIR}/boot)
215 .if exists(${DESTDIR}/kernel)
216         chflags noschg ${DESTDIR}/kernel
217         mv ${DESTDIR}/kernel ${DESTDIR}/boot/kernel
218         chflags schg ${DESTDIR}/boot/kernel
219 .endif
220 .if exists(${DESTDIR}/modules)
221         mv ${DESTDIR}/modules ${DESTDIR}/boot/modules
222         rm -rf ${DESTDIR}/boot/modules/modules
223 .endif
224 .if exists(${DESTDIR}/kernel.old)
225         mv ${DESTDIR}/kernel.old ${DESTDIR}/boot/kernel.old
226 .endif
227 .if exists(${DESTDIR}/modules.old)
228         mv ${DESTDIR}/modules.old ${DESTDIR}/boot/modules.old
229         rm -rf ${DESTDIR}/boot/modules.old/modules.old
230 .endif
231 .endif
232         for ext in a so.0; do \
233                 f=${DESTDIR}/usr/lib/libpthread.$$ext; \
234                 dest=$$(readlink "$$f"); \
235                 case "$$dest" in \
236                 libthread_xu.*|libc_r.*) \
237                         ln -fs thread/$$dest $$f ;; \
238                 esac; \
239         done
240         ldconfig -R
241         mkdir -p ${DESTDIR}/dev
242
243 # The existence of cleartext_pass_ok means pam config files are out of date.
244         @set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
245         if [ $$# -gt 0 ] ; \
246         then \
247                 echo "It appears your PAM configuration files need to be updated"; \
248                 echo "This can be done by manually editing the files or:"; \
249                 echo "  cd ${UPGRADE_SRCDIR}/pam.d"; \
250                 echo "  make install"; \
251         fi
252
253 distribution:
254         cd ${.CURDIR}; \
255             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
256                 ${BINUPDATE} ${DESTDIR}/etc; \
257             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
258                 ${BIN1} ${DESTDIR}/etc; \
259             cap_mkdb ${DESTDIR}/etc/login.conf; \
260             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
261                 ${BIN2} ${DESTDIR}/etc; \
262             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
263                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
264             pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
265         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
266             ${DEFAULTS} ${DESTDIR}/etc/defaults
267         cd ${.CURDIR}/pam.d; ${MAKE} install
268         cd ${.CURDIR}/bluetooth; ${MAKE} install
269         cd ${.CURDIR}/periodic; ${MAKE} install
270         cd ${.CURDIR}/rc.d; ${MAKE} install 
271         cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
272         cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
273         cd ${.CURDIR}; \
274             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
275                 Makefile.usr ${DESTDIR}/usr/Makefile
276 .if !defined(NO_I4B)
277         cd ${.CURDIR}/isdn; ${MAKE} install
278 .endif
279 .if !defined(NO_SENDMAIL)
280         cd ${.CURDIR}/sendmail; ${MAKE} obj
281         cd ${.CURDIR}/sendmail; ${MAKE} distribution
282 .endif
283 .for dir in ${DIRS}
284 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
285         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
286         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
287 .endif
288 .endfor
289         mkdir -p ${DESTDIR}/dev
290         cd ${.CURDIR}/root; \
291             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
292                 dot.cshrc ${DESTDIR}/root/.cshrc; \
293             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
294                 dot.klogin ${DESTDIR}/root/.klogin; \
295             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
296                 dot.login ${DESTDIR}/root/.login; \
297             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
298                 dot.profile ${DESTDIR}/root/.profile; \
299             rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
300             ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
301             ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
302         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
303             ${MTREE} ${DESTDIR}/etc/mtree
304         cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
305             ${NAMEDB} ${DESTDIR}/etc/namedb
306         cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
307             ${PPPCNF} ${DESTDIR}/etc/ppp
308         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
309             ${ETCMAIL} ${DESTDIR}/etc/mail
310         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
311               ! -f ${DESTDIR}/etc/aliases ]; then \
312                 set -x; \
313                 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
314         fi
315         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
316             ${DESTDIR}/etc/dumpdates
317         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
318             ${DESTDIR}/var/db/locate.database
319         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
320             ${DESTDIR}/var/log/auth.log
321         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
322             ${DESTDIR}/var/log/cron
323         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
324             ${DESTDIR}/var/log/daemon
325         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
326             ${DESTDIR}/var/log/lpd-errs
327         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
328             ${DESTDIR}/var/log/maillog
329         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
330             ${DESTDIR}/var/log/lastlog
331         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
332             ${DESTDIR}/var/log/messages
333         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
334             ${DESTDIR}/var/log/security
335         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
336             ${DESTDIR}/var/log/slip.log
337         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
338             ${DESTDIR}/var/log/ppp.log
339         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
340             ${DESTDIR}/var/log/wtmp
341         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
342             ${DESTDIR}/var/run/utmp
343         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
344             ${DESTDIR}/var/crash
345         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
346             ${FREEBSD} ${DESTDIR}/
347 .if !defined(NOMAN)
348         cd ${.CURDIR}/../share/man; ${MAKE} makedb
349 .endif
350
351 distrib-dirs:
352         -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
353         while [ $$# -gt 0 ] ; \
354         do \
355                 for dir in /usr/share/locale \
356                            /usr/share/nls \
357                            /usr/local/share/nls; \
358                 do \
359                         test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
360                         test -L "$$2" && rm -rf "$$2"; \
361                         test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
362                 done; \
363                 shift; shift; \
364         done
365         mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
366         mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
367         mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
368         mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
369                 -p ${DESTDIR}/usr/include
370 .if !defined(NO_SENDMAIL)
371         mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
372 .endif
373         cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
374         cd ${DESTDIR}/; test -e sys || (rm -f sys;  ${LN} -s usr/src/sys sys)
375         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
376         cd ${DESTDIR}/usr/share/man; \
377         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
378         while [ $$# -gt 0 ] ; \
379         do \
380                 rm -rf "$$1"; \
381                 ${LN} -s "$$2" "$$1"; \
382                 shift; shift; \
383         done
384         cd ${DESTDIR}/usr/share/locale; \
385         set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
386         while [ $$# -gt 0 ] ; \
387         do \
388                 rm -rf "$$1"; \
389                 ${LN} -s "$$2" "$$1"; \
390                 shift; shift; \
391         done
392         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
393         cd ${DESTDIR}/usr/share/nls; \
394         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
395         while [ $$# -gt 0 ] ; \
396         do \
397                 rm -rf "$$1"; \
398                 ${LN} -s "$$2" "$$1"; \
399                 shift; shift; \
400         done
401
402 etc-examples:
403         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
404             ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
405             ${DESTDIR}/usr/share/examples/etc
406         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
407             ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
408
409 .include <bsd.prog.mk>