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.198 2007/12/16 19:04:58 thomas Exp $
5 .if
!defined
(NO_SENDMAIL
)
9 # Files that should be installed read-only (444)
11 BINUPDATE
= apmd.conf fbtab gettytab network.subr \
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
21 BINUPDATE
+=${.CURDIR
}/..
/usr.bin
/mail
/misc
/mail.rc \
22 ${.CURDIR
}/..
/usr.bin
/locate
/locate
/locate.rc
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 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
40 BIN1
+= ${.CURDIR
}/..
/gnu
/usr.bin
/man
/manpath
/manpath.config
43 .if exists
(${.CURDIR
}/..
/crypto
) && !defined
(NO_OPENSSL
)
44 .if
!defined
(NO_OPENSSH
)
45 DIRS
+= secure
/lib
/libssh \
49 DIRS
+= secure
/usr.bin
/openssl
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 uuids
57 PAMD_CONF
= README convert.sh ftpd gdm imap login other pop3 sshd \
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
66 NAMEDB
= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
67 make-localhost getroot README
71 ETCMAIL
=Makefile README mailer.conf access.sample virtusertable.sample \
72 mailertable.sample aliases
74 # Special top level files for FreeBSD
77 # List of libraries in /usr/lib/compat that might have to be removed
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
}
85 cd
${.CURDIR
} ; ${MAKE} distribution DESTDIR
=${DISTDIR}/${DISTRIBUTION}
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
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
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-termcap" expanded inline here:
127 ${LN} -fs
/usr
/share
/misc
/termcap
${DESTDIR}/etc
/termcap
128 # "../usr.sbin/rmt/make etc-rmt" expanded inline here:
129 ${LN} -fs
/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
136 cd
${UPGRADE_SRCDIR}/isdn
; ${MAKE} install
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
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
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}/
156 rm -f
${DESTDIR}/usr
/include/machine
/ioctl_meteor.h
157 rm -f
${DESTDIR}/usr
/include/machine
/ioctl_bt848.h
158 ${LN} -s
"../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr
/include/machine
/ioctl_bt848.h
159 ${LN} -s
"../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr
/include/machine
/ioctl_meteor.h
160 .if exists
(${DESTDIR}/usr
/sbin
/named-checkzone
)
161 rm -f
${DESTDIR}/usr
/libexec
/named-xfer
162 rm -f
${DESTDIR}/usr
/bin
/dnsquery
163 rm -f
${DESTDIR}/usr
/bin
/dnskeygen
164 rm -f
${DESTDIR}/usr
/sbin
/ndc
166 .if exists
(${DESTDIR}/usr
/bin
/dnssec-makekeyset
)
167 rm -f
${DESTDIR}/usr
/bin
/dnssec-makekeyset
168 rm -f
${DESTDIR}/usr
/bin
/dnssec-signkey
169 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/dnssec-makekeyset.8.gz"
170 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/dnssec-signkey.8.gz"
172 .if exists
(${DESTDIR}/usr
/lib
/crtbegin.o
)
173 csh
-c
"rm -f ${DESTDIR}/usr/lib/gcc2/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
174 csh
-c
"rm -f ${DESTDIR}/usr/lib/gcc3/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
175 csh
-c
"rm -f ${DESTDIR}/usr/lib/crt{1,begin,beginS,end,endS,i,n}.o"
177 .if exists
(${DESTDIR}/usr
/include/netproto
/802_11
/if_wavelan_ieee.h
)
178 rm -f
${DESTDIR}/usr
/include/dev
/netif
/wi
/if_wavelan_ieee.h
179 rm -f
${DESTDIR}/usr
/include/net
/if_ieee80211.h
181 .if exists
(${DESTDIR}/usr
/lib
/gcc2
)
182 ldconfig
-m
${DESTDIR}/usr
/lib
/gcc2
184 rm -f
${DESTDIR}/usr
/sbin
/pccardc
${DESTDIR}/usr
/sbin
/pccardd
185 rm -f
${DESTDIR}/usr
/share
/examples
/etc
/defaults
/pccard.conf
186 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/pccard.conf.5.gz"
187 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardc.8.gz"
188 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardd.8.gz"
189 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/rc.pccard.8.gz"
190 rm -f
${DESTDIR}/etc
/defaults
/pccard
${DESTDIR}/etc
/rc.d
/pccard
191 rm -f
${DESTDIR}/etc
/defaults
/pccard.conf
192 .if exists
(${DESTDIR}/usr
/libexec
/gcc34
) && exists
(${DESTDIR}/usr
/libexec
/binutils215
)
193 rm -rf
${DESTDIR}/usr
/lib
/gcc3
194 rm -rf
${DESTDIR}/usr
/libexec
/gcc3
195 rm -rf
${DESTDIR}/usr
/libdata
/ldscripts
196 rm -rf
${DESTDIR}/usr
/libdata
/gcc2
197 rm -rf
${DESTDIR}/usr
/libdata
/gcc3
198 rm -rf
${DESTDIR}/usr
/libexec
/elf
199 rm -rf
${DESTDIR}/usr
/libexec
/aout
200 rm -rf
${DESTDIR}/usr
/bin
/gcc2
201 rm -rf
${DESTDIR}/usr
/bin
/gcc3
202 rm -rf
${DESTDIR}/usr
/include/g
++
203 csh
-c
"rm -f ${DESTDIR}/usr/bin/{genassym,gensetdefs,nawk,ptx,send-pr}"
204 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/{genassym,gensetdefs}.8.gz"
205 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/{cccp,gawk,nawk,send-pr}.1.gz"
206 csh
-c
"rm -f ${DESTDIR}/usr/libexec/{cc1,cc1obj,cc1plus}"
207 csh
-c
"rm -f ${DESTDIR}/usr/libexec/{cpp,cpp0,f771,objformat}"
208 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils212/{cc1,cc1obj,cc1plus}"
209 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils212/{cpp,cpp0,f771,objformat}"
210 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils214/{cc1,cc1obj,cc1plus}"
211 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils214/{cpp,cpp0,f771,objformat}"
212 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libgcc.a,libgcc_p.a}"
213 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libobjc.a,libobjc_p.a,libstdc++.a}"
214 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libstdc++.so,libstdc++.so.3}"
215 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libstdc++_p.a}"
216 rm -rf
${DESTDIR}/usr
/libexec
/binutils214
218 .if exists
(${DESTDIR}/usr
/libexec
/binutils217
)
219 rm -rf
${DESTDIR}/usr
/libexec
/binutils215
221 rm -f
${DESTDIR}/usr
/bin
/makewhatis
222 rm -f
${DESTDIR}/usr
/sbin
/prebind
223 rm -f
${DESTDIR}/modules
/checkpt.ko
224 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/{man,cat}1aout"
225 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/en.ISO8859-1/{man,cat}1aout"
226 rm -rf
${DESTDIR}/usr
/libdata
/perl
227 csh
-c
"rm -f ${DESTDIR}/usr/bin/{find2perl,perl5,perl5.00503,pod2latex}"
228 test -L
${DESTDIR}/usr
/bin
/perl ||
rm -f
${DESTDIR}/usr
/bin
/perl
229 csh
-c
"rm -f ${DESTDIR}/usr/bin/{pod2text,sperl5,sperl5.00503,splain,suidperl}"
230 .for prog in a2p c2ph h2ph h2xs perlbug perlcc pl2pm pod2html pod2man s2p
231 rm -f
${DESTDIR}/usr
/bin
/${prog}
232 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${prog}.1.gz"
234 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libperl.a,libperl.so,libperl.so.3,libperl_p.a}"
235 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl.1.gz"
236 .for man in
5004delta apio book bot call data debug delta diag doc dsc embed faq \
237 faq1 faq2 faq3 faq4 faq5 faq6 faq7 faq8 faq9 form func guts hist \
238 ipc locale lol mod modinstall modlib obj op opentut pod port re \
239 ref reftut run sec style sub syn thrtut tie toc toot trap var xs \
241 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl${man}.1.gz"
243 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}7/style.perl.7.gz"
244 rm -rf
${DESTDIR}/usr
/share
/perl
245 rm -rf
${DESTDIR}/usr
/share
/examples
/bc
246 .if exists
(${DESTDIR}/usr
/share
/info/dc.
info.gz
)
247 gzip
-d
${DESTDIR}/usr
/share
/info/dc.
info.gz
248 install-info
--delete
${DESTDIR}/usr
/share
/info/dc.
info ${DESTDIR}/usr
/share
/info/dir
249 rm -f
${DESTDIR}/usr
/share
/info/dc.
info
251 csh
-c
"rm -f ${DESTDIR}/usr/include/{gmp,mp}.h"
252 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libmp.a,libmp_p.a,libmp.so,libmp.so.3}"
253 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libgmp.a,libgmp_p.a,libgmp.so,libgmp.so.3}"
254 .if exists
(${DESTDIR}/usr
/share
/info/gmp.
info.gz
)
255 gzip
-d
${DESTDIR}/usr
/share
/info/gmp.
info.gz
256 install-info
--delete
${DESTDIR}/usr
/share
/info/gmp.
info ${DESTDIR}/usr
/share
/info/dir
257 rm -f
${DESTDIR}/usr
/share
/info/gmp.
info
259 rm -f
${DESTDIR}/etc
/rc.d
/ntpdate
260 rm -f
${DESTDIR}/usr
/sbin
/ntpdate
261 rm -f
${DESTDIR}/modules
/if_wx.ko
262 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wx.4.gz"
263 rm -f
${DESTDIR}/dev
/rwcd
*
264 rm -f
${DESTDIR}/dev
/rwst
*
265 rm -f
${DESTDIR}/dev
/wcd
*
266 rm -f
${DESTDIR}/dev
/wd
*
267 rm -f
${DESTDIR}/dev
/wfd
*
268 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wst.4.gz"
269 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/{euc,utf2}.4.gz"
270 rm -f
${DESTDIR}/usr
/share
/syscons
/keymaps
/jp.pc98.iso.kbd
271 rm -f
${DESTDIR}/usr
/share
/syscons
/keymaps
/jp.pc98.kbd
272 csh
-c
"rm -f ${DESTDIR}/etc/rc.d/{bootconf.sh,lkm1,lkm2,lkm3,mountall,pcvt,wscons}"
273 rm -f
${DESTDIR}/modules
/canbus.ko
274 .for lib in
${COMPAT_LIBS
:M
*.so.
*}
275 .if exists
(${DESTDIR}/usr
/lib
/${lib})
276 chflags noschg
${DESTDIR}/usr
/lib
/${lib}
277 rm -f
${DESTDIR}/usr
/lib
/${lib}
280 rm -f
${DESTDIR}/usr
/lib
/libkeycap.a
281 rm -f
${DESTDIR}/usr
/lib
/libkeycap_p.a
282 .for cmd in cursor fontedit ispcvt kcon loadfont mcon scon vt220keys vttest
283 rm -f
${DESTDIR}/usr
/sbin
/${cmd}
285 .for man in cursor fontedit kcon loadfont mcon scon vt220keys vttest
286 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
288 .for man in keycap kgetent kgetflag kgetnum kgetstr
289 rm -f
${DESTDIR}/usr
/share
/man
/{man
,cat
}3/${man}.3.gz
291 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcvt.4.gz"
292 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/vt.4.gz"
293 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/keycap.5.gz"
294 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/ispcvt.8.gz"
295 rm -f
${DESTDIR}/usr
/share
/misc
/keycap.pcvt
296 rm -rf
${DESTDIR}/usr
/share
/misc
/fonts
297 rm -rf
${DESTDIR}/usr
/share
/misc
/pcvtfonts
298 rm -rf
${DESTDIR}/usr
/share
/pcvt
299 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/battd.1.gz"
300 rm -f
${DESTDIR}/usr
/include/machine
/bus_pc98.h
301 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcic.4.gz"
302 .if exists
(${DESTDIR}/usr
/share
/info/bzip2.
info.gz
)
303 gzip
-d
${DESTDIR}/usr
/share
/info/bzip2.
info.gz
304 install-info
--delete
${DESTDIR}/usr
/share
/info/bzip2.
info ${DESTDIR}/usr
/share
/info/dir
305 rm -f
${DESTDIR}/usr
/share
/info/bzip2.
info
307 .if exists
(${DESTDIR}/usr
/share
/info/gasp.
info.gz
)
308 gzip
-d
${DESTDIR}/usr
/share
/info/gasp.
info.gz
309 install-info
--delete
${DESTDIR}/usr
/share
/info/gasp.
info ${DESTDIR}/usr
/share
/info/dir
310 rm -f
${DESTDIR}/usr
/share
/info/gasp.
info
312 .if exists
(${DESTDIR}/usr
/share
/info/gperf.
info.gz
)
313 gzip
-d
${DESTDIR}/usr
/share
/info/gperf.
info.gz
314 install-info
--delete
${DESTDIR}/usr
/share
/info/gperf.
info ${DESTDIR}/usr
/share
/info/dir
315 rm -f
${DESTDIR}/usr
/share
/info/gperf.
info
317 .if exists
(${DESTDIR}/usr
/share
/info/gxxint.
info.gz
)
318 gzip
-d
${DESTDIR}/usr
/share
/info/gxxint.
info.gz
319 install-info
--delete
${DESTDIR}/usr
/share
/info/gxxint.
info ${DESTDIR}/usr
/share
/info/dir
320 rm -f
${DESTDIR}/usr
/share
/info/gxxint.
info
322 .if exists
(${DESTDIR}/usr
/share
/info/iostream.
info.gz
)
323 gzip
-d
${DESTDIR}/usr
/share
/info/iostream.
info.gz
324 install-info
--delete
${DESTDIR}/usr
/share
/info/iostream.
info ${DESTDIR}/usr
/share
/info/dir
325 rm -f
${DESTDIR}/usr
/share
/info/iostream.
info
327 .if exists
(${DESTDIR}/usr
/share
/info/ptx.
info.gz
)
328 gzip
-d
${DESTDIR}/usr
/share
/info/ptx.
info.gz
329 install-info
--delete
${DESTDIR}/usr
/share
/info/ptx.
info ${DESTDIR}/usr
/share
/info/dir
330 rm -f
${DESTDIR}/usr
/share
/info/ptx.
info
332 .if exists
(${DESTDIR}/usr
/share
/info/send-pr.
info.gz
)
333 gzip
-d
${DESTDIR}/usr
/share
/info/send-pr.
info.gz
334 install-info
--delete
${DESTDIR}/usr
/share
/info/send-pr.
info ${DESTDIR}/usr
/share
/info/dir
335 rm -f
${DESTDIR}/usr
/share
/info/send-pr.
info
337 rm -f
${DESTDIR}/usr
/share
/info/cpp2.
info.gz
338 rm -f
${DESTDIR}/usr
/share
/info/gcc2.
info.gz
339 rm -f
${DESTDIR}/usr
/sbin
/diskpart
340 rm -f
${DESTDIR}/usr
/sbin
/ibcs2
341 rm -f
${DESTDIR}/usr
/sbin
/linux
342 rm -f
${DESTDIR}/usr
/sbin
/ntp-genkeys
343 rm -f
${DESTDIR}/usr
/sbin
/ntpdc
344 rm -f
${DESTDIR}/usr
/sbin
/ntptime
345 rm -f
${DESTDIR}/usr
/sbin
/ntptimeset
346 rm -f
${DESTDIR}/usr
/sbin
/ntptrace
347 rm -f
${DESTDIR}/usr
/sbin
/scriptdump
348 rm -f
${DESTDIR}/usr
/sbin
/svr4
349 rm -f
${DESTDIR}/usr
/bin
/cvsbug
350 rm -f
${DESTDIR}/usr
/bin
/gdbreplay
351 rm -f
${DESTDIR}/usr
/bin
/gperf
352 rm -f
${DESTDIR}/usr
/bin
/joy
353 rm -f
${DESTDIR}/usr
/bin
/minigzip
354 rm -f
${DESTDIR}/usr
/bin
/ntpq
355 rm -f
${DESTDIR}/usr
/bin
/perldoc
356 rm -f
${DESTDIR}/usr
/bin
/sendbug
357 .for man in gasp gperf minigzip sendbug
358 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
360 .for man in dft_fgbg dllockinit dynamic_fieldinfo fgetrune fputrune fungetrune \
361 mbmb mbrrune mbrune menu_attribs multibyte rune setinvalidrune \
362 setrunelocale sgetrune sputrune archive_entry_gname_w \
363 archive_entry_uname_w dbm_dirnfo exp10 exp10f
364 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/${man}.3.gz"
366 .for man in drivers.conf gbk ntp.conf ntp.keys
367 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/${man}.5.gz"
369 .for man in ibcs2 joy linux ntp-genkeys ntpdate ntpdc ntpq ntptime ntptrace \
370 picobsd svr4 sysinstall cvsbug diskpart
371 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/${man}.8.gz"
373 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/suser_xxx.9.gz"
374 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/NDINIT.9.gz"
375 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-supfile
376 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-stable-supfile
377 rm -f
${DESTDIR}/usr
/share
/nls
/*/.cat
378 rm -f
${DESTDIR}/usr
/include/machine
/gencount.h
379 rm -f
${DESTDIR}/usr
/include/machine
/pcvt_ioctl.h
380 rm -f
${DESTDIR}/usr
/include/net
/bpf_compat.h
381 rm -f
${DESTDIR}/usr
/include/netinet
/ipprotosw.h
382 rm -f
${DESTDIR}/usr
/include/rune.h
383 rm -f
${DESTDIR}/usr
/include/runetype.h
384 rm -f
${DESTDIR}/modules
/if_snc.ko
385 .for tzfile in Africa
/Timbuktu America
/Argentina
/ComodRivadavia \
386 America
/Indianapolis America
/Louisville Europe
/Belfast \
387 Pacific
/Yap America
/Coral_Harbour Africa
/Asmera Atlantic
/Faeroe
388 rm -f
${DESTDIR}/usr
/share
/zoneinfo
/${tzfile}
390 rm -rf
${DESTDIR}/usr
/share
/zoneinfo
/SystemV
391 .if exists
(${DESTDIR}/usr
/freebsd_pkg
/sbin
/pkg_add
)
392 csh
-c
"rm -f ${DESTDIR}/usr/sbin/pkg_{install,add,create,delete,info,sign,version,check,update}"
393 csh
-c
"rm -f ${DESTDIR}/usr/share/man/man1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
394 csh
-c
"rm -f ${DESTDIR}/usr/share/man/cat1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
396 rm -f
${DESTDIR}/etc
/rc.d
/altqd
397 csh
-c
"rm -f ${DESTDIR}/etc/rc.d/network{,1,2,3}"
398 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-dfports-supfile
399 rm -f
${DESTDIR}/etc
/periodic
/weekly
/400.status-pkg
400 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}7/ports.7.gz"
401 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/SPLASSERT.9.gz"
402 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl.9.gz"
403 .for splman in
0 bio clock high imp net softclock softtty statclock tty vm x
404 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl${splman}.9.gz"
406 rm -f
${DESTDIR}/modules
/if_owi.ko
407 rm -f
${DESTDIR}/modules
/umap.ko
408 rm -f
${DESTDIR}/sbin
/mount_umap
409 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/mount_umap.8.gz"
410 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/isinff.3.gz"
411 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/isnanf.3.gz"
412 rm -f
${DESTDIR}/modules
/ibcs2.ko
413 rm -rf
${DESTDIR}/usr
/share
/examples
/ibcs2
414 rm -f
${DESTDIR}/modules
/streams.ko
415 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/streams.4.gz"
416 rm -f
${DESTDIR}/modules
/svr4.ko
417 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/svr4.4.gz"
418 rm -rf
${DESTDIR}/usr
/include/net
/oldbridge
419 rm -f
${DESTDIR}/usr
/include/net
/bridge
/bridge.h
420 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/oldbridge.4.gz"
421 rm -f
${DESTDIR}/modules
/bridge.ko
422 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_attach.9.gz"
423 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_attach.9.gz"
424 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_detach.9.gz"
425 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_wep_crypt.9.gz"
426 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_decap.9.gz"
427 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_lookup_node.9.gz"
428 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_timeout_nodes.9.gz"
429 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.mk
430 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.post.mk
431 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.pre.mk
432 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.subdir.mk
433 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.mk
434 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.post.mk
435 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.pre.mk
436 rm -f
${DESTDIR}/var
/db
/port.mkversion
437 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.kern.mk
438 rm -f
${DESTDIR}/modules
/pcic.ko
439 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/worm.4.gz"
440 rm -f
${DESTDIR}/usr
/include/sys
/wormio.h
441 rm -rf
${DESTDIR}/usr
/share
/doc
/ncurses
442 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/brconfig.8.gz"
443 rm -f
${DESTDIR}/sbin
/brconfig
444 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.cpu.gcc
[23].mk
445 rm -f
${DESTDIR}/modules
/coda.ko
446 rm -f
${DESTDIR}/dev
/zs0
447 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_read_open_file.3.gz"
448 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_open_file.3.gz"
449 csh
-c
"rm -f ${DESTDIR}/usr/include/{e,p,}mmintrin.h"
450 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/reallocf.9.gz"
451 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/suser_proc.9.gz"
452 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/NgSendMsgReply.3.gz"
453 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/kobj_class_compile_static.9.gz"
454 csh
-c
"rm -f ${DESTDIR}/usr/include/machine/bus{,_memio,_pio}.h"
455 rm -f
${DESTDIR}/usr
/include/machine
/resource.h
456 rm -f
${DESTDIR}/usr
/libexec
/lukemftpd
457 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/lukemftpd.8.gz"
458 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/ftpd.conf.5.gz"
459 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/ftpusers.5.gz"
460 rm -f
${DESTDIR}/usr
/include/machine
/dvcfg.h
461 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/boot_i386.8.gz"
462 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/malloc.9.gz"
463 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/free.9.gz"
464 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/realloc.9.gz"
465 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}2/sys_{get,set}_tls_area.2.gz"
466 csh
-c
"rm -f ${DESTDIR}/modules/{snd,snd_pcm}.ko"
467 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/snd.4.gz"
468 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/CTR{0,1,2,3,4,5,6}.9.gz"
469 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/a{sleep,wait}.9.gz"
470 rm -f
${DESTDIR}/usr
/include/machine
/physio_proc.h
471 rm -rf
${DESTDIR}/usr
/include/c
++/4.0 \
472 ${DESTDIR}/usr
/lib
/gcc40 \
473 ${DESTDIR}/usr
/libexec
/gcc40 \
474 ${DESTDIR}/usr
/libdata
/gcc40
475 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/{cpp,g++,gcc,gcov}40.1.gz"
476 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.cpu.gcc40.mk
477 .if exists
(${DESTDIR}/usr
/share
/info/cpp40.
info.gz
)
478 gzip
-d
${DESTDIR}/usr
/share
/info/cpp40.
info.gz
479 install-info
--delete
${DESTDIR}/usr
/share
/info/cpp40.
info ${DESTDIR}/usr
/share
/info/dir
480 rm -f
${DESTDIR}/usr
/share
/info/cpp40.
info
482 .if exists
(${DESTDIR}/usr
/share
/info/cppinternals40.
info.gz
)
483 gzip
-d
${DESTDIR}/usr
/share
/info/cppinternals40.
info.gz
484 install-info
--delete
${DESTDIR}/usr
/share
/info/cppinternals40.
info ${DESTDIR}/usr
/share
/info/dir
485 rm -f
${DESTDIR}/usr
/share
/info/cppinternals40.
info
487 .if exists
(${DESTDIR}/usr
/share
/info/gcc40.
info.gz
)
488 gzip
-d
${DESTDIR}/usr
/share
/info/gcc40.
info.gz
489 install-info
--delete
${DESTDIR}/usr
/share
/info/gcc40.
info ${DESTDIR}/usr
/share
/info/dir
490 rm -f
${DESTDIR}/usr
/share
/info/gcc40.
info
492 .if exists
(${DESTDIR}/usr
/share
/info/gccint40.
info.gz
)
493 gzip
-d
${DESTDIR}/usr
/share
/info/gccint40.
info.gz
494 install-info
--delete
${DESTDIR}/usr
/share
/info/gccint40.
info ${DESTDIR}/usr
/share
/info/dir
495 rm -f
${DESTDIR}/usr
/share
/info/gccint40.
info
497 rm -f
${DESTDIR}/usr
/bin
/gtar
498 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/gtar.1.gz"
499 .if exists
(${DESTDIR}/usr
/share
/info/tar.
info.gz
)
500 gzip
-d
${DESTDIR}/usr
/share
/info/tar.
info.gz
501 install-info
--delete
${DESTDIR}/usr
/share
/info/tar.
info ${DESTDIR}/usr
/share
/info/dir
502 rm -f
${DESTDIR}/usr
/share
/info/tar.
info
504 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/{f,s}uswintr.9.gz"
505 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/MULTI_DRIVER_MODULE.9.gz"
506 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/kame.4.gz"
507 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_read_set_bytes_per_block.3.gz"
508 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_prepare.3.gz"
509 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_set_callbacks.3.gz"
510 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/OpenDarwin-supfile
511 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/bus_generic_map_intr.9.gz"
512 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/VOP_BWRITE.9.gz"
513 rm -f
${DESTDIR}/usr
/include/net
/hostcache.h
514 rm -f
${DESTDIR}/usr
/include/netinet
/in_hostcache.h
515 rm -f
${DESTDIR}/usr
/include/libdisk.h
${DESTDIR}/usr
/lib
/libdisk.a
516 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/{libdisk,Open_Disk,Clone_Disk,Free_Disk,Debug_Disk,Set_Bios_Geom,Delete_Chunk,Collapse_Disk,Collapse_Chunk,Create_Chunk,All_FreeBSD,CheckRules,Disk_Names,Set_Boot_Mgr,Set_Boot_Blocks,Write_Disk,Cyl_Aligned,Next_Cyl_Aligned,Prev_Cyl_Aligned,Track_Aligned,Next_Track_Aligned,Prev_Track_Aligned,Create_Chunk_DWIM,MakeDev,MakeDevDisk,ShowChunkFlags,ChunkCanBeRoot,slice_type_name}.3.gz"
517 rm -f
${DESTDIR}/dev
/mcd
*
518 rm -f
${DESTDIR}/dev
/scd
*
519 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/{m,s}cd.4.gz"
520 rm -f
${DESTDIR}/etc
/rc.d
/archdep
521 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/sata.4.gz"
522 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/snd_emu10kx.4.gz"
523 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/{cpu,mi}_switch.9.gz"
524 rm -f
${DESTDIR}/usr
/libexec
/getNAME
525 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/getNAME.1.gz"
526 rm -f
${DESTDIR}/modules
/daemon_saver.ko
527 rm -f
${DESTDIR}/usr
/include/net
/if_arc.h
528 rm -f
${DESTDIR}/usr
/include/net
/iso88025.h
529 rm -f
${DESTDIR}/usr
/include/netinet
/if_fddi.h
530 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/cm.4.gz"
531 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/i386/oltr.4.gz"
532 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/fea.4.gz"
533 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/fpa.4.gz"
534 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/fla.4.gz"
535 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/nv.4.gz"
536 rm -f
${DESTDIR}/modules
/if_nv.ko
537 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/{man,cat}n"
538 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/ja/{man,cat}n"
539 rm -rf
${DESTDIR}/usr
/share
/man
/en.ISO8859-1
/catn
540 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/psignal.9.gz"
541 csh
-c
"rm -f ${DESTDIR}/usr/share/openssl/man/{man,cat}7/Modes_of_DES.7.gz"
542 rm -f
${DESTDIR}/usr
/include/bus
/usb
/usbdevs.h
543 rm -f
${DESTDIR}/usr
/include/bus
/usb
/usbdevs_data.h
544 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/callout_handle_init.9"
545 rm -f
${DESTDIR}/usr
/include/net
/intrq.h
546 rm -f
${DESTDIR}/usr
/share
/games
/fortune
/freebsd-tips
547 rm -f
${DESTDIR}/usr
/share
/games
/fortune
/freebsd-tips.dat
548 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/rc.{atm,early,network,serial}.8.gz"
549 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/i386/rc.i386.8.gz"
551 .if
!defined
(BINARY_UPGRADE
) # binary upgrade just copies these nodes
553 cd
${UPGRADE_SRCDIR}/..
/share
/man
; ${MAKE} makedb
555 .if
!defined
(NO_MAKEDEV
)
556 cd
${UPGRADE_SRCDIR}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
557 MAKEDEV.local MAKEDEV
${DESTDIR}/dev
558 .if
!defined
(NO_MAKEDEV_RUN
)
559 cd
${DESTDIR}/dev
; sh MAKEDEV upgrade
566 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
567 ${BINUPDATE} ${DESTDIR}/etc
; \
568 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
569 ${BIN1} ${DESTDIR}/etc
; \
570 cap_mkdb
${DESTDIR}/etc
/login.conf
; \
571 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
572 ${BIN2} ${DESTDIR}/etc
; \
573 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 \
574 master.passwd nsmb.conf opieaccess
${DESTDIR}/etc
; \
575 pwd_mkdb
-p
-d
${DESTDIR}/etc
${DESTDIR}/etc
/master.passwd
576 cd
${.CURDIR
}/defaults
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
577 ${DEFAULTS} ${DESTDIR}/etc
/defaults
578 cd
${.CURDIR
}/pam.d
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
579 ${PAMD_CONF} ${DESTDIR}/etc
/pam.d
580 cd
${.CURDIR
}/periodic
; ${MAKE} install
581 cd
${.CURDIR
}/rc.d
; ${MAKE} install
582 cd
${.CURDIR
}/..
/share
/termcap
; ${MAKE} etc-termcap
583 cd
${.CURDIR
}/..
/usr.sbin
/rmt
; ${MAKE} etc-rmt
585 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
586 Makefile.usr
${DESTDIR}/usr
/Makefile
588 cd
${.CURDIR
}/isdn
; ${MAKE} install
590 .if
!defined
(NO_SENDMAIL
)
591 cd
${.CURDIR
}/sendmail
; ${MAKE} obj
592 cd
${.CURDIR
}/sendmail
; ${MAKE} distribution
595 .if exists
(${.CURDIR
}/..
/${dir}/Makefile.etc
)
596 cd
${.CURDIR
}/..
/${dir}; ${MAKE} -f Makefile.etc obj
597 cd
${.CURDIR
}/..
/${dir}; ${MAKE} -f Makefile.etc
install
600 .if
!defined
(NO_MAKEDEV
)
601 cd
${.CURDIR
}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
602 MAKEDEV.local MAKEDEV
${DESTDIR}/dev
603 .if
!defined
(NO_MAKEDEV_RUN
)
604 cd
${DESTDIR}/dev
; sh MAKEDEV
all
607 cd
${.CURDIR
}/root
; \
608 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
609 dot.cshrc
${DESTDIR}/root
/.cshrc
; \
610 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
611 dot.klogin
${DESTDIR}/root
/.klogin
; \
612 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
613 dot.login
${DESTDIR}/root
/.login
; \
614 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
615 dot.profile
${DESTDIR}/root
/.profile
; \
616 rm -f
${DESTDIR}/.cshrc
${DESTDIR}/.profile
; \
617 ${LN} ${DESTDIR}/root
/.cshrc
${DESTDIR}/.cshrc
; \
618 ${LN} ${DESTDIR}/root
/.profile
${DESTDIR}/.profile
619 cd
${.CURDIR
}/mtree
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
620 ${MTREE} ${DESTDIR}/etc
/mtree
621 cd
${.CURDIR
}/namedb
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
622 ${NAMEDB} ${DESTDIR}/etc
/namedb
623 cd
${.CURDIR
}/ppp
; ${INSTALL} -o root
-g
${BINGRP} -m
600 \
624 ${PPPCNF} ${DESTDIR}/etc
/ppp
625 cd
${.CURDIR
}/mail
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
626 ${ETCMAIL} ${DESTDIR}/etc
/mail
627 @if
[ -d
${DESTDIR}/etc
/mail
-a
-f
${DESTDIR}/etc
/mail
/aliases
-a \
628 ! -f
${DESTDIR}/etc
/aliases
]; then \
630 ${LN} -s mail
/aliases
${DESTDIR}/etc
/aliases
; \
632 ${INSTALL} -o
${BINOWN} -g operator
-m
664 /dev
/null \
633 ${DESTDIR}/etc
/dumpdates
634 ${INSTALL} -o nobody
-g
${BINGRP} -m
644 /dev
/null \
635 ${DESTDIR}/var
/db
/locate.database
636 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
637 ${DESTDIR}/var
/log
/auth.log
638 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
639 ${DESTDIR}/var
/log
/cron
640 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
641 ${DESTDIR}/var
/log
/lpd-errs
642 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
640 /dev
/null \
643 ${DESTDIR}/var
/log
/maillog
644 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
645 ${DESTDIR}/var
/log
/lastlog
646 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
647 ${DESTDIR}/var
/log
/messages
648 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
649 ${DESTDIR}/var
/log
/security
650 ${INSTALL} -o
${BINOWN} -g network
-m
640 /dev
/null \
651 ${DESTDIR}/var
/log
/slip.log
652 ${INSTALL} -o
${BINOWN} -g network
-m
640 /dev
/null \
653 ${DESTDIR}/var
/log
/ppp.log
654 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
655 ${DESTDIR}/var
/log
/wtmp
656 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
657 ${DESTDIR}/var
/run
/utmp
658 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${.CURDIR
}/minfree \
660 cd
${.CURDIR
}/..
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
661 ${FREEBSD} ${DESTDIR}/
663 cd
${.CURDIR
}/..
/share
/man
; ${MAKE} makedb
667 -set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
668 while
[ $$# -gt 0 ] ; \
670 for
dir in
/usr
/share
/locale \
672 /usr
/local
/share
/nls
; \
674 test -d
${DESTDIR}/$${dir} && cd
${DESTDIR}/$${dir}; \
675 test -L
"$$2" && rm -rf
"$$2"; \
676 test \
! -L
"$$1" && test -d
"$$1" && mv
"$$1" "$$2"; \
680 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.root.
dist -p
${DESTDIR}/
681 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.var.
dist -p
${DESTDIR}/var
682 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.usr.
dist -p
${DESTDIR}/usr
683 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.
include.
dist \
684 -p
${DESTDIR}/usr
/include
685 .if
!defined
(NO_SENDMAIL
)
686 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.sendmail.
dist -p
${DESTDIR}/
688 cd
${DESTDIR}/etc
/namedb
; rm -f etc
/namedb
; ${LN} -s
".." etc
/namedb
689 cd
${DESTDIR}/; rm -f
${DESTDIR}/sys
; ${LN} -s usr
/src
/sys sys
690 cd
${DESTDIR}/usr
/share
/man
/en.ISO8859-1
; ${LN} -sf ..
/man
* .
691 cd
${DESTDIR}/usr
/share
/man
; \
692 set
- `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
693 while
[ $$# -gt 0 ] ; \
696 ${LN} -s
"$$2" "$$1"; \
699 cd
${DESTDIR}/usr
/share
/locale
; \
700 set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
701 while
[ $$# -gt 0 ] ; \
704 ${LN} -s
"$$2" "$$1"; \
707 cd
${DESTDIR}/usr
/share
/openssl
/man
/en.ISO8859-1
; ${LN} -sf ..
/man
* .
708 cd
${DESTDIR}/usr
/share
/nls
; \
709 set
- `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
710 while
[ $$# -gt 0 ] ; \
713 ${LN} -s
"$$2" "$$1"; \
718 cd
${.CURDIR
}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
719 ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
720 ${DESTDIR}/usr
/share
/examples
/etc
721 cd
${.CURDIR
}/defaults
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
722 ${DEFAULTS} ${DESTDIR}/usr
/share
/examples
/etc
/defaults
724 .
include <bsd.prog.mk
>