cc70600db0853d69731bce861d739864f7598b2f
[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.212 2008/05/15 18:29:30 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: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 groupshow authpf -q > /dev/null) || \
129                 pw -V ${DESTDIR}/etc groupadd authpf -g 63
130         (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
131                 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
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         cd ${UPGRADE_SRCDIR}/dma; ${MAKE} install
166 .if !exists(${DESTDIR}/etc/pam.d)
167         mkdir -p ${DESTDIR}/etc/pam.d
168         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/README ${DESTDIR}/etc/pam.d
169         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/convert.sh ${DESTDIR}/etc/pam.d
170         sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
171 .else
172 .for pamconf in README convert.sh
173 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
174         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
175 .endif
176 .endfor
177 .endif
178 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
179         cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
180             ${FREEBSD} ${DESTDIR}/
181 .endif
182         rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
183         rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
184         ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
185         ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
186 .if exists(${DESTDIR}/usr/lib/gcc2)
187         ldconfig -m ${DESTDIR}/usr/lib/gcc2
188 .endif
189 .for lib in ${COMPAT_LIBS:M*.so.*}
190 .if exists(${DESTDIR}/usr/lib/${lib})
191         chflags noschg ${DESTDIR}/usr/lib/${lib}
192         rm -f ${DESTDIR}/usr/lib/${lib}
193 .endif
194 .endfor
195         ldconfig -R
196 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes
197 .if !defined(NOMAN)
198         cd ${UPGRADE_SRCDIR}/../share/man; ${MAKE} makedb
199 .endif
200 .if !defined(NO_MAKEDEV)
201         cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
202             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
203 .if !defined(NO_MAKEDEV_RUN)
204         cd ${DESTDIR}/dev; sh MAKEDEV upgrade
205 .endif
206 .endif
207 .endif
208
209 distribution:
210         cd ${.CURDIR}; \
211             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
212                 ${BINUPDATE} ${DESTDIR}/etc; \
213             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
214                 ${BIN1} ${DESTDIR}/etc; \
215             cap_mkdb ${DESTDIR}/etc/login.conf; \
216             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
217                 ${BIN2} ${DESTDIR}/etc; \
218             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
219                 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
220             pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
221         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
222             ${DEFAULTS} ${DESTDIR}/etc/defaults
223         cd ${.CURDIR}/pam.d; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
224             ${PAMD_CONF} ${DESTDIR}/etc/pam.d
225         cd ${.CURDIR}/bluetooth; ${MAKE} install
226         cd ${.CURDIR}/dma; ${MAKE} install
227         cd ${.CURDIR}/periodic; ${MAKE} install
228         cd ${.CURDIR}/rc.d; ${MAKE} install 
229         cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
230         cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
231         cd ${.CURDIR}; \
232             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
233                 Makefile.usr ${DESTDIR}/usr/Makefile
234 .if !defined(NO_I4B)
235         cd ${.CURDIR}/isdn; ${MAKE} install
236 .endif
237 .if !defined(NO_SENDMAIL)
238         cd ${.CURDIR}/sendmail; ${MAKE} obj
239         cd ${.CURDIR}/sendmail; ${MAKE} distribution
240 .endif
241 .for dir in ${DIRS}
242 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
243         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
244         cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
245 .endif
246 .endfor
247 .if !defined(NO_MAKEDEV)
248         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
249             MAKEDEV.local MAKEDEV ${DESTDIR}/dev
250 .if !defined(NO_MAKEDEV_RUN)
251         cd ${DESTDIR}/dev; sh MAKEDEV all
252 .endif
253 .endif
254         cd ${.CURDIR}/root; \
255             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
256                 dot.cshrc ${DESTDIR}/root/.cshrc; \
257             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
258                 dot.klogin ${DESTDIR}/root/.klogin; \
259             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
260                 dot.login ${DESTDIR}/root/.login; \
261             ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
262                 dot.profile ${DESTDIR}/root/.profile; \
263             rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
264             ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
265             ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
266         cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
267             ${MTREE} ${DESTDIR}/etc/mtree
268         cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
269             ${NAMEDB} ${DESTDIR}/etc/namedb
270         cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
271             ${PPPCNF} ${DESTDIR}/etc/ppp
272         cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
273             ${ETCMAIL} ${DESTDIR}/etc/mail
274         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
275               ! -f ${DESTDIR}/etc/aliases ]; then \
276                 set -x; \
277                 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
278         fi
279         ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
280             ${DESTDIR}/etc/dumpdates
281         ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
282             ${DESTDIR}/var/db/locate.database
283         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
284             ${DESTDIR}/var/log/auth.log
285         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
286             ${DESTDIR}/var/log/cron
287         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
288             ${DESTDIR}/var/log/lpd-errs
289         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
290             ${DESTDIR}/var/log/maillog
291         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
292             ${DESTDIR}/var/log/lastlog
293         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
294             ${DESTDIR}/var/log/messages
295         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
296             ${DESTDIR}/var/log/security
297         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
298             ${DESTDIR}/var/log/slip.log
299         ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
300             ${DESTDIR}/var/log/ppp.log
301         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
302             ${DESTDIR}/var/log/wtmp
303         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
304             ${DESTDIR}/var/run/utmp
305         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
306             ${DESTDIR}/var/crash
307         cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
308             ${FREEBSD} ${DESTDIR}/
309 .if !defined(NOMAN)
310         cd ${.CURDIR}/../share/man; ${MAKE} makedb
311 .endif
312
313 distrib-dirs:
314         -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
315         while [ $$# -gt 0 ] ; \
316         do \
317                 for dir in /usr/share/locale \
318                            /usr/share/nls \
319                            /usr/local/share/nls; \
320                 do \
321                         test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
322                         test -L "$$2" && rm -rf "$$2"; \
323                         test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
324                 done; \
325                 shift; shift; \
326         done
327         mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
328         mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
329         mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
330         mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
331                 -p ${DESTDIR}/usr/include
332 .if !defined(NO_SENDMAIL)
333         mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
334 .endif
335         cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
336         cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ${LN} -s usr/src/sys sys
337         cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
338         cd ${DESTDIR}/usr/share/man; \
339         set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
340         while [ $$# -gt 0 ] ; \
341         do \
342                 rm -rf "$$1"; \
343                 ${LN} -s "$$2" "$$1"; \
344                 shift; shift; \
345         done
346         cd ${DESTDIR}/usr/share/locale; \
347         set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
348         while [ $$# -gt 0 ] ; \
349         do \
350                 rm -rf "$$1"; \
351                 ${LN} -s "$$2" "$$1"; \
352                 shift; shift; \
353         done
354         cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
355         cd ${DESTDIR}/usr/share/nls; \
356         set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
357         while [ $$# -gt 0 ] ; \
358         do \
359                 rm -rf "$$1"; \
360                 ${LN} -s "$$2" "$$1"; \
361                 shift; shift; \
362         done
363
364 etc-examples:
365         cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
366             ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
367             ${DESTDIR}/usr/share/examples/etc
368         cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
369             ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
370
371 .include <bsd.prog.mk>