# opkhelper # lib/buildsystem/autoconf # Build system plugin for GNU Autoconf. # # Copyright (C) 2012 Patrick "P. J." McDermott # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . [ -n "${_OH_BUILDSYSTEM_AUTOCONF_SM}" ] && return 0 _OH_BUILDSYSTEM_AUTOCONF_SM='true' _oh_autoconf_can_configure() { [ -x "${_OH_BUILDSYSTEM_SOURCE_DIR}/configure" ] } _oh_autoconf_configure() { _oh_local _ohbsbac_arch_opts _ohbsbac_libdir _ohbsbac_rc mkdir -p "${_OH_BUILDSYSTEM_BUILD_DIR}" cd "${_OH_BUILDSYSTEM_BUILD_DIR}" _ohbsbac_arch_opts=" --build=$(oh_buildsystem_arch "${OPK_BUILD_ARCH}" 'autoconf') " if [ "${OPK_BUILD_ARCH}" != "${OPK_HOST_ARCH}" ]; then _ohbsbac_arch_opts="${_ohbsbac_arch_opts} --host=$(oh_buildsystem_arch \ "${OPK_HOST_ARCH}" 'autoconf')" fi if [ -n "${_OH_BUILDSYSTEM_TARGET_ARCH}" ]; then _ohbsbac_arch_opts="${_ohbsbac_arch_opts} --target=$(oh_buildsystem_arch \ "${_OH_BUILDSYSTEM_TARGET_ARCH}" 'autoconf')" fi if [ '@@MULTIARCH_LIBDIR@@' = 'true' ]; then _ohbsbac_libdir='${prefix}/lib/'"${OPK_HOST_ARCH}" else _ohbsbac_libdir='${prefix}/lib/' fi "${_OH_BUILDSYSTEM_SOURCE_DIR}/configure" \ --prefix='/usr' \ --bindir='${prefix}/bin' \ --sbindir='${prefix}/sbin' \ --libexecdir="${_ohbsbac_libdir}" \ --sysconfdir='/etc' \ --localstatedir='/var' \ --libdir="${_ohbsbac_libdir}" \ --includedir='${prefix}/include' \ --infodir='${prefix}/share/info' \ --mandir='${prefix}/share/man' \ ${_ohbsbac_arch_opts} \ --disable-maintainer-mode \ --disable-dependency-tracking \ "${@}" _ohbsbac_rc=${?} cd "${_OH_BUILDSYSTEM_WORK_AREA}" _oh_return ${_ohbsbac_rc} return ${?} } _oh_autoconf_can_build() { return 1 } _oh_autoconf_can_clean() { return 1 } _oh_autoconf_can_test() { return 1 } _oh_autoconf_can_install() { return 1 } _oh_autoconf_testarch() { # TODO: This should call config.sub, which may be in src or src/conftools # (or elsewhere?). return 0 }