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