# $Id$ SDEPEND="${SDEPEND} >= dev-lang/yasm-1.3" # multilib honor mechanizm mget-yasm-arch-tuple() { case ${ARCH} in i*86) echo "x86-linux-gcc" ;; x86_64) if [[ ${MULTILIB_BUILD} = true ]] then case ${ABI} in m32) echo "x86-linux-gcc" ;; m64) echo "x86_64-linux-gcc" ;; esac else echo "x86_64-linux-gcc" fi ;; esac } # deprecated and will be dropped in near future yasm_arch_tuple() { echo -e "${COLYELLOW}Warning: yasm_arch_tuple() is depcrecated, please use mget-yasm-arch-tuple() instead${COLDEFAULT}" >&2 mget-yasm-arch-tuple }