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.143 2006/11/12 18:15:11 swildner 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 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 \
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
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
${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
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 cd
${UPGRADE_SRCDIR}/..
/share
/man
; ${MAKE} makedb
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
169 .if exists
(${DESTDIR}/usr
/bin
/dnssec-makekeyset
)
170 rm -f
${DESTDIR}/usr
/bin
/dnssec-makekeyset
171 rm -f
${DESTDIR}/usr
/bin
/dnssec-signkey
172 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/dnssec-makekeyset.8.gz"
173 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/dnssec-signkey.8.gz"
175 .if exists
(${DESTDIR}/usr
/lib
/crtbegin.o
)
176 csh
-c
"rm -f ${DESTDIR}/usr/lib/gcc2/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
177 csh
-c
"rm -f ${DESTDIR}/usr/lib/gcc3/{crtbegin.o,crtbeginS.o,crtend.o,crtendS.o}"
179 .if exists
(${DESTDIR}/usr
/include/netproto
/802_11
/if_wavelan_ieee.h
)
180 rm -f
${DESTDIR}/usr
/include/dev
/netif
/wi
/if_wavelan_ieee.h
181 rm -f
${DESTDIR}/usr
/include/net
/if_ieee80211.h
183 .if exists
(${DESTDIR}/usr
/lib
/gcc2
)
184 ldconfig
-m
${DESTDIR}/usr
/lib
/gcc2
186 rm -f
${DESTDIR}/usr
/sbin
/pccardc
${DESTDIR}/usr
/sbin
/pccardd
187 rm -f
${DESTDIR}/usr
/share
/examples
/etc
/defaults
/pccard.conf
188 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/pccard.conf.5.gz"
189 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardc.8.gz"
190 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/pccardd.8.gz"
191 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/rc.pccard.8.gz"
192 rm -f
${DESTDIR}/etc
/defaults
/pccard
${DESTDIR}/etc
/rc.d
/pccard
193 rm -f
${DESTDIR}/etc
/defaults
/pccard.conf
194 .if exists
(${DESTDIR}/usr
/libexec
/gcc34
) && exists
(${DESTDIR}/usr
/libexec
/binutils215
)
195 rm -rf
${DESTDIR}/usr
/lib
/gcc3
196 rm -rf
${DESTDIR}/usr
/libexec
/gcc3
197 rm -rf
${DESTDIR}/usr
/libdata
/ldscripts
198 rm -rf
${DESTDIR}/usr
/libdata
/gcc2
199 rm -rf
${DESTDIR}/usr
/libdata
/gcc3
200 rm -rf
${DESTDIR}/usr
/libexec
/elf
201 rm -rf
${DESTDIR}/usr
/libexec
/aout
202 rm -rf
${DESTDIR}/usr
/bin
/gcc2
203 rm -rf
${DESTDIR}/usr
/bin
/gcc3
204 rm -rf
${DESTDIR}/usr
/include/g
++
205 csh
-c
"rm -f ${DESTDIR}/usr/bin/{genassym,gensetdefs,nawk,ptx,send-pr}"
206 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/{genassym,gensetdefs}.8.gz"
207 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/{cccp,gawk,nawk,send-pr}.1.gz"
208 csh
-c
"rm -f ${DESTDIR}/usr/libexec/{cc1,cc1obj,cc1plus}"
209 csh
-c
"rm -f ${DESTDIR}/usr/libexec/{cpp,cpp0,f771,objformat}"
210 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils212/{cc1,cc1obj,cc1plus}"
211 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils212/{cpp,cpp0,f771,objformat}"
212 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils214/{cc1,cc1obj,cc1plus}"
213 csh
-c
"rm -f ${DESTDIR}/usr/libexec/binutils214/{cpp,cpp0,f771,objformat}"
214 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libgcc.a,libgcc_p.a}"
215 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libobjc.a,libobjc_p.a,libstdc++.a}"
216 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libstdc++.so,libstdc++.so.3}"
217 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libstdc++_p.a}"
218 rm -rf
${DESTDIR}/usr
/libexec
/binutils214
220 rm -f
${DESTDIR}/usr
/bin
/makewhatis
221 rm -f
${DESTDIR}/usr
/sbin
/prebind
222 rm -f
${DESTDIR}/modules
/checkpt.ko
223 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/{man,cat}1aout"
224 csh
-c
"rm -rf ${DESTDIR}/usr/share/man/en.ISO8859-1/{man,cat}1aout"
225 rm -rf
${DESTDIR}/usr
/libdata
/perl
226 csh
-c
"rm -f ${DESTDIR}/usr/bin/{find2perl,perl5,perl5.00503,pod2latex}"
227 test -L
${DESTDIR}/usr
/bin
/perl ||
rm -f
${DESTDIR}/usr
/bin
/perl
228 csh
-c
"rm -f ${DESTDIR}/usr/bin/{pod2text,sperl5,sperl5.00503,splain,suidperl}"
229 .for prog in a2p c2ph h2ph h2xs perlbug perlcc pl2pm pod2html pod2man s2p
230 rm -f
${DESTDIR}/usr
/bin
/${prog}
231 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${prog}.1.gz"
233 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libperl.a,libperl.so,libperl.so.3,libperl_p.a}"
234 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl.1.gz"
235 .for man in
5004delta apio book bot call data debug delta diag doc dsc embed faq \
236 faq1 faq2 faq3 faq4 faq5 faq6 faq7 faq8 faq9 form func guts hist \
237 ipc locale lol mod modinstall modlib obj op opentut pod port re \
238 ref reftut run sec style sub syn thrtut tie toc toot trap var xs \
240 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/perl${man}.1.gz"
242 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}7/style.perl.7.gz"
243 rm -rf
${DESTDIR}/usr
/share
/perl
244 rm -rf
${DESTDIR}/usr
/share
/examples
/bc
245 .if exists
(${DESTDIR}/usr
/share
/info/dc.
info.gz
)
246 gzip
-d
${DESTDIR}/usr
/share
/info/dc.
info.gz
247 install-info
--delete
${DESTDIR}/usr
/share
/info/dc.
info ${DESTDIR}/usr
/share
/info/dir
248 rm -f
${DESTDIR}/usr
/share
/info/dc.
info
250 csh
-c
"rm -f ${DESTDIR}/usr/include/{gmp,mp}.h"
251 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libmp.a,libmp_p.a,libmp.so,libmp.so.3}"
252 csh
-c
"rm -f ${DESTDIR}/usr/lib/{libgmp.a,libgmp_p.a,libgmp.so,libgmp.so.3}"
253 .if exists
(${DESTDIR}/usr
/share
/info/gmp.
info.gz
)
254 gzip
-d
${DESTDIR}/usr
/share
/info/gmp.
info.gz
255 install-info
--delete
${DESTDIR}/usr
/share
/info/gmp.
info ${DESTDIR}/usr
/share
/info/dir
256 rm -f
${DESTDIR}/usr
/share
/info/gmp.
info
258 rm -f
${DESTDIR}/etc
/rc.d
/ntpdate
259 rm -f
${DESTDIR}/usr
/sbin
/ntpdate
260 rm -f
${DESTDIR}/modules
/if_wx.ko
261 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wx.4.gz"
262 rm -f
${DESTDIR}/dev
/rwcd
*
263 rm -f
${DESTDIR}/dev
/rwst
*
264 rm -f
${DESTDIR}/dev
/wcd
*
265 rm -f
${DESTDIR}/dev
/wd
*
266 rm -f
${DESTDIR}/dev
/wfd
*
267 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/wst.4.gz"
268 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/{euc,utf2}.4.gz"
269 rm -f
${DESTDIR}/usr
/share
/syscons
/keymaps
/jp.pc98.iso.kbd
270 rm -f
${DESTDIR}/usr
/share
/syscons
/keymaps
/jp.pc98.kbd
271 csh
-c
"rm -f ${DESTDIR}/etc/rc.d/{bootconf.sh,lkm1,lkm2,lkm3,mountall,pcvt,wscons}"
272 rm -f
${DESTDIR}/modules
/canbus.ko
273 .for lib in
${COMPAT_LIBS
:M
*.so.
*}
274 .if exists
(${DESTDIR}/usr
/lib
/${lib})
275 chflags noschg
${DESTDIR}/usr
/lib
/${lib}
276 rm -f
${DESTDIR}/usr
/lib
/${lib}
279 rm -f
${DESTDIR}/usr
/lib
/libkeycap.a
280 rm -f
${DESTDIR}/usr
/lib
/libkeycap_p.a
281 .for cmd in cursor fontedit ispcvt kcon loadfont mcon scon vt220keys vttest
282 rm -f
${DESTDIR}/usr
/sbin
/${cmd}
284 .for man in cursor fontedit kcon loadfont mcon scon vt220keys vttest
285 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
287 .for man in keycap kgetent kgetflag kgetnum kgetstr
288 rm -f
${DESTDIR}/usr
/share
/man
/{man
,cat
}3/${man}.3.gz
290 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcvt.4.gz"
291 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/vt.4.gz"
292 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/keycap.5.gz"
293 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/ispcvt.8.gz"
294 rm -f
${DESTDIR}/usr
/share
/misc
/keycap.pcvt
295 rm -rf
${DESTDIR}/usr
/share
/misc
/fonts
296 rm -rf
${DESTDIR}/usr
/share
/misc
/pcvtfonts
297 rm -rf
${DESTDIR}/usr
/share
/pcvt
298 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/battd.1.gz"
299 rm -f
${DESTDIR}/usr
/include/machine
/bus_pc98.h
300 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/pcic.4.gz"
301 .if exists
(${DESTDIR}/usr
/share
/info/bzip2.
info.gz
)
302 gzip
-d
${DESTDIR}/usr
/share
/info/bzip2.
info.gz
303 install-info
--delete
${DESTDIR}/usr
/share
/info/bzip2.
info ${DESTDIR}/usr
/share
/info/dir
304 rm -f
${DESTDIR}/usr
/share
/info/bzip2.
info
306 .if exists
(${DESTDIR}/usr
/share
/info/gasp.
info.gz
)
307 gzip
-d
${DESTDIR}/usr
/share
/info/gasp.
info.gz
308 install-info
--delete
${DESTDIR}/usr
/share
/info/gasp.
info ${DESTDIR}/usr
/share
/info/dir
309 rm -f
${DESTDIR}/usr
/share
/info/gasp.
info
311 .if exists
(${DESTDIR}/usr
/share
/info/gperf.
info.gz
)
312 gzip
-d
${DESTDIR}/usr
/share
/info/gperf.
info.gz
313 install-info
--delete
${DESTDIR}/usr
/share
/info/gperf.
info ${DESTDIR}/usr
/share
/info/dir
314 rm -f
${DESTDIR}/usr
/share
/info/gperf.
info
316 .if exists
(${DESTDIR}/usr
/share
/info/gxxint.
info.gz
)
317 gzip
-d
${DESTDIR}/usr
/share
/info/gxxint.
info.gz
318 install-info
--delete
${DESTDIR}/usr
/share
/info/gxxint.
info ${DESTDIR}/usr
/share
/info/dir
319 rm -f
${DESTDIR}/usr
/share
/info/gxxint.
info
321 .if exists
(${DESTDIR}/usr
/share
/info/iostream.
info.gz
)
322 gzip
-d
${DESTDIR}/usr
/share
/info/iostream.
info.gz
323 install-info
--delete
${DESTDIR}/usr
/share
/info/iostream.
info ${DESTDIR}/usr
/share
/info/dir
324 rm -f
${DESTDIR}/usr
/share
/info/iostream.
info
326 .if exists
(${DESTDIR}/usr
/share
/info/ptx.
info.gz
)
327 gzip
-d
${DESTDIR}/usr
/share
/info/ptx.
info.gz
328 install-info
--delete
${DESTDIR}/usr
/share
/info/ptx.
info ${DESTDIR}/usr
/share
/info/dir
329 rm -f
${DESTDIR}/usr
/share
/info/ptx.
info
331 .if exists
(${DESTDIR}/usr
/share
/info/send-pr.
info.gz
)
332 gzip
-d
${DESTDIR}/usr
/share
/info/send-pr.
info.gz
333 install-info
--delete
${DESTDIR}/usr
/share
/info/send-pr.
info ${DESTDIR}/usr
/share
/info/dir
334 rm -f
${DESTDIR}/usr
/share
/info/send-pr.
info
336 rm -f
${DESTDIR}/usr
/share
/info/cpp2.
info.gz
337 rm -f
${DESTDIR}/usr
/share
/info/gcc2.
info.gz
338 rm -f
${DESTDIR}/usr
/sbin
/ibcs2
339 rm -f
${DESTDIR}/usr
/sbin
/linux
340 rm -f
${DESTDIR}/usr
/sbin
/ntp-genkeys
341 rm -f
${DESTDIR}/usr
/sbin
/ntpdc
342 rm -f
${DESTDIR}/usr
/sbin
/ntptime
343 rm -f
${DESTDIR}/usr
/sbin
/ntptimeset
344 rm -f
${DESTDIR}/usr
/sbin
/ntptrace
345 rm -f
${DESTDIR}/usr
/sbin
/scriptdump
346 rm -f
${DESTDIR}/usr
/sbin
/svr4
347 rm -f
${DESTDIR}/usr
/bin
/cvsbug
348 rm -f
${DESTDIR}/usr
/bin
/gdbreplay
349 rm -f
${DESTDIR}/usr
/bin
/gperf
350 rm -f
${DESTDIR}/usr
/bin
/joy
351 rm -f
${DESTDIR}/usr
/bin
/minigzip
352 rm -f
${DESTDIR}/usr
/bin
/ntpq
353 rm -f
${DESTDIR}/usr
/bin
/perldoc
354 rm -f
${DESTDIR}/usr
/bin
/sendbug
355 .for man in gasp gperf minigzip sendbug
356 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}1/${man}.1.gz"
358 .for man in dft_fgbg dllockinit dynamic_fieldinfo fgetrune fputrune fungetrune \
359 mbmb mbrrune mbrune menu_attribs multibyte rune setinvalidrune \
360 setrunelocale sgetrune sputrune archive_entry_gname_w \
361 archive_entry_uname_w dbm_dirnfo exp10 exp10f
362 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/${man}.3.gz"
364 .for man in drivers.conf gbk ntp.conf ntp.keys
365 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/${man}.5.gz"
367 .for man in ibcs2 joy linux ntp-genkeys ntpdate ntpdc ntpq ntptime ntptrace \
368 picobsd svr4 sysinstall cvsbug
369 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/${man}.8.gz"
371 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/suser_xxx.9.gz"
372 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/NDINIT.9.gz"
373 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-supfile
374 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-stable-supfile
375 rm -f
${DESTDIR}/usr
/share
/nls
/*/.cat
376 rm -f
${DESTDIR}/usr
/include/machine
/gencount.h
377 rm -f
${DESTDIR}/usr
/include/machine
/pcvt_ioctl.h
378 rm -f
${DESTDIR}/usr
/include/net
/bpf_compat.h
379 rm -f
${DESTDIR}/usr
/include/netinet
/ipprotosw.h
380 rm -f
${DESTDIR}/usr
/include/rune.h
381 rm -f
${DESTDIR}/usr
/include/runetype.h
382 rm -f
${DESTDIR}/modules
/if_snc.ko
383 .for tzfile in Africa
/Timbuktu America
/Argentina
/ComodRivadavia \
384 America
/Indianapolis America
/Louisville CST6CDT EST EST5EDT \
385 Europe
/Belfast HST MST MST7MDT PST8PDT Pacific
/Yap \
386 America
/Coral_Harbour
387 rm -f
${DESTDIR}/usr
/share
/zoneinfo
/${tzfile}
389 .if exists
(${DESTDIR}/usr
/freebsd_pkg
/sbin
/pkg_add
)
390 csh
-c
"rm -f ${DESTDIR}/usr/sbin/pkg_{install,add,create,delete,info,sign,version,check,update}"
391 csh
-c
"rm -f ${DESTDIR}/usr/share/man/man1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
392 csh
-c
"rm -f ${DESTDIR}/usr/share/man/cat1/pkg_{add,create,delete,info,sign,version,check,update}.1.gz"
394 rm -f
${DESTDIR}/etc
/rc.d
/altqd
395 csh
-c
"rm -f ${DESTDIR}/etc/rc.d/network{,1,2,3}"
396 rm -f
${DESTDIR}/usr
/share
/examples
/cvsup
/DragonFly-dfports-supfile
397 rm -f
${DESTDIR}/etc
/periodic
/weekly
/400.status-pkg
398 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}7/ports.7.gz"
399 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/SPLASSERT.9.gz"
400 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl.9.gz"
401 .for splman in
0 bio clock high imp net softclock softtty statclock tty vm x
402 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/spl${splman}.9.gz"
404 rm -f
${DESTDIR}/modules
/if_owi.ko
405 rm -f
${DESTDIR}/modules
/umap.ko
406 rm -f
${DESTDIR}/sbin
/mount_umap
407 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/mount_umap.8.gz"
408 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/isinff.3.gz"
409 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/isnanf.3.gz"
410 rm -f
${DESTDIR}/modules
/ibcs2.ko
411 rm -rf
${DESTDIR}/usr
/share
/examples
/ibcs2
412 rm -f
${DESTDIR}/modules
/streams.ko
413 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/streams.4.gz"
414 rm -f
${DESTDIR}/modules
/svr4.ko
415 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/svr4.4.gz"
416 rm -rf
${DESTDIR}/usr
/include/net
/oldbridge
417 rm -f
${DESTDIR}/usr
/include/net
/bridge
/bridge.h
418 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/oldbridge.4.gz"
419 rm -f
${DESTDIR}/modules
/bridge.ko
420 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_attach.9.gz"
421 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_attach.9.gz"
422 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_detach.9.gz"
423 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_crypto_wep_crypt.9.gz"
424 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_decap.9.gz"
425 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_lookup_node.9.gz"
426 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/ieee80211_timeout_nodes.9.gz"
427 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.mk
428 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.post.mk
429 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.pre.mk
430 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.port.subdir.mk
431 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.mk
432 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.post.mk
433 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.dfport.pre.mk
434 rm -f
${DESTDIR}/var
/db
/port.mkversion
435 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.kern.mk
436 rm -f
${DESTDIR}/modules
/pcic.ko
437 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}4/worm.4.gz"
438 rm -f
${DESTDIR}/usr
/include/sys
/wormio.h
439 rm -rf
${DESTDIR}/usr
/share
/doc
/ncurses
440 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/brconfig.8.gz"
441 rm -f
${DESTDIR}/sbin
/brconfig
442 rm -f
${DESTDIR}/usr
/share
/mk
/bsd.cpu.gcc
[23].mk
443 rm -f
${DESTDIR}/modules
/coda.ko
444 rm -f
${DESTDIR}/dev
/zs0
445 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_read_open_file.3.gz"
446 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_open_file.3.gz"
447 csh
-c
"rm -f ${DESTDIR}/usr/include/{e,p,}mmintrin.h"
448 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/reallocf.9.gz"
449 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/suser_proc.9.gz"
450 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}3/NgSendMsgReply.3.gz"
451 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}9/kobj_class_compile_static.9.gz"
452 csh
-c
"rm -f ${DESTDIR}/usr/include/machine/bus{,_memio,_pio}.h"
453 rm -f
${DESTDIR}/usr
/include/machine
/resource.h
454 rm -f
${DESTDIR}/usr
/libexec
/lukemftpd
455 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/lukemftpd.8.gz"
456 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/ftpd.conf.5.gz"
457 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}5/ftpusers.5.gz"
458 rm -f
${DESTDIR}/usr
/include/machine
/dvcfg.h
459 csh
-c
"rm -f ${DESTDIR}/usr/share/man/{man,cat}8/boot_i386.8.gz"
461 .if
!defined
(BINARY_UPGRADE
) # binary upgrade just copies these nodes
462 .if
!defined
(NO_MAKEDEV
)
463 cd
${UPGRADE_SRCDIR}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
464 MAKEDEV.local MAKEDEV
${DESTDIR}/dev
465 .if
!defined
(NO_MAKEDEV_RUN
)
466 cd
${DESTDIR}/dev
; sh MAKEDEV
all
473 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
474 ${BINUPDATE} ${DESTDIR}/etc
; \
475 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
476 ${BIN1} ${DESTDIR}/etc
; \
477 cap_mkdb
${DESTDIR}/etc
/login.conf
; \
478 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
479 ${BIN2} ${DESTDIR}/etc
; \
480 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 \
481 master.passwd nsmb.conf opieaccess
${DESTDIR}/etc
; \
482 pwd_mkdb
-p
-d
${DESTDIR}/etc
${DESTDIR}/etc
/master.passwd
483 cd
${.CURDIR
}/defaults
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
484 ${DEFAULTS} ${DESTDIR}/etc
/defaults
485 cd
${.CURDIR
}/pam.d
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
486 ${PAMD_CONF} ${DESTDIR}/etc
/pam.d
487 cd
${.CURDIR
}/periodic
; ${MAKE} install
488 cd
${.CURDIR
}/rc.d
; ${MAKE} install
489 cd
${.CURDIR
}/..
/share
/termcap
; ${MAKE} etc-termcap
490 cd
${.CURDIR
}/..
/usr.sbin
/rmt
; ${MAKE} etc-rmt
492 cd
${.CURDIR
}/isdn
; ${MAKE} install
494 .if
!defined
(NO_SENDMAIL
)
495 cd
${.CURDIR
}/sendmail
; ${MAKE} obj
496 cd
${.CURDIR
}/sendmail
; ${MAKE} distribution
499 .if exists
(${.CURDIR
}/..
/${dir}/Makefile.etc
)
500 cd
${.CURDIR
}/..
/${dir}; ${MAKE} -f Makefile.etc obj
501 cd
${.CURDIR
}/..
/${dir}; ${MAKE} -f Makefile.etc
install
504 .if
!defined
(NO_MAKEDEV
)
505 cd
${.CURDIR
}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
555 \
506 MAKEDEV.local MAKEDEV
${DESTDIR}/dev
507 .if
!defined
(NO_MAKEDEV_RUN
)
508 cd
${DESTDIR}/dev
; sh MAKEDEV
all
511 cd
${.CURDIR
}/root
; \
512 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
513 dot.cshrc
${DESTDIR}/root
/.cshrc
; \
514 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
515 dot.klogin
${DESTDIR}/root
/.klogin
; \
516 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
517 dot.login
${DESTDIR}/root
/.login
; \
518 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
519 dot.profile
${DESTDIR}/root
/.profile
; \
520 rm -f
${DESTDIR}/.cshrc
${DESTDIR}/.profile
; \
521 ${LN} ${DESTDIR}/root
/.cshrc
${DESTDIR}/.cshrc
; \
522 ${LN} ${DESTDIR}/root
/.profile
${DESTDIR}/.profile
523 cd
${.CURDIR
}/mtree
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
524 ${MTREE} ${DESTDIR}/etc
/mtree
525 cd
${.CURDIR
}/namedb
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
526 ${NAMEDB} ${DESTDIR}/etc
/namedb
527 cd
${.CURDIR
}/ppp
; ${INSTALL} -o root
-g
${BINGRP} -m
600 \
528 ${PPPCNF} ${DESTDIR}/etc
/ppp
529 cd
${.CURDIR
}/mail
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 \
530 ${ETCMAIL} ${DESTDIR}/etc
/mail
531 @if
[ -d
${DESTDIR}/etc
/mail
-a
-f
${DESTDIR}/etc
/mail
/aliases
-a \
532 ! -f
${DESTDIR}/etc
/aliases
]; then \
534 ${LN} -s mail
/aliases
${DESTDIR}/etc
/aliases
; \
536 ${INSTALL} -o
${BINOWN} -g operator
-m
664 /dev
/null \
537 ${DESTDIR}/etc
/dumpdates
538 ${INSTALL} -o nobody
-g
${BINGRP} -m
644 /dev
/null \
539 ${DESTDIR}/var
/db
/locate.database
540 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
541 ${DESTDIR}/var
/log
/auth.log
542 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
543 ${DESTDIR}/var
/log
/cron
544 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
545 ${DESTDIR}/var
/log
/lpd-errs
546 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
640 /dev
/null \
547 ${DESTDIR}/var
/log
/maillog
548 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
549 ${DESTDIR}/var
/log
/lastlog
550 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
551 ${DESTDIR}/var
/log
/messages
552 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
600 /dev
/null \
553 ${DESTDIR}/var
/log
/security
554 ${INSTALL} -o
${BINOWN} -g network
-m
640 /dev
/null \
555 ${DESTDIR}/var
/log
/slip.log
556 ${INSTALL} -o
${BINOWN} -g network
-m
640 /dev
/null \
557 ${DESTDIR}/var
/log
/ppp.log
558 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
559 ${DESTDIR}/var
/log
/wtmp
560 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 /dev
/null \
561 ${DESTDIR}/var
/run
/utmp
562 ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
644 ${.CURDIR
}/minfree \
564 cd
${.CURDIR
}/..
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
565 ${FREEBSD} ${DESTDIR}/
567 cd
${.CURDIR
}/..
/share
/man
; ${MAKE} makedb
571 -set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
572 while
[ $$# -gt 0 ] ; \
574 for
dir in
/usr
/share
/locale \
576 /usr
/local
/share
/nls
; \
578 test -d
${DESTDIR}/$${dir} && cd
${DESTDIR}/$${dir}; \
579 test -L
"$$2" && rm -rf
"$$2"; \
580 test \
! -L
"$$1" && test -d
"$$1" && mv
"$$1" "$$2"; \
584 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.root.
dist -p
${DESTDIR}/
585 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.var.
dist -p
${DESTDIR}/var
586 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.usr.
dist -p
${DESTDIR}/usr
587 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.
include.
dist \
588 -p
${DESTDIR}/usr
/include
589 .if
!defined
(NO_SENDMAIL
)
590 mtree
-deU
-f
${.CURDIR
}/mtree
/BSD.sendmail.
dist -p
${DESTDIR}/
592 cd
${DESTDIR}/etc
/namedb
; rm -f etc
/namedb
; ${LN} -s
".." etc
/namedb
593 cd
${DESTDIR}/; rm -f
${DESTDIR}/sys
; ${LN} -s usr
/src
/sys sys
594 cd
${DESTDIR}/usr
/share
/man
/en.ISO8859-1
; ${LN} -sf ..
/man
* .
595 cd
${DESTDIR}/usr
/share
/man
; \
596 set
- `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
597 while
[ $$# -gt 0 ] ; \
600 ${LN} -s
"$$2" "$$1"; \
603 cd
${DESTDIR}/usr
/share
/locale
; \
604 set
- `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
605 while
[ $$# -gt 0 ] ; \
608 ${LN} -s
"$$2" "$$1"; \
611 cd
${DESTDIR}/usr
/share
/openssl
/man
/en.ISO8859-1
; ${LN} -sf ..
/man
* .
612 cd
${DESTDIR}/usr
/share
/nls
; \
613 set
- `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
614 while
[ $$# -gt 0 ] ; \
617 ${LN} -s
"$$2" "$$1"; \
622 cd
${.CURDIR
}; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
623 ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
624 ${DESTDIR}/usr
/share
/examples
/etc
625 cd
${.CURDIR
}/defaults
; ${INSTALL} -o
${BINOWN} -g
${BINGRP} -m
444 \
626 ${DEFAULTS} ${DESTDIR}/usr
/share
/examples
/etc
/defaults
628 .
include <bsd.prog.mk
>