Fix `/etc/rc.d/dhclient stop' by explicitly returning 0, otherwise
[dragonfly.git] / etc / Makefile
blob4f4ff91449ff973c3a259f7d21dc20627a3f8347
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.111 2006/05/27 10:10:07 swildner Exp $
5 .if !defined(NO_SENDMAIL)
6 SUBDIR= sendmail
7 .endif
9 # Files that should be installed read-only (444)
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
25 # Initial distribution files are installed read-write (644)
27 BIN1= amd.map auth.conf \
28 crontab csh.cshrc csh.login csh.logout \
29 devices.conf dhclient.conf dm.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 \
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
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
52 # Files that should be installed read-only-executable (555) root:wheel
54 BIN2= pccard_ether rc.firewall rc.suspend rc.resume
56 DEFAULTS= rc.conf make.conf periodic.conf
57 PAMD_CONF= README convert.sh ftpd gdm imap login other pop3 sshd \
58 telnetd xdm xserver
60 MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
61 BSD.var.dist BSD.x11.dist BSD.x11-4.dist
62 .if !defined(NO_SENDMAIL)
63 MTREE+= BSD.sendmail.dist
64 .endif
66 NAMEDB= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
67 make-localhost getroot README
69 PPPCNF= ppp.conf
71 ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
72 mailertable.sample aliases
74 # Special top level files for FreeBSD
75 FREEBSD=COPYRIGHT
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.*'
81 # Use this directory as the source for new configuration files when upgrading
82 UPGRADE_SRCDIR?=${.CURDIR}
84 distribute:
85 cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
87 preupgrade:
88 .if !defined(NO_SENDMAIL)
89 (pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
90 pw -V ${DESTDIR}/etc groupadd smmsp -g 25
91 (pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
92 pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
93 -c "Sendmail Submission User" \
94 -d /var/spool/clientmqueue -s /sbin/nologin
95 .endif
96 (pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
97 pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
98 -c "pflogd privsep user" \
99 -d /var/empty -s /sbin/nologin
100 (pw -V ${DESTDIR}/etc usershow _ntp -q > /dev/null) || \
101 pw -V ${DESTDIR}/etc useradd _ntp -u 65 \
102 -c "ntpd privsep user" \
103 -d /var/empty -s /sbin/nologin
104 (pw -V ${DESTDIR}/etc groupshow authpf -q > /dev/null) || \
105 pw -V ${DESTDIR}/etc groupadd authpf -g 63
106 (pw -V ${DESTDIR}/etc groupshow _pflogd -q > /dev/null) || \
107 pw -V ${DESTDIR}/etc groupadd _pflogd -g 64
108 (pw -V ${DESTDIR}/etc groupshow _ntp -q > /dev/null) || \
109 pw -V ${DESTDIR}/etc groupadd _ntp -g 65
111 upgrade_etc: preupgrade
112 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
113 cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
114 .endif
115 cd ${UPGRADE_SRCDIR}; \
116 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
117 ${BINUPDATE} ${DESTDIR}/etc; \
118 cap_mkdb ${DESTDIR}/etc/login.conf; \
119 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
120 ${BIN2} ${DESTDIR}/etc;
121 cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
122 ${DEFAULTS} ${DESTDIR}/etc/defaults
123 cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
124 mkdir -p ${DESTDIR}/etc/rc.d
125 cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install
126 # "../share/termcap/make etc-termap" expanded inline here:
127 ${LN} -fs ${DESTDIR}/usr/share/misc/termcap ${DESTDIR}/etc/termcap
128 # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
129 ${LN} -fs ${DESTDIR}/usr/sbin/rmt ${DESTDIR}/etc/rmt
130 .if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
131 .if !defined(NO_SENDMAIL)
132 cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
133 .endif
134 .endif
135 .if !defined(NO_I4B)
136 cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
137 .endif
138 cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
139 ${MTREE} ${DESTDIR}/etc/mtree
140 .if !exists(${DESTDIR}/etc/pam.d)
141 mkdir -p ${DESTDIR}/etc/pam.d
142 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/README ${DESTDIR}/etc/pam.d
143 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/convert.sh ${DESTDIR}/etc/pam.d
144 sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
145 .else
146 .for pamconf in README convert.sh
147 .if !exists(${DESTDIR}/etc/pam.d/${pamconf})
148 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
149 .endif
150 .endfor
151 .endif
152 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
153 cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
154 ${FREEBSD} ${DESTDIR}/
155 .if !defined(NOMAN)
156 cd ${UPGRADE_SRCDIR}/../share/man; ${MAKE} makedb
157 .endif
158 .endif
159 rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
160 rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
161 ${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
162 ${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
163 .if exists(${DESTDIR}/usr/sbin/named-checkzone)
164 rm -f ${DESTDIR}/usr/libexec/named-xfer
165 rm -f ${DESTDIR}/usr/bin/dnsquery
166 rm -f ${DESTDIR}/usr/bin/dnskeygen
167 rm -f ${DESTDIR}/usr/sbin/ndc
168 .endif
169 .if exists(${DESTDIR}/usr/lib/crtbegin.o)
170 csh -c "rm -f ${DESTDIR}/usr/lib/gcc2/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
171 csh -c "rm -f ${DESTDIR}/usr/lib/gcc3/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
172 .endif
173 .if exists(${DESTDIR}/usr/include/netproto/802_11/if_wavelan_ieee.h)
174 rm -f ${DESTDIR}/usr/include/dev/netif/wi/if_wavelan_ieee.h
175 rm -f ${DESTDIR}/usr/include/net/if_ieee80211.h
176 .endif
177 .if exists(${DESTDIR}/usr/lib/gcc2)
178 ldconfig -m ${DESTDIR}/usr/lib/gcc2
179 .endif
180 rm -f ${DESTDIR}/usr/sbin/pccardc ${DESTDIR}/usr/sbin/pccardd
181 rm -f ${DESTDIR}/usr/share/examples/etc/defaults/pccard.conf
182 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}5/pccard.conf.5.gz"
183 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardc.8.gz"
184 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardd.8.gz"
185 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/rc.pccard.8.gz"
186 rm -f ${DESTDIR}/etc/defaults/pccard ${DESTDIR}/etc/rc.d/pccard
187 rm -f ${DESTDIR}/etc/defaults/pccard.conf
188 .if exists(${DESTDIR}/usr/libexec/gcc34) && exists(${DESTDIR}/usr/libexec/binutils215)
189 rm -rf ${DESTDIR}/usr/lib/gcc3
190 rm -rf ${DESTDIR}/usr/libexec/gcc3
191 rm -rf ${DESTDIR}/usr/libdata/ldscripts
192 rm -rf ${DESTDIR}/usr/libdata/gcc2
193 rm -rf ${DESTDIR}/usr/libdata/gcc3
194 rm -rf ${DESTDIR}/usr/libexec/elf
195 rm -rf ${DESTDIR}/usr/libexec/aout
196 rm -rf ${DESTDIR}/usr/bin/gcc2
197 rm -rf ${DESTDIR}/usr/bin/gcc3
198 rm -rf ${DESTDIR}/usr/include/g++
199 csh -c "rm -f ${DESTDIR}/usr/bin/{genassym,gensetdefs,nawk,ptx,send-pr}"
200 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/{genassym,gensetdefs}.8.gz"
201 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/{cccp,gawk,nawk,send-pr}.1.gz"
202 csh -c "rm -f ${DESTDIR}/usr/libexec/{cc1,cc1obj,cc1plus}"
203 csh -c "rm -f ${DESTDIR}/usr/libexec/{cpp,cpp0,f771,objformat}"
204 csh -c "rm -f ${DESTDIR}/usr/libexec/binutils212/{cc1,cc1obj,cc1plus}"
205 csh -c "rm -f ${DESTDIR}/usr/libexec/binutils212/{cpp,cpp0,f771,objformat}"
206 csh -c "rm -f ${DESTDIR}/usr/libexec/binutils214/{cc1,cc1obj,cc1plus}"
207 csh -c "rm -f ${DESTDIR}/usr/libexec/binutils214/{cpp,cpp0,f771,objformat}"
208 csh -c "rm -f ${DESTDIR}/usr/lib/{libgcc.a,libgcc_p.a}"
209 csh -c "rm -f ${DESTDIR}/usr/lib/{libobjc.a,libobjc_p.a,libstdc++.a}"
210 csh -c "rm -f ${DESTDIR}/usr/lib/{libstdc++.so,libstdc++.so.3}"
211 csh -c "rm -f ${DESTDIR}/usr/lib/{libstdc++_p.a}"
212 rm -rf ${DESTDIR}/usr/libexec/binutils214
213 .endif
214 rm -f ${DESTDIR}/usr/bin/makewhatis
215 rm -f ${DESTDIR}/usr/sbin/prebind
216 rm -f ${DESTDIR}/modules/checkpt.ko
217 csh -c "rm -rf ${DESTDIR}/usr/share/man/{man,cat}1aout"
218 csh -c "rm -rf ${DESTDIR}/usr/share/man/en.ISO8859-1/{man,cat}1aout"
219 rm -rf ${DESTDIR}/usr/libdata/perl
220 csh -c "rm -f ${DESTDIR}/usr/bin/{find2perl,perl5,perl5.00503,pod2latex}"
221 test -L ${DESTDIR}/usr/bin/perl || rm -f ${DESTDIR}/usr/bin/perl
222 csh -c "rm -f ${DESTDIR}/usr/bin/{pod2text,sperl5,sperl5.00503,splain,suidperl}"
223 .for prog in a2p c2ph h2ph h2xs perlbug perlcc pl2pm pod2html pod2man s2p
224 rm -f ${DESTDIR}/usr/bin/${prog}
225 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${prog}.1.gz"
226 .endfor
227 csh -c "rm -f ${DESTDIR}/usr/lib/{libperl.a,libperl.so,libperl.so.3,libperl_p.a}"
228 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl.1.gz"
229 .for man in 5004delta apio book bot call data debug delta diag doc dsc embed faq \
230 faq1 faq2 faq3 faq4 faq5 faq6 faq7 faq8 faq9 form func guts hist \
231 ipc locale lol mod modinstall modlib obj op opentut pod port re \
232 ref reftut run sec style sub syn thrtut tie toc toot trap var xs \
233 xstut
234 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl${man}.1.gz"
235 .endfor
236 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}7/style.perl.7.gz"
237 rm -rf ${DESTDIR}/usr/share/perl
238 rm -rf ${DESTDIR}/usr/share/examples/bc
239 .if exists(${DESTDIR}/usr/share/info/dc.info.gz)
240 gzip -d ${DESTDIR}/usr/share/info/dc.info.gz
241 install-info --delete ${DESTDIR}/usr/share/info/dc.info ${DESTDIR}/usr/share/info/dir
242 rm -f ${DESTDIR}/usr/share/info/dc.info
243 .endif
244 csh -c "rm -f ${DESTDIR}/usr/include/{gmp,mp}.h"
245 csh -c "rm -f ${DESTDIR}/usr/lib/{libmp.a,libmp_p.a,libmp.so,libmp.so.3}"
246 csh -c "rm -f ${DESTDIR}/usr/lib/{libgmp.a,libgmp_p.a,libgmp.so,libgmp.so.3}"
247 .if exists(${DESTDIR}/usr/share/info/gmp.info.gz)
248 gzip -d ${DESTDIR}/usr/share/info/gmp.info.gz
249 install-info --delete ${DESTDIR}/usr/share/info/gmp.info ${DESTDIR}/usr/share/info/dir
250 rm -f ${DESTDIR}/usr/share/info/gmp.info
251 .endif
252 rm -f ${DESTDIR}/etc/rc.d/ntpdate
253 rm -f ${DESTDIR}/usr/sbin/ntpdate
254 rm -f ${DESTDIR}/modules/if_wx.ko
255 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wx.4.gz"
256 rm -f ${DESTDIR}/dev/rwcd*
257 rm -f ${DESTDIR}/dev/rwst*
258 rm -f ${DESTDIR}/dev/wcd*
259 rm -f ${DESTDIR}/dev/wd*
260 rm -f ${DESTDIR}/dev/wfd*
261 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wst.4.gz"
262 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/{euc,utf2}.4.gz"
263 rm -f ${DESTDIR}/usr/share/syscons/keymaps/jp.pc98.iso.kbd
264 rm -f ${DESTDIR}/usr/share/syscons/keymaps/jp.pc98.kbd
265 csh -c "rm -f ${DESTDIR}/etc/rc.d/{bootconf.sh,lkm1,lkm2,lkm3,mountall,pcvt,wscons}"
266 rm -f ${DESTDIR}/modules/canbus.ko
267 .for lib in ${COMPAT_LIBS:M*.so.*}
268 .if exists(${DESTDIR}/usr/lib/${lib})
269 chflags noschg ${DESTDIR}/usr/lib/${lib}
270 rm -f ${DESTDIR}/usr/lib/${lib}
271 .endif
272 .endfor
273 rm -f ${DESTDIR}/usr/lib/libkeycap.a
274 rm -f ${DESTDIR}/usr/lib/libkeycap_p.a
275 .for cmd in cursor fontedit ispcvt kcon loadfont mcon scon vt220keys vttest
276 rm -f ${DESTDIR}/usr/sbin/${cmd}
277 .endfor
278 .for man in cursor fontedit kcon loadfont mcon scon vt220keys vttest
279 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
280 .endfor
281 .for man in keycap kgetent kgetflag kgetnum kgetstr
282 rm -f ${DESTDIR}/usr/share/man/{man,cat}3/${man}.3.gz
283 .endfor
284 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcvt.4.gz"
285 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/vt.4.gz"
286 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}5/keycap.5.gz"
287 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/ispcvt.8.gz"
288 rm -f ${DESTDIR}/usr/share/misc/keycap.pcvt
289 rm -rf ${DESTDIR}/usr/share/misc/fonts
290 rm -rf ${DESTDIR}/usr/share/misc/pcvtfonts
291 rm -rf ${DESTDIR}/usr/share/pcvt
292 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/battd.1.gz"
293 rm -f ${DESTDIR}/usr/include/machine/bus_pc98.h
294 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcic.4.gz"
295 .if exists(${DESTDIR}/usr/share/info/bzip2.info.gz)
296 gzip -d ${DESTDIR}/usr/share/info/bzip2.info.gz
297 install-info --delete ${DESTDIR}/usr/share/info/bzip2.info ${DESTDIR}/usr/share/info/dir
298 rm -f ${DESTDIR}/usr/share/info/bzip2.info
299 .endif
300 .if exists(${DESTDIR}/usr/share/info/gasp.info.gz)
301 gzip -d ${DESTDIR}/usr/share/info/gasp.info.gz
302 install-info --delete ${DESTDIR}/usr/share/info/gasp.info ${DESTDIR}/usr/share/info/dir
303 rm -f ${DESTDIR}/usr/share/info/gasp.info
304 .endif
305 .if exists(${DESTDIR}/usr/share/info/gperf.info.gz)
306 gzip -d ${DESTDIR}/usr/share/info/gperf.info.gz
307 install-info --delete ${DESTDIR}/usr/share/info/gperf.info ${DESTDIR}/usr/share/info/dir
308 rm -f ${DESTDIR}/usr/share/info/gperf.info
309 .endif
310 .if exists(${DESTDIR}/usr/share/info/gxxint.info.gz)
311 gzip -d ${DESTDIR}/usr/share/info/gxxint.info.gz
312 install-info --delete ${DESTDIR}/usr/share/info/gxxint.info ${DESTDIR}/usr/share/info/dir
313 rm -f ${DESTDIR}/usr/share/info/gxxint.info
314 .endif
315 .if exists(${DESTDIR}/usr/share/info/iostream.info.gz)
316 gzip -d ${DESTDIR}/usr/share/info/iostream.info.gz
317 install-info --delete ${DESTDIR}/usr/share/info/iostream.info ${DESTDIR}/usr/share/info/dir
318 rm -f ${DESTDIR}/usr/share/info/iostream.info
319 .endif
320 .if exists(${DESTDIR}/usr/share/info/ptx.info.gz)
321 gzip -d ${DESTDIR}/usr/share/info/ptx.info.gz
322 install-info --delete ${DESTDIR}/usr/share/info/ptx.info ${DESTDIR}/usr/share/info/dir
323 rm -f ${DESTDIR}/usr/share/info/ptx.info
324 .endif
325 .if exists(${DESTDIR}/usr/share/info/send-pr.info.gz)
326 gzip -d ${DESTDIR}/usr/share/info/send-pr.info.gz
327 install-info --delete ${DESTDIR}/usr/share/info/send-pr.info ${DESTDIR}/usr/share/info/dir
328 rm -f ${DESTDIR}/usr/share/info/send-pr.info
329 .endif
330 rm -f ${DESTDIR}/usr/share/info/cpp2.info.gz
331 rm -f ${DESTDIR}/usr/share/info/gcc2.info.gz
332 rm -f ${DESTDIR}/usr/sbin/ibcs2
333 rm -f ${DESTDIR}/usr/sbin/linux
334 rm -f ${DESTDIR}/usr/sbin/ntp-genkeys
335 rm -f ${DESTDIR}/usr/sbin/ntpdc
336 rm -f ${DESTDIR}/usr/sbin/ntptime
337 rm -f ${DESTDIR}/usr/sbin/ntptimeset
338 rm -f ${DESTDIR}/usr/sbin/ntptrace
339 rm -f ${DESTDIR}/usr/sbin/scriptdump
340 rm -f ${DESTDIR}/usr/sbin/svr4
341 rm -f ${DESTDIR}/usr/bin/cvsbug
342 rm -f ${DESTDIR}/usr/bin/gdbreplay
343 rm -f ${DESTDIR}/usr/bin/gperf
344 rm -f ${DESTDIR}/usr/bin/joy
345 rm -f ${DESTDIR}/usr/bin/minigzip
346 rm -f ${DESTDIR}/usr/bin/ntpq
347 rm -f ${DESTDIR}/usr/bin/perldoc
348 rm -f ${DESTDIR}/usr/bin/sendbug
349 .for man in gasp gperf minigzip sendbug
350 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
351 .endfor
352 .for man in dft_fgbg dllockinit dynamic_fieldinfo fgetrune fputrune fungetrune \
353 mbmb mbrrune mbrune menu_attribs multibyte rune setinvalidrune \
354 setrunelocale sgetrune sputrune archive_entry_gname_w \
355 archive_entry_uname_w dbm_dirnfo exp10 exp10f
356 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}3/${man}.3.gz"
357 .endfor
358 .for man in drivers.conf gbk ntp.conf ntp.keys
359 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}5/${man}.5.gz"
360 .endfor
361 .for man in ibcs2 joy linux ntp-genkeys ntpdate ntpdc ntpq ntptime ntptrace \
362 picobsd svr4 sysinstall cvsbug
363 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/${man}.8.gz"
364 .endfor
365 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/suser_xxx.9.gz"
366 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/NDINIT.9.gz"
367 rm -f ${DESTDIR}/usr/share/examples/cvsup/DragonFly-supfile
368 rm -f ${DESTDIR}/usr/share/examples/cvsup/DragonFly-stable-supfile
369 rm -f ${DESTDIR}/usr/share/nls/*/.cat
370 rm -f ${DESTDIR}/usr/include/machine/gencount.h
371 rm -f ${DESTDIR}/usr/include/machine/pcvt_ioctl.h
372 rm -f ${DESTDIR}/usr/include/net/bpf_compat.h
373 rm -f ${DESTDIR}/usr/include/netinet/ipprotosw.h
374 rm -f ${DESTDIR}/usr/include/rune.h
375 rm -f ${DESTDIR}/usr/include/runetype.h
376 rm -f ${DESTDIR}/modules/if_snc.ko
377 .for tzfile in Africa/Timbuktu America/Argentina/ComodRivadavia \
378 America/Indianapolis America/Louisville CST6CDT EST EST5EDT \
379 Europe/Belfast HST MST MST7MDT PST8PDT Pacific/Yap
380 rm -f ${DESTDIR}/usr/share/zoneinfo/${tzfile}
381 .endfor
382 .if exists(${DESTDIR}/usr/freebsd_pkg/sbin/pkg_add)
383 csh -c "rm -f ${DESTDIR}/usr/sbin/pkg_{install,add,create,delete,info,sign,version,check,update}"
384 csh -c "rm -f ${DESTDIR}/usr/share/man/man1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
385 csh -c "rm -f ${DESTDIR}/usr/share/man/cat1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
386 .endif
387 rm -f ${DESTDIR}/etc/rc.d/altqd
388 csh -c "rm -f ${DESTDIR}/etc/rc.d/network{,1,2,3}"
389 rm -f ${DESTDIR}/usr/share/examples/cvsup/DragonFly-dfports-supfile
390 rm -f ${DESTDIR}/etc/periodic/weekly/400.status-pkg
391 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}7/ports.7.gz"
392 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/SPLASSERT.9.gz"
393 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl.9.gz"
394 .for splman in 0 bio clock high imp net softclock softtty statclock tty vm x
395 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl${splman}.9.gz"
396 .endfor
397 rm -f ${DESTDIR}/modules/if_owi.ko
398 rm -f ${DESTDIR}/modules/umap.ko
399 rm -f ${DESTDIR}/sbin/mount_umap
400 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/mount_umap.8.gz"
401 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}3/isinff.3.gz"
402 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}8/isnanf.3.gz"
403 rm -f ${DESTDIR}/modules/ibcs2.ko
404 rm -rf ${DESTDIR}/usr/share/examples/ibcs2
405 rm -f ${DESTDIR}/modules/streams.ko
406 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/streams.4.gz"
407 rm -f ${DESTDIR}/modules/svr4.ko
408 csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}4/svr4.4.gz"
409 ldconfig -R
410 .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes
411 .if !defined(NO_MAKEDEV)
412 cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
413 MAKEDEV.local MAKEDEV ${DESTDIR}/dev
414 .if !defined(NO_MAKEDEV_RUN)
415 cd ${DESTDIR}/dev; sh MAKEDEV all
416 .endif
417 .endif
418 .endif
420 distribution:
421 cd ${.CURDIR}; \
422 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
423 ${BINUPDATE} ${DESTDIR}/etc; \
424 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
425 ${BIN1} ${DESTDIR}/etc; \
426 cap_mkdb ${DESTDIR}/etc/login.conf; \
427 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
428 ${BIN2} ${DESTDIR}/etc; \
429 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
430 master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
431 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
432 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
433 ${DEFAULTS} ${DESTDIR}/etc/defaults
434 cd ${.CURDIR}/pam.d; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
435 ${PAMD_CONF} ${DESTDIR}/etc/pam.d
436 cd ${.CURDIR}/periodic; ${MAKE} install
437 cd ${.CURDIR}/rc.d; ${MAKE} install
438 cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
439 cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
440 .if !defined(NO_I4B)
441 cd ${.CURDIR}/isdn; ${MAKE} install
442 .endif
443 .if !defined(NO_SENDMAIL)
444 cd ${.CURDIR}/sendmail; ${MAKE} obj
445 cd ${.CURDIR}/sendmail; ${MAKE} distribution
446 .endif
447 .for dir in ${DIRS}
448 .if exists(${.CURDIR}/../${dir}/Makefile.etc)
449 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
450 cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
451 .endif
452 .endfor
453 .if !defined(NO_MAKEDEV)
454 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
455 MAKEDEV.local MAKEDEV ${DESTDIR}/dev
456 .if !defined(NO_MAKEDEV_RUN)
457 cd ${DESTDIR}/dev; sh MAKEDEV all
458 .endif
459 .endif
460 cd ${.CURDIR}/root; \
461 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
462 dot.cshrc ${DESTDIR}/root/.cshrc; \
463 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
464 dot.klogin ${DESTDIR}/root/.klogin; \
465 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
466 dot.login ${DESTDIR}/root/.login; \
467 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
468 dot.profile ${DESTDIR}/root/.profile; \
469 rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
470 ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
471 ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
472 cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
473 ${MTREE} ${DESTDIR}/etc/mtree
474 cd ${.CURDIR}/namedb; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
475 ${NAMEDB} ${DESTDIR}/etc/namedb
476 cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
477 ${PPPCNF} ${DESTDIR}/etc/ppp
478 cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
479 ${ETCMAIL} ${DESTDIR}/etc/mail
480 @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
481 ! -f ${DESTDIR}/etc/aliases ]; then \
482 set -x; \
483 ${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
485 ${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
486 ${DESTDIR}/etc/dumpdates
487 ${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
488 ${DESTDIR}/var/db/locate.database
489 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
490 ${DESTDIR}/var/log/auth.log
491 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
492 ${DESTDIR}/var/log/cron
493 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
494 ${DESTDIR}/var/log/lpd-errs
495 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
496 ${DESTDIR}/var/log/maillog
497 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
498 ${DESTDIR}/var/log/lastlog
499 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
500 ${DESTDIR}/var/log/messages
501 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
502 ${DESTDIR}/var/log/security
503 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
504 ${DESTDIR}/var/log/slip.log
505 ${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
506 ${DESTDIR}/var/log/ppp.log
507 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
508 ${DESTDIR}/var/log/wtmp
509 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
510 ${DESTDIR}/var/run/utmp
511 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
512 ${DESTDIR}/var/crash
513 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
514 ${FREEBSD} ${DESTDIR}/
515 .if !defined(NOMAN)
516 cd ${.CURDIR}/../share/man; ${MAKE} makedb
517 .endif
519 distrib-dirs:
520 -set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
521 while [ $$# -gt 0 ] ; \
522 do \
523 for dir in /usr/share/locale \
524 /usr/share/nls \
525 /usr/local/share/nls; \
526 do \
527 test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
528 test -L "$$2" && rm -rf "$$2"; \
529 test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
530 done; \
531 shift; shift; \
532 done
533 mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
534 mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
535 mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
536 mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
537 -p ${DESTDIR}/usr/include
538 .if !defined(NO_SENDMAIL)
539 mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
540 .endif
541 cd ${DESTDIR}/etc/namedb; rm -f etc/namedb; ${LN} -s ".." etc/namedb
542 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ${LN} -s usr/src/sys sys
543 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
544 cd ${DESTDIR}/usr/share/man; \
545 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
546 while [ $$# -gt 0 ] ; \
547 do \
548 rm -rf "$$1"; \
549 ${LN} -s "$$2" "$$1"; \
550 shift; shift; \
551 done
552 cd ${DESTDIR}/usr/share/locale; \
553 set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
554 while [ $$# -gt 0 ] ; \
555 do \
556 rm -rf "$$1"; \
557 ${LN} -s "$$2" "$$1"; \
558 shift; shift; \
559 done
560 cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
561 cd ${DESTDIR}/usr/share/nls; \
562 set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
563 while [ $$# -gt 0 ] ; \
564 do \
565 rm -rf "$$1"; \
566 ${LN} -s "$$2" "$$1"; \
567 shift; shift; \
568 done
570 etc-examples:
571 cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
572 ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
573 ${DESTDIR}/usr/share/examples/etc
574 cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
575 ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
577 .include <bsd.prog.mk>