summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_configure_autotools.subr
blob: dbad6a309bd84a28a4eb4d2676ca1b727bd68463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# set -o errexit -o noglob are assumed.
#

pkg_configure_autotools() {
	local _script_fname _subdir_tgt;
	if [ -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/configure" -o						\
	     -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/configure.ac" -o						\
	     -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/configure.in" -o						\
	     -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/config.guess" ]; then
		if [ -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/configure.ac" ]\
		&& [ ! -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/configure" ]; then
			for _script_fname in bootstrap bootstrap.sh autogen.sh ""; do
				if [ -z "${_script_fname}" ]; then
					(build_fileop cd "${PKG_BASE_DIR}/${PKG_SUBDIR}" && autoconf)\
						|| exit 1 && break;
				elif [ -e "${PKG_BASE_DIR}/${PKG_SUBDIR}/${_script_fname}" ]; then
					for _subdir_tgt in "${PKG_BASE_DIR}/${PKG_SUBDIR}/build-aux" "${PKG_BASE_DIR}/${PKG_SUBDIR}"; do
						if [ -e "${_subdir_tgt}" ]; then
							echo install -m 0700				\
								"${MIDIPIX_BUILD_PWD}/etc/config.sub"	\
								"${_subdir_tgt}/config.sub";
							install -m 0700					\
								"${MIDIPIX_BUILD_PWD}/etc/config.sub"	\
								"${_subdir_tgt}/config.sub";
							break;
						fi;
					done;
					(build_fileop cd "${PKG_BASE_DIR}/${PKG_SUBDIR}" &&		\
						"${SHELL}" "${_script_fname}") || exit 1 && break;
				fi;
			done;
		fi;
		find "${PKG_BASE_DIR}/${PKG_SUBDIR}" -name config.sub					\
			-exec echo mv -- {} {}.orig \;							\
			-exec mv -- {} {}.orig \;							\
			-exec echo install -m 0700 "${MIDIPIX_BUILD_PWD}/etc/config.sub" {} \;		\
			-exec install -m 0700 "${MIDIPIX_BUILD_PWD}/etc/config.sub" {} \;;
		if [ "${PKG_BUILD_TYPE}" != host ]; then
			build_fileop cp "${MIDIPIX_BUILD_PWD}/etc/config.cache" "${PKG_BUILD_DIR}/";
		fi;
	fi;
};

# vim:filetype=sh