xref: /dragonfly/etc/Makefile (revision d0d42ea0)
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
4.if !defined(NO_SENDMAIL)
5SUBDIR=	sendmail
6.endif
7
8# Files that should be installed read-only (444)
9#
10BINUPDATE= apmd.conf fbtab gettytab network.subr \
11	pf.os \
12	protocols \
13	rc rc.firewall6 \
14	rc.sendmail rc.shutdown \
15	rc.subr rpc services \
16	etc.${MACHINE_ARCH}/disktab
17.if defined(BINARY_UPGRADE) # location of these depends on upgrade method
18BINUPDATE+=mail.rc locate.rc
19.else
20BINUPDATE+=${.CURDIR}/../usr.bin/mail/misc/mail.rc \
21	${.CURDIR}/../usr.bin/locate/locate/locate.rc
22.endif
23
24# Initial distribution files are installed read-write (644)
25#
26BIN1=	amd.map auth.conf \
27	crontab csh.cshrc csh.login csh.logout \
28	devd.conf devtab dhclient.conf dm.conf dntpd.conf \
29	ftpusers group \
30	hosts hosts.allow hosts.equiv hosts.lpd \
31	inetd.conf login.access login.conf \
32	motd modems netconfig networks newsyslog.conf \
33	nscd.conf pf.conf phones printcap profile \
34	regdomain.xml 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
38BIN1+=	manpath.config
39.else
40BIN1+=	${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config
41.endif
42
43.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
44.if !defined(NO_OPENSSH)
45DIRS+=	secure/lib/libssh \
46	secure/usr.bin/ssh \
47	secure/usr.sbin/sshd
48.endif
49DIRS+=	secure/usr.bin/openssl
50.endif
51DIRS+=	libexec/dma
52
53# Files that should be installed read-only-executable (555) root:wheel
54#
55BIN2=	pccard_ether rc.firewall rc.suspend rc.resume
56
57DEFAULTS= compilers.conf devfs.conf make.conf mkinitrd.conf periodic.conf \
58	  rc.conf uuids
59
60MTREE=	BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
61	BSD.var.dist
62.if !defined(NO_SENDMAIL)
63MTREE+=	BSD.sendmail.dist
64.endif
65
66PPPCNF=	ppp.conf
67
68ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
69	mailertable.sample aliases
70
71# Special top level files for FreeBSD
72FREEBSD=COPYRIGHT
73
74# List of libraries in /usr/lib/compat that might have to be removed
75# from /usr/lib.
76COMPAT_LIBS != cd ${DESTDIR}/usr/lib/compat && find . -name '*.so.*'
77
78# Use this directory as the source for new configuration files when upgrading
79UPGRADE_SRCDIR?=${.CURDIR}
80
81# Include file which contains obsolete files
82.if exists(${DESTDIR}/etc/upgrade/Makefile_upgrade.inc)
83.include "${DESTDIR}/etc/upgrade/Makefile_upgrade.inc"
84.endif
85
86remove-obsolete-files:
87	@if [ -z "${TO_REMOVE}" ]; then \
88		echo "Please do a 'make installworld' first."; \
89		echo "See build(7) for further information."; \
90		exit 1; \
91	fi;
92	@echo "===> Remove now obsolete files"
93	@for item in ${TO_REMOVE:M*.info.gz}; do \
94		if [ -e ${DESTDIR}$${item} ]; then \
95			install-info --delete ${DESTDIR}$${item} \
96			    /usr/share/info/dir; \
97		fi; \
98	done;
99	@for item in ${TO_REMOVE}; do \
100		if [ -e ${DESTDIR}$${item} -o -L ${DESTDIR}$${item} ]; then \
101			echo "${DESTDIR}$${item}"; \
102			chflags -Rf noschg "${DESTDIR}$${item}"; \
103			rm -rf "${DESTDIR}$${item}"; \
104		fi; \
105	done
106
107preupgrade:
108.if !defined(NO_SENDMAIL)
109	(pw -V ${DESTDIR}/etc groupshow smmsp -q > /dev/null) || \
110		pw -V ${DESTDIR}/etc groupadd smmsp -g 25
111	(pw -V ${DESTDIR}/etc usershow smmsp -q > /dev/null) || \
112		pw -V ${DESTDIR}/etc useradd smmsp -u 25 \
113		   -c "Sendmail Submission User" \
114		   -d /var/spool/clientmqueue -s /sbin/nologin
115.endif
116	(pw -V ${DESTDIR}/etc usershow _pflogd -q > /dev/null) || \
117		pw -V ${DESTDIR}/etc useradd _pflogd -u 64 \
118		   -c "pflogd privsep user" \
119		   -d /var/empty -s /sbin/nologin
120	(pw -V ${DESTDIR}/etc usershow _sdpd -q > /dev/null) || \
121		pw -V ${DESTDIR}/etc useradd _sdpd -u 70 \
122		   -c "sdpd privsep user" \
123		   -d /var/empty -s /sbin/nologin
124	(pw -V ${DESTDIR}/etc usershow _dhcp -q > /dev/null) || \
125		pw -V ${DESTDIR}/etc useradd _dhcp -u 77 \
126		   -c "DHCP programs" \
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	(pw -V ${DESTDIR}/etc groupshow _dhcp -q > /dev/null) || \
135		pw -V ${DESTDIR}/etc groupadd _dhcp -g 77
136
137upgrade_etc:	preupgrade remove-obsolete-files
138	# files that should be dirs (not possible with Makefile_upgrade.inc)
139.for f in usr/include/dev/misc/ppi usr/share/initrd/sbin
140	[ -d ${DESTDIR}/${f} ] || rm -f ${DESTDIR}/${f}
141.endfor
142.if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
143	cd ${UPGRADE_SRCDIR}/../share/mk; ${MAKE} install
144.endif
145	cd ${UPGRADE_SRCDIR}; \
146	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
147		${BINUPDATE} ${DESTDIR}/etc; \
148	    cap_mkdb ${DESTDIR}/etc/login.conf; \
149	    for f in ${BIN1}; do \
150		[ -e "${DESTDIR}/etc/$${f##*/}" ] || \
151		    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
152			$$f ${DESTDIR}/etc; \
153	    done; \
154	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
155		${BIN2} ${DESTDIR}/etc;
156	cd ${UPGRADE_SRCDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
157	    ${DEFAULTS} ${DESTDIR}/etc/defaults
158	cd ${UPGRADE_SRCDIR}/periodic; ${MAKE} install
159	mkdir -p ${DESTDIR}/etc/rc.d
160	cd ${UPGRADE_SRCDIR}/rc.d; ${MAKE} install
161	# "../share/termcap/make etc-termcap" expanded inline here:
162	${LN} -fs /usr/share/misc/termcap ${DESTDIR}/etc/termcap
163	# "../usr.sbin/rmt/make etc-rmt" expanded inline here:
164	${LN} -fs /usr/sbin/rmt ${DESTDIR}/etc/rmt
165.if !defined(BINARY_UPGRADE) # XXX not yet handled by binary upgrade
166.if !defined(NO_SENDMAIL)
167	cd ${UPGRADE_SRCDIR}/sendmail; ${MAKE} upgrade
168.endif
169.endif
170.if !defined(NO_I4B)
171	cd ${UPGRADE_SRCDIR}/isdn; ${MAKE} install
172.endif
173	cd ${UPGRADE_SRCDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
174	    ${MTREE} ${DESTDIR}/etc/mtree
175	cd ${UPGRADE_SRCDIR}/bluetooth; ${MAKE} install
176	cd ${UPGRADE_SRCDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.usr ${DESTDIR}/usr/Makefile
177.if !exists(${DESTDIR}/etc/pam.d)
178	mkdir -p ${DESTDIR}/etc/pam.d
179	cd ${UPGRADE_SRCDIR}/pam.d; ${MAKE} install
180	sh ${DESTDIR}/etc/pam.d/convert.sh ${DESTDIR}/etc/pam.d ${DESTDIR}/etc/pam.conf
181.else
182.for pamconf in README convert.sh atrun cron passwd rsh su system
183.if !exists(${DESTDIR}/etc/pam.d/${pamconf})
184	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${UPGRADE_SRCDIR}/pam.d/${pamconf} ${DESTDIR}/etc/pam.d
185.endif
186.endfor
187.endif
188	# these removals must occur AFTER any pam conversion
189	csh -c "rm -f /usr/lib/pam_{cleartext_pass_ok,deny,opie,opieaccess,permit,radius,skey,ssh,tacplus,unix}.so"
190	rm -f /etc/pam.conf
191.if !defined(BINARY_UPGRADE) # binary upgrade just copies these files
192	cd ${UPGRADE_SRCDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
193	    ${FREEBSD} ${DESTDIR}/
194.endif
195	rm -f ${DESTDIR}/usr/include/machine/ioctl_meteor.h
196	rm -f ${DESTDIR}/usr/include/machine/ioctl_bt848.h
197	${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
198	${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
199.if exists(${DESTDIR}/usr/lib/gcc2)
200	ldconfig -m ${DESTDIR}/usr/lib/gcc2
201.endif
202.for lib in ${COMPAT_LIBS:M*.so.*}
203.if exists(${DESTDIR}/usr/lib/${lib})
204	chflags noschg ${DESTDIR}/usr/lib/${lib}
205	rm -f ${DESTDIR}/usr/lib/${lib}
206.endif
207.endfor
208.if !defined(NO_OPENSSH)
209	cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc obj
210	cd ${.CURDIR}/../secure/lib/libssh; ${MAKE} -f Makefile.etc install
211.endif
212.if exists(${DESTDIR}/boot)
213.if exists(${DESTDIR}/kernel)
214	chflags noschg ${DESTDIR}/kernel
215	mv ${DESTDIR}/kernel ${DESTDIR}/boot/kernel
216	chflags schg ${DESTDIR}/boot/kernel
217.endif
218.if exists(${DESTDIR}/modules)
219	mv ${DESTDIR}/modules ${DESTDIR}/boot/modules
220	rm -rf ${DESTDIR}/boot/modules/modules
221.endif
222.if exists(${DESTDIR}/kernel.old)
223	mv ${DESTDIR}/kernel.old ${DESTDIR}/boot/kernel.old
224.endif
225.if exists(${DESTDIR}/modules.old)
226	mv ${DESTDIR}/modules.old ${DESTDIR}/boot/modules.old
227	rm -rf ${DESTDIR}/boot/modules.old/modules.old
228.endif
229.endif
230.if exists(${DESTDIR}/etc/settings.conf)
231	mv ${DESTDIR}/etc/settings.conf ${DESTDIR}/etc/pkg_radd.conf
232.endif
233	for ext in a so.0; do \
234		f=${DESTDIR}/usr/lib/libpthread.$$ext; \
235		dest=$$(readlink "$$f"); \
236		case "$$dest" in \
237		libthread_xu.*|libc_r.*) \
238			ln -fs thread/$$dest $$f ;; \
239		esac; \
240	done
241	ldconfig -R
242	mkdir -p ${DESTDIR}/dev
243
244# The existence of cleartext_pass_ok means pam config files are out of date.
245	@set - `fgrep cleartext_pass_ok ${DESTDIR}/etc/pam.d/*`; \
246	if [ $$# -gt 0 ] ; \
247	then \
248		echo "It appears your PAM configuration files need to be updated"; \
249		echo "This can be done by manually editing the files or:"; \
250		echo "	cd ${UPGRADE_SRCDIR}/pam.d"; \
251		echo "	make install"; \
252	fi
253
254distribution:
255	cd ${.CURDIR}; \
256	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
257		${BINUPDATE} ${DESTDIR}/etc; \
258	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
259		${BIN1} ${DESTDIR}/etc; \
260	    cap_mkdb ${DESTDIR}/etc/login.conf; \
261	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
262		${BIN2} ${DESTDIR}/etc; \
263	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
264		master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
265	    pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
266	cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
267	    ${DEFAULTS} ${DESTDIR}/etc/defaults
268	cd ${.CURDIR}/pam.d; ${MAKE} install
269	cd ${.CURDIR}/bluetooth; ${MAKE} install
270	cd ${.CURDIR}/periodic; ${MAKE} install
271	cd ${.CURDIR}/rc.d; ${MAKE} install
272	cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
273	cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
274	cd ${.CURDIR}; \
275	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
276		Makefile.usr ${DESTDIR}/usr/Makefile
277.if !defined(NO_I4B)
278	cd ${.CURDIR}/isdn; ${MAKE} install
279.endif
280.if !defined(NO_SENDMAIL)
281	cd ${.CURDIR}/sendmail; ${MAKE} obj
282	cd ${.CURDIR}/sendmail; ${MAKE} distribution
283.endif
284.for dir in ${DIRS}
285.if exists(${.CURDIR}/../${dir}/Makefile.etc)
286	cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc obj
287	cd ${.CURDIR}/../${dir}; ${MAKE} -f Makefile.etc install
288.endif
289.endfor
290	mkdir -p ${DESTDIR}/dev
291	cd ${.CURDIR}/root; \
292	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
293		dot.cshrc ${DESTDIR}/root/.cshrc; \
294	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
295		dot.klogin ${DESTDIR}/root/.klogin; \
296	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
297		dot.login ${DESTDIR}/root/.login; \
298	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
299		dot.profile ${DESTDIR}/root/.profile; \
300	    rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
301	    ${LN} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
302	    ${LN} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
303	cd ${.CURDIR}/mtree; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
304	    ${MTREE} ${DESTDIR}/etc/mtree
305	cd ${.CURDIR}/ppp; ${INSTALL} -o root -g ${BINGRP} -m 600 \
306	    ${PPPCNF} ${DESTDIR}/etc/ppp
307	cd ${.CURDIR}/mail; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
308	    ${ETCMAIL} ${DESTDIR}/etc/mail
309	@if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
310	      ! -f ${DESTDIR}/etc/aliases ]; then \
311		set -x; \
312		${LN} -s mail/aliases ${DESTDIR}/etc/aliases; \
313	fi
314	${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
315	    ${DESTDIR}/etc/dumpdates
316	${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
317	    ${DESTDIR}/var/db/locate.database
318	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
319	    ${DESTDIR}/var/log/auth.log
320	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
321	    ${DESTDIR}/var/log/cron
322	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
323	    ${DESTDIR}/var/log/daemon
324	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
325	    ${DESTDIR}/var/log/lpd-errs
326	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
327	    ${DESTDIR}/var/log/maillog
328	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
329	    ${DESTDIR}/var/log/lastlog
330	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
331	    ${DESTDIR}/var/log/lastlogx
332	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
333	    ${DESTDIR}/var/log/messages
334	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
335	    ${DESTDIR}/var/log/security
336	${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
337	    ${DESTDIR}/var/log/slip.log
338	${INSTALL} -o ${BINOWN} -g network -m 640 /dev/null \
339	    ${DESTDIR}/var/log/ppp.log
340	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
341	    ${DESTDIR}/var/log/wtmp
342	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
343	    ${DESTDIR}/var/log/wtmpx
344	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
345	    ${DESTDIR}/var/run/utmp
346	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
347	    ${DESTDIR}/var/run/utmpx
348	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
349	    ${DESTDIR}/var/crash
350	cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
351	    ${FREEBSD} ${DESTDIR}/
352	${LN} -s "../dev/video/bktr/ioctl_bt848.h" ${DESTDIR}/usr/include/machine/ioctl_bt848.h
353	${LN} -s "../dev/video/meteor/ioctl_meteor.h" ${DESTDIR}/usr/include/machine/ioctl_meteor.h
354.if !defined(NOMAN)
355	cd ${.CURDIR}/../share/man; ${MAKE} makedb
356.endif
357
358distrib-dirs:
359	-set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.deprecated`; \
360	while [ $$# -gt 0 ] ; \
361	do \
362		for dir in /usr/share/locale \
363			   /usr/share/nls \
364			   /usr/local/share/nls; \
365		do \
366			test -d ${DESTDIR}/$${dir} && cd ${DESTDIR}/$${dir}; \
367			test -L "$$2" && rm -rf "$$2"; \
368			test \! -L "$$1" && test -d "$$1" && mv "$$1" "$$2"; \
369		done; \
370		shift; shift; \
371	done
372	mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
373	mtree -deU -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
374	mtree -deU -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
375	mtree -deU -f ${.CURDIR}/mtree/BSD.include.dist \
376		-p ${DESTDIR}/usr/include
377.if !defined(NO_SENDMAIL)
378	mtree -deU -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
379.endif
380	cd ${DESTDIR}/; test -e sys || (rm -f sys;  ${LN} -s usr/src/sys sys)
381	cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ${LN} -sf ../man* .
382	cd ${DESTDIR}/usr/share/man; \
383	set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
384	while [ $$# -gt 0 ] ; \
385	do \
386		rm -rf "$$1"; \
387		${LN} -s "$$2" "$$1"; \
388		shift; shift; \
389	done
390	cd ${DESTDIR}/usr/share/locale; \
391	set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \
392	while [ $$# -gt 0 ] ; \
393	do \
394		rm -rf "$$1"; \
395		${LN} -s "$$2" "$$1"; \
396		shift; shift; \
397	done
398	cd ${DESTDIR}/usr/share/openssl/man/en.ISO8859-1; ${LN} -sf ../man* .
399	cd ${DESTDIR}/usr/share/nls; \
400	set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
401	while [ $$# -gt 0 ] ; \
402	do \
403		rm -rf "$$1"; \
404		${LN} -s "$$2" "$$1"; \
405		shift; shift; \
406	done
407
408etc-examples:
409	cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
410	    ${BINUPDATE} ${BIN1} ${BIN2} nsmb.conf opieaccess \
411	    ${DESTDIR}/usr/share/examples/etc
412	cd ${.CURDIR}/defaults; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
413	    ${DEFAULTS} ${DESTDIR}/usr/share/examples/etc/defaults
414
415.include <bsd.prog.mk>
416