Blame subr/pkg_configure_patch_pre.subr

Lucio Andrés Illanes Albornoz (arab, vxp) 570129
#
Lucio Andrés Illanes Albornoz e1d469
# set +o errexit -o noglob -o nounset is assumed.
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
#
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
Lucio Andrés Illanes Albornoz 2b85d0
pkgp_configure_patch_pre() {
Lucio Andrés Illanes Albornoz 907bd3
	local _patch_path="";
Lucio Andrés Illanes Albornoz 2b85d0
	for _patch_path in \
Lucio Andrés Illanes Albornoz 2b85d0
			"${MIDIPIX_BUILD_PWD}/patches/${PKG_NAME}${PKG_VERSION:+-${PKG_VERSION}}_pre.local.patch"		\
Lucio Andrés Illanes Albornoz 2b85d0
			"${MIDIPIX_BUILD_PWD}/patches/${PKG_NAME}${PKG_VERSION:+-${PKG_VERSION}}_pre.local@${BUILD_HNAME}.patch"; do
Lucio Andrés Illanes Albornoz bf9edf
		if [ -r "${_patch_path}" ]\
Lucio Andrés Illanes Albornoz bf9edf
		&& ! patch -b -d "${PKG_BASE_DIR}/${PKG_SUBDIR}" -p1 < "${_patch_path}"; then
Lucio Andrés Illanes Albornoz bf9edf
			return 1;
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
		fi;
Lucio Andrés Illanes Albornoz (arab, vxp) 802215
	done;
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
};
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
Lucio Andrés Illanes Albornoz 2b85d0
pkgp_configure_patch_pre_chainport() {
Lucio Andrés Illanes Albornoz e1d469
	local _chainport_patch_dname="" _chainport_patch_fname="" _oldpwd="";
Lucio Andrés Illanes Albornoz e1d469
	_chainport_patch_dname="${PKG_BASE_DIR}/${PKG_SUBDIR}/patches/${PKG_NAME%%_*}";
Lucio Andrés Illanes Albornoz e1d469
	if [ -n "${PKG_VERSION:-}" ]; then
Lucio Andrés Illanes Albornoz e1d469
		_chainport_patch_fname="${BUILD_WORKDIR}/chainport/patches/${PKG_NAME%%_*}/${PKG_NAME%%_*}-${PKG_VERSION}.midipix.patch";
Lucio Andrés Illanes Albornoz e1d469
	fi;
Lucio Andrés Illanes Albornoz 2b85d0
	if [ -e "${_chainport_patch_fname}" ]; then
Lucio Andrés Illanes Albornoz bf9edf
		if ! rtl_fileop mkdir "${_chainport_patch_dname}"\
Lucio Andrés Illanes Albornoz bf9edf
		|| ! rtl_fileop cp "${_chainport_patch_fname}" "${_chainport_patch_dname}"; then
Lucio Andrés Illanes Albornoz bf9edf
			return 1;
Lucio Andrés Illanes Albornoz bf9edf
		fi;
Lucio Andrés Illanes Albornoz 2b85d0
	fi;
Lucio Andrés Illanes Albornoz 2b85d0
};
Lucio Andrés Illanes Albornoz 2b85d0
Lucio Andrés Illanes Albornoz 2b85d0
pkg_configure_patch_pre() {
Lucio Andrés Illanes Albornoz 2b85d0
	if ! pkgp_configure_patch_pre_chainport\
Lucio Andrés Illanes Albornoz 2b85d0
	|| ! pkgp_configure_patch_pre; then
Lucio Andrés Illanes Albornoz 2b85d0
		return 1;
Lucio Andrés Illanes Albornoz 2b85d0
	fi;
Lucio Andrés Illanes Albornoz 2b85d0
};
Lucio Andrés Illanes Albornoz 2b85d0
Lucio Andrés Illanes Albornoz (arab, vxp) 570129
# vim:filetype=sh