sets.subr revision 1.33
11.33Sjmc#	$NetBSD: sets.subr,v 1.33 2004/06/13 22:35:02 jmc Exp $
21.1Sdyoung#
31.9Slukem
41.9Slukem#
51.11Slukem# The following variables contain defaults for sets.subr functions and callers:
61.9Slukem#	setsdir			path to src/distrib/sets
71.9Slukem#	nlists			list of base sets
81.9Slukem#	xlists			list of x11 sets
91.9Slukem#	obsolete		controls if obsolete files are selected instead
101.9Slukem#	lkm			if != "no", enable LKM sets
111.9Slukem#	shlib			shared library format (a.out, elf, or "")
121.9Slukem#	stlib			static library format (a.out, elf)
131.20Slukem#	x11_version		version of XFree86. one of:
141.20Slukem#				   ""	cross built from src/x11
151.20Slukem#				   3	XFree86 3.x from xsrc/xc
161.20Slukem#				   4	XFree86 4.x from xsrc/xfree/xc
171.11Slukem#
181.11Slukem# The following <bsd.own.mk> variables are exported to the environment:
191.11Slukem#	MACHINE	
201.11Slukem#	MACHINE_ARCH
211.11Slukem#	MACHINE_CPU
221.11Slukem#	HAVE_GCC3
231.11Slukem#	TOOLCHAIN_MISSING
241.11Slukem#	OBJECT_FMT
251.22Slukem# as well as:
261.22Slukem#
271.22SlukemMKVARS="\
281.22Slukem	MKBFD		\
291.22Slukem	MKCATPAGES	\
301.22Slukem	MKCRYPTO	\
311.22Slukem	MKCRYPTO_IDEA	\
321.22Slukem	MKCRYPTO_MDC2	\
331.22Slukem	MKCRYPTO_RC5	\
341.22Slukem	MKCVS		\
351.23Slukem	MKDOC		\
361.32Sscw	MKGDB		\
371.22Slukem	MKHESIOD	\
381.23Slukem	MKINFO		\
391.22Slukem	MKKERBEROS	\
401.22Slukem	MKKERBEROS4	\
411.22Slukem	MKLINT		\
421.22Slukem	MKMAN		\
431.33Sjmc	MKMANPAGES	\
441.22Slukem	MKMANZ		\
451.23Slukem	MKNLS		\
461.30Smatt	MKPIC		\
471.22Slukem	MKPOSTFIX	\
481.22Slukem	MKPROFILE	\
491.22Slukem	MKSENDMAIL	\
501.24Slukem	MKSHARE		\
511.22Slukem	MKSKEY		\
521.25Slukem	MKUUCP		\
531.22Slukem	MKYP		\
541.22Slukem"
551.12Slukem
561.9SlukemoIFS=$IFS
571.9SlukemIFS="
581.9Slukem"
591.9Slukemfor x in $(
601.12Slukem${MAKE:-make} -B -f- all <<EOMAKE
611.9Slukem.include <bsd.own.mk>
621.33Sjmc.if (\${MKMAN} == "no" || empty(MANINSTALL:Mmaninstall))
631.33SjmcMKMANPAGES=no
641.33Sjmc.else
651.33SjmcMKMANPAGES=yes
661.33Sjmc.endif
671.9Slukemall:
681.11Slukem.for i in MACHINE MACHINE_ARCH MACHINE_CPU \
691.11Slukem		HAVE_GCC3 OBJECT_FMT TOOLCHAIN_MISSING \
701.12Slukem		${MKVARS}
711.12Slukem	@echo "export \$i=\${\$i}"
721.11Slukem.endfor
731.20Slukem.if (\${MKX11:Uno} != "no")
741.20Slukem	@echo x11_version=""
751.20Slukem.elif (\${USE_XF86_4:Uno} != "no")
761.9Slukem	@echo x11_version=4
771.9Slukem.else
781.9Slukem	@echo x11_version=3
791.9Slukem.endif
801.9Slukem
811.12SlukemEOMAKE
821.9Slukem); do
831.11Slukem#	echo 1>&2 "DEBUG: read $x"
841.9Slukem	eval $x
851.9Slukemdone
861.9SlukemIFS=$oIFS
871.9Slukem
881.9Slukemsetsdir=$(dirname $0)
891.9Slukemnlists="base comp etc games man misc text"
901.9Slukemcase $x11_version in
911.20Slukem3)	xlists="xbase3 xcomp3 xcontrib3 xfont3 xmisc3 xserver3" ;;
921.20Slukem4)	xlists="xbase4 xcomp4 xcontrib4 xfont4 xmisc4 xserver4" ;;
931.28Slukem"")	xlists="xbase xcomp xetc xfont xserver" ;;
941.20Slukem*)	xlists="" ;;	# unknown!
951.9Slukemesac
961.9Slukemobsolete=0
971.9Slukemlkm=yes
981.11Slukemif [ "${MACHINE}" = "evbppc" ]; then
991.9Slukem	lkm=no				# Turn off LKMs for some ports.
1001.9Slukemfi
1011.31Sjmc# Determine lib type. Do this first so stlib also gets set.
1021.31Sjmcif [ "${OBJECT_FMT}" = "ELF" ]; then
1031.9Slukem	shlib=elf
1041.9Slukemelse
1051.9Slukem	shlib=aout
1061.9Slukemfi
1071.9Slukemstlib=$shlib
1081.31Sjmc# Now check for MKPIC or specials and turn off shlib if need be.
1091.31Sjmcif [ "${MKPIC}" = "no" ]; then
1101.31Sjmc	shlib=no
1111.31Sjmcfi
1121.29Suweif [ "${MACHINE_ARCH}" = "m68000" ]; then
1131.9Slukem	shlib=no			# Turn off shlibs for some ports.
1141.9Slukemfi
1151.9Slukem
1161.9Slukem#
1171.9Slukem# list_set_files setfile [...]
1181.1Sdyoung# 
1191.9Slukem# Produce a packing list for setfile(s).
1201.9Slukem# In each file, a record consists of a path and a System Package name,
1211.9Slukem# separated by whitespace. E.g.,
1221.9Slukem#
1231.33Sjmc# 	# $NetBSD: sets.subr,v 1.33 2004/06/13 22:35:02 jmc Exp $
1241.9Slukem# 	.			base-sys-root	[keyword[,...]]
1251.9Slukem# 	./altroot		base-sys-root
1261.9Slukem# 	./bin			base-sys-root
1271.9Slukem# 	./bin/[			base-util-root
1281.9Slukem# 	./bin/cat		base-util-root
1291.9Slukem#		[...]
1301.9Slukem#
1311.9Slukem# A # in the first column marks a comment.
1321.9Slukem#
1331.9Slukem# If ${obsolete} != 0, only entries with an "obsolete" keyword will
1341.9Slukem# be printed.
1351.9Slukem#
1361.9Slukem# The third field is an optional comma separated list of keywords to
1371.9Slukem# control if a record is printed; every keyword listed must be enabled
1381.9Slukem# for the record to be printed.  The following keywords are available:
1391.9Slukem#	dummy			dummy entry (ignored)
1401.13Slukem#	obsolete		file is obsolete, and only printed if 
1411.13Slukem#				${obsolete} != 0
1421.13Slukem#
1431.22Slukem#	bfd			${MKBFD} != no
1441.22Slukem#	catpages		${MKCATPAGES} != no
1451.22Slukem#	crypto			${MKCRYPTO} != no
1461.22Slukem#	crypto_idea		${MKCRYPTO_IDEA} != no
1471.22Slukem#	crypto_mdc2		${MKCRYPTO_MDC2} != no
1481.22Slukem#	crypto_rc5		${MKCRYPTO_RC5} != no
1491.22Slukem#	cvs			${MKCVS} != no
1501.23Slukem#	doc			${MKDOC} != no
1511.32Sscw#	gdb			${MKGDB} != no
1521.22Slukem#	hesiod			${MKHESIOD} != no
1531.23Slukem#	info			${MKINFO} != no
1541.22Slukem#	kerberos		${MKKERBEROS} != no
1551.22Slukem#	kerberos4		${MKKERBEROS4} != no
1561.22Slukem#	lint			${MKLINT} != no
1571.22Slukem#	man			${MKMAN} != no
1581.22Slukem#	manz			${MKMANZ} != no
1591.23Slukem#	nls			${MKNLS} != no
1601.22Slukem#	postfix			${MKPOSTFIX} != no
1611.22Slukem#	profile			${MKPROFILE} != no
1621.22Slukem#	sendmail		${MKSENDMAIL} != no
1631.24Slukem#	share			${MKSHARE} != no
1641.22Slukem#	skey			${MKSKEY} != no
1651.25Slukem#	uucp			${MKUUCP} != no
1661.22Slukem#	yp			${MKYP} != no
1671.22Slukem#
1681.22Slukem#	.cat			if ${MKMANZ} != "no" && ${MKCATPAGES} != "no"
1691.22Slukem#				  automatically append ".gz" to the filename
1701.22Slukem#
1711.22Slukem#	.man			if ${MKMANZ} != "no" && ${MKMAN} != "no"
1721.22Slukem#				  automatically append ".gz" to the filename
1731.1Sdyoung#
1741.8Slukemlist_set_files()
1751.8Slukem{
1761.1Sdyoung	for setname; do
1771.1Sdyoung		list_set_lists $setname
1781.9Slukem	done | xargs cat | \
1791.11Slukem	awk -v obsolete=${obsolete} '
1801.9Slukem		BEGIN {
1811.9Slukem			if (! obsolete) {
1821.12Slukem				split("'"${MKVARS}"'", needvars)
1831.9Slukem				for (vi in needvars) {
1841.9Slukem					nv = needvars[vi]
1851.12Slukem					kw = tolower(substr(nv, 3))
1861.12Slukem					if (ENVIRON[nv] != "no")
1871.12Slukem						wanted[kw] = 1 
1881.9Slukem				}
1891.33Sjmc				if (("man" in wanted) && ("catpages" in wanted))
1901.22Slukem					wanted[".cat"] = 1
1911.33Sjmc				if (("man" in wanted) && ("manpages" in wanted))
1921.22Slukem					wanted[".man"] = 1
1931.9Slukem			}
1941.9Slukem		}
1951.9Slukem
1961.9Slukem		/^#/ {
1971.9Slukem			next;
1981.9Slukem		}
1991.9Slukem
2001.9Slukem		NF > 2 && $3 != "-" {
2011.9Slukem			split($3, keywords, ",")
2021.9Slukem			show = 1
2031.9Slukem			for (ki in keywords) {
2041.9Slukem				kw = keywords[ki]
2051.9Slukem				if (kw == "obsolete") {
2061.9Slukem					if (obsolete)
2071.9Slukem						print
2081.9Slukem					next
2091.9Slukem				}
2101.22Slukem				if (("manz" in wanted) &&
2111.22Slukem				    (kw == ".cat" || kw == ".man"))
2121.22Slukem					$1 = $1 ".gz"
2131.9Slukem				if (! (kw in wanted))
2141.9Slukem					show = 0
2151.9Slukem			}
2161.9Slukem			if (show)
2171.9Slukem				print
2181.9Slukem			next
2191.9Slukem		}
2201.9Slukem
2211.9Slukem		{
2221.9Slukem			if (! obsolete)
2231.9Slukem				print
2241.9Slukem		}'
2251.9Slukem
2261.1Sdyoung}
2271.1Sdyoung
2281.1Sdyoung#
2291.1Sdyoung# list_set_lists setname
2301.1Sdyoung# 
2311.1Sdyoung# Print to stdout a list of files, one filename per line, which
2321.1Sdyoung# concatenate to create the packing list for setname. E.g.,
2331.1Sdyoung#
2341.1Sdyoung# 	.../lists/base/mi
2351.1Sdyoung# 	.../lists/base/rescue.mi
2361.1Sdyoung# 	.../lists/base/md.i386
2371.9Slukem#		[...]
2381.1Sdyoung#
2391.9Slukem# For a given setname $set, the following files may be selected from
2401.9Slukem# .../list/$set:
2411.9Slukem#	mi
2421.11Slukem#	ad.${MACHINE_ARCH}
2431.11Slukem# (or)	ad.${MACHINE_CPU}
2441.11Slukem#	ad.${MACHINE_CPU}.shl
2451.11Slukem#	md.${MACHINE}.${MACHINE_ARCH}
2461.11Slukem# (or)	md.${MACHINE}
2471.9Slukem#	stl.mi
2481.9Slukem#	stl.stlib
2491.9Slukem#	shl.mi
2501.9Slukem#	shl.shlib
2511.9Slukem#	lkm.mi			if ${lkm} != no
2521.9Slukem#	gcc.mi
2531.9Slukem#	gcc.shl
2541.9Slukem#	tc.mi
2551.9Slukem#	tc.shl
2561.9Slukem#	rescue.shl
2571.11Slukem#	rescue.${MACHINE}
2581.11Slukem#	rescue.ad.${MACHINE_ARCH}
2591.11Slukem# (or)	rescue.ad.${MACHINE_CPU}
2601.11Slukem# 	rescue.ad.${MACHINE_CPU}.shl
2611.1Sdyoung#
2621.9Slukem# Environment:
2631.1Sdyoung# 	shlib
2641.1Sdyoung# 	stlib
2651.1Sdyoung#
2661.8Slukemlist_set_lists()
2671.8Slukem{
2681.1Sdyoung	setname=$1
2691.1Sdyoung
2701.9Slukem	setdir=$setsdir/lists/$setname
2711.9Slukem	echo $setdir/mi
2721.11Slukem	if [ "${MACHINE}" != "${MACHINE_ARCH}" ]; then
2731.11Slukem		# Prefer an ad.${MACHINE_ARCH} over an ad.${MACHINE_CPU},
2741.1Sdyoung		# since the arch-specific one will be more specific than
2751.1Sdyoung		# the cpu-specific one.
2761.11Slukem		if [ -f $setdir/ad.${MACHINE_ARCH} ]; then
2771.11Slukem			echo $setdir/ad.${MACHINE_ARCH}
2781.11Slukem		elif [ -f $setdir/ad.${MACHINE_CPU} ]; then
2791.11Slukem			echo $setdir/ad.${MACHINE_CPU}
2801.1Sdyoung		fi
2811.1Sdyoung		if [ "$shlib" != "no" -a \
2821.11Slukem		     -f $setdir/ad.${MACHINE_CPU}.shl ]; then
2831.11Slukem			echo $setdir/ad.${MACHINE_CPU}.shl
2841.1Sdyoung		fi
2851.1Sdyoung	fi
2861.11Slukem	if [ -f $setdir/md.${MACHINE}.${MACHINE_ARCH} ]; then
2871.11Slukem		echo $setdir/md.${MACHINE}.${MACHINE_ARCH}
2881.11Slukem	elif [ -f $setdir/md.${MACHINE} ]; then
2891.11Slukem		echo $setdir/md.${MACHINE}
2901.1Sdyoung	fi
2911.9Slukem	if [ -f $setdir/stl.mi ]; then
2921.9Slukem		echo $setdir/stl.mi
2931.1Sdyoung	fi
2941.9Slukem	if [ -f $setdir/stl.${stlib} ]; then
2951.9Slukem		echo $setdir/stl.${stlib}
2961.1Sdyoung	fi
2971.1Sdyoung	if [ "$shlib" != "no" ]; then
2981.9Slukem		if [ -f $setdir/shl.mi ]; then
2991.9Slukem			echo $setdir/shl.mi
3001.7Sdyoung		fi
3011.9Slukem		if [ -f $setdir/shl.${shlib} ]; then
3021.9Slukem			echo $setdir/shl.${shlib}
3031.7Sdyoung		fi
3041.1Sdyoung	fi
3051.1Sdyoung	if [ "$lkm" != "no" ]; then
3061.9Slukem		if [ -f $setdir/lkm.mi ]; then
3071.9Slukem			echo $setdir/lkm.mi
3081.1Sdyoung		fi
3091.1Sdyoung	fi
3101.11Slukem	if [ "${TOOLCHAIN_MISSING}" != "yes" ]; then
3111.11Slukem		if [ "${HAVE_GCC3}" = "yes" ]; then
3121.9Slukem			if [ -f $setdir/gcc.mi ]; then
3131.9Slukem				echo $setdir/gcc.mi
3141.2Smrg			fi
3151.2Smrg			if [ "$shlib" != "no" ]; then
3161.9Slukem				if [ -f $setdir/gcc.shl ]; then
3171.9Slukem					echo $setdir/gcc.shl
3181.2Smrg				fi
3191.2Smrg			fi
3201.2Smrg		else
3211.9Slukem			if [ -f $setdir/tc.mi ]; then
3221.9Slukem				echo $setdir/tc.mi
3231.2Smrg			fi
3241.2Smrg			if [ "$shlib" != "no" ]; then
3251.9Slukem				if [ -f $setdir/tc.shl ]; then
3261.9Slukem					echo $setdir/tc.shl
3271.2Smrg				fi
3281.1Sdyoung			fi
3291.1Sdyoung		fi
3301.1Sdyoung	fi
3311.1Sdyoung
3321.9Slukem	if [ -f $setdir/rescue.mi ]; then
3331.9Slukem		echo $setdir/rescue.mi
3341.1Sdyoung	fi
3351.11Slukem	if [ -f $setdir/rescue.${MACHINE} ]; then
3361.11Slukem		echo $setdir/rescue.${MACHINE}
3371.1Sdyoung	fi
3381.11Slukem	if [ "${MACHINE}" != "${MACHINE_ARCH}" ]; then
3391.11Slukem		# Prefer a rescue.ad.${MACHINE_ARCH} over a
3401.11Slukem		# rescue.ad.${MACHINE_CPU}, since the arch-
3411.1Sdyoung		# specific one will be more specific than the
3421.1Sdyoung		# cpu-specific one.
3431.11Slukem		if [ -f $setdir/rescue.ad.${MACHINE_ARCH} ]; then
3441.11Slukem			echo $setdir/rescue.ad.${MACHINE_ARCH}
3451.11Slukem		elif [ -f $setdir/rescue.ad.${MACHINE_CPU} ]; then
3461.11Slukem			echo $setdir/rescue.ad.${MACHINE_CPU}
3471.1Sdyoung		fi
3481.10Sjmc		if [ "$shlib" != "no" -a \
3491.11Slukem		     -f $setdir/rescue.ad.${MACHINE_CPU}.shl ]; then
3501.11Slukem			echo $setdir/rescue.ad.${MACHINE_CPU}.shl
3511.10Sjmc		fi
3521.1Sdyoung	fi
3531.5Sdyoung}
3541.5Sdyoung
3551.9Slukem# arch_to_cpu mach
3561.9Slukem#
3571.11Slukem# Print the ${MACHINE_CPU} for ${MACHINE_ARCH}=mach,
3581.9Slukem# as determined by <bsd.own.mk>.
3591.9Slukem#
3601.8Slukemarch_to_cpu()
3611.8Slukem{
3621.12Slukem	MACHINE_ARCH=${1} ${MAKE:-make} -f- all <<EOMAKE
3631.5Sdyoung.include <bsd.own.mk>
3641.5Sdyoungall:
3651.5Sdyoung	@echo \${MACHINE_CPU}
3661.12SlukemEOMAKE
3671.1Sdyoung}
368