declare -x ABI="amd64" declare -x ABI_MIPS="" declare -x ABI_PPC="" declare -x ABI_S390="" declare -x ABI_X86="64" declare -a ALL_AUTOTOOLS_MACROS=([0]="AC_PROG_LIBTOOL" [1]="AM_PROG_LIBTOOL" [2]="LT_INIT" [3]="LT_CONFIG_LTDL_DIR" [4]="AC_CONFIG_HEADERS" [5]="AC_CONFIG_HEADER" [6]="AM_CONFIG_HEADERS" [7]="AM_CONFIG_HEADER" [8]="AC_CONFIG_SUBDIRS" [9]="AC_CONFIG_AUX_DIR" [10]="AC_CONFIG_MACRO_DIR" [11]="AM_INIT_AUTOMAKE" [12]="AM_GLIB_GNU_GETTEXT" [13]="AM_GNU_GETTEXT_VERSION" [14]="AM_GNU_GETTEXT_REQUIRE_VERSION" [15]="AC_PROG_INTLTOOL" [16]="IT_PROG_INTLTOOL" [17]="GTK_DOC_CHECK" [18]="GNOME_DOC_INIT") declare -x ALSA_CARDS="" declare -x APACHE2_MODULES="" declare -x APACHE2_MPMS="" declare -x AR="x86_64-pc-linux-gnu-ar" declare -x ARCH="amd64" declare -- AT_M4DIR="" declare -- AT_SYS_M4DIR="" declare -- AUTOTOOLS_AUTO_DEPEND="yes" declare -- AUTOTOOLS_DEPEND="!=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4" declare -- BDB_PKGS=" sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 sys-libs/db:4.4" declare -- BDB_SLOTS="5.3 5.1 4.8 4.7 4.6 4.5 4.4" declare BDEPEND="" declare -- BIS_P="rfc2307bis.schema-20140524" declare -- BIS_PN="rfc2307bis.schema" declare -- BIS_PV="20140524" declare -x BOOTSTRAP_USE="cxx unicode internal-glib split-usr python_targets_python3_6 python_targets_python2_7 multilib hardened pic xtpax -jit -orc" declare -x CALLIGRA_EXPERIMENTAL_FEATURES="" declare -x CALLIGRA_FEATURES="" declare -x CAMERAS="" declare -x CBUILD="x86_64-pc-linux-gnu" declare -x CC="x86_64-pc-linux-gnu-gcc" declare -- CDEPEND=" ssl? ( !gnutls? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gnutls? ( >=net-libs/gnutls-2.12.23-r6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=dev-libs/libgcrypt-1.5.3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) sasl? ( dev-libs/cyrus-sasl:= ) !minimal? ( sys-devel/libtool sys-libs/e2fsprogs-libs >=dev-db/lmdb-0.9.18:= tcpd? ( sys-apps/tcp-wrappers ) odbc? ( !iodbc? ( dev-db/unixODBC ) iodbc? ( dev-db/libiodbc ) ) slp? ( net-libs/openslp ) perl? ( dev-lang/perl:=[-build(-)] ) samba? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) berkdb? ( /dev/null) == "declare -a"* ]]; then [[ ${#PATCHES[@]} -gt 0 ]] && eapply "${PATCHES[@]}"; else if [[ -n ${PATCHES} ]]; then eapply ${PATCHES}; fi; fi; eapply_user } _assert_pkg_ebuild_phase () { case ${EBUILD_PHASE} in setup | preinst | postinst) ;; *) eerror "'$1()' called from '${EBUILD_PHASE}' phase which is not OK:"; eerror "You may only call from pkg_{setup,preinst,postinst} functions."; eerror "Package fails at QA and at life. Please file a bug."; die "Bad package! $1 is only for use in some pkg_* functions!" ;; esac } _at_uses_autoheader () { _at_uses_pkg A{C,M}_CONFIG_HEADER{S,} } _at_uses_automake () { _at_uses_pkg AM_INIT_AUTOMAKE } _at_uses_gettext () { _at_uses_pkg AM_GNU_GETTEXT_{,REQUIRE_}VERSION } _at_uses_glibgettext () { _at_uses_pkg AM_GLIB_GNU_GETTEXT } _at_uses_gnomedoc () { _at_uses_pkg GNOME_DOC_INIT } _at_uses_gtkdoc () { _at_uses_pkg GTK_DOC_CHECK } _at_uses_intltool () { _at_uses_pkg {AC,IT}_PROG_INTLTOOL } _at_uses_libltdl () { _at_uses_pkg LT_CONFIG_LTDL_DIR } _at_uses_libtool () { _at_uses_pkg A{C,M}_PROG_LIBTOOL LT_INIT } _at_uses_pkg () { if [[ -n $(autotools_check_macro "$@") ]]; then return 0; else local macro args=(); for macro in "$@"; do args+=(-e "^[[:space:]]*${macro}\>"); done; egrep -q "${args[@]}" configure.??; fi } _autotools_m4dir_include () { local x include_opts flag; [[ ${WANT_AUTOCONF} == "2.1" ]] && flag="l" || flag="I"; for x in "$@"; do case ${x} in -${flag}) ;; *) [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist"; include_opts+=" -${flag} ${x}" ;; esac; done; echo ${include_opts} } _clang_fullversion () { local ver="$1"; shift; set -- $($(tc-getCPP "$@") -E -P - <<<"__clang_major__ __clang_minor__ __clang_patchlevel__"); eval echo "$ver" } _elibtoolize () { local LIBTOOLIZE=${LIBTOOLIZE:-$(type -P glibtoolize > /dev/null && echo glibtoolize || echo libtoolize)}; if [[ $1 == "--auto-ltdl" ]]; then shift; _at_uses_libltdl && set -- "$@" --ltdl; fi; [[ -f GNUmakefile.am || -f Makefile.am ]] && set -- "$@" --automake; autotools_run_tool ${LIBTOOLIZE} "$@" } _enewgroup_next_gid () { if [[ ${egid} == *[!0-9]* ]]; then for ((egid = 101; egid <= 999; egid++)) do [[ -z $(egetent group ${egid}) ]] && break; done; fi } _epatch_draw_line () { [[ -z $1 ]] && set "$(printf "%65s" '')"; echo "${1//?/=}" } _filter-hardened () { local f; for f in "$@"; do case "${f}" in -fPIC | -fpic | -fPIE | -fpie | -Wl,pie | -pie) gcc-specs-pie || continue; if ! is-flagq -nopie && ! is-flagq -no-pie; then if test-flags -nopie > /dev/null; then append-flags -nopie; else append-flags -no-pie; fi; fi ;; -fstack-protector) gcc-specs-ssp || continue; is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector) ;; -fstack-protector-all) gcc-specs-ssp-to-all || continue; is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all) ;; -fno-strict-overflow) gcc-specs-nostrict || continue; is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow) ;; esac; done } _filter-var () { local f x var=$1 new=(); shift; for f in ${!var}; do for x in "$@"; do [[ ${f} == ${x} ]] && continue 2; done; new+=("${f}"); done; export ${var}="${new[*]}" } _gcc-install-dir () { echo "$(LC_ALL=C $(tc-getCC) -print-search-dirs 2> /dev/null | awk '$1=="install:" {print $2}')" } _gcc-specs-directive_raw () { local cc=$(tc-getCC); local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}'); ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 'BEGIN { pspec=""; spec=""; outside=1 } $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } { spec=spec $0 } END { print spec }'; return 0 } _gcc-specs-exists () { [[ -f $(_gcc-install-dir)/$1 ]] } _gcc_fullversion () { local ver="$1"; shift; set -- $($(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__"); eval echo "$ver" } _iconins () { ( insopts -m 0644; local funcname=$1; shift; local size dir; local context=apps; local theme=hicolor; while [[ $# -gt 0 ]]; do case $1 in -s | --size) if [[ ${2%%x*}x${2%%x*} == "$2" ]]; then size=${2%%x*}; else size=${2}; fi; case ${size} in 16 | 22 | 24 | 32 | 36 | 48 | 64 | 72 | 96 | 128 | 192 | 256 | 512) size=${size}x${size} ;; scalable) ;; *) eerror "${size} is an unsupported icon size!"; exit 1 ;; esac; shift 2 ;; -t | --theme) theme=${2}; shift 2 ;; -c | --context) context=${2}; shift 2 ;; *) if [[ -z ${size} ]]; then insinto /usr/share/pixmaps; else insinto /usr/share/icons/${theme}/${size}/${context}; fi; if [[ ${funcname} == doicon ]]; then if [[ -f $1 ]]; then doins "${1}"; else if [[ -d $1 ]]; then shopt -s nullglob; doins "${1}"/*.{png,svg}; shopt -u nullglob; else eerror "${1} is not a valid file/directory!"; exit 1; fi; fi; else break; fi; shift 1 ;; esac; done; if [[ ${funcname} == newicon ]]; then newins "$@"; fi ) || die } _is_flagq () { local x var="$1[*]"; for x in ${!var}; do [[ ${x} == $2 ]] && return 0; done; return 1 } _multibuild_run () { local i=1; while [[ ${!i} == _* ]]; do (( i += 1 )); done; [[ ${i} -le ${#} ]] && einfo "${v}: running ${@:${i}}"; "${@}" } _multilib_multibuild_wrapper () { debug-print-function ${FUNCNAME} "${@}"; local ABI=${MULTIBUILD_VARIANT#*.}; local -r MULTILIB_ABI_FLAG=${MULTIBUILD_VARIANT%.*}; multilib_toolchain_setup "${ABI}"; readonly ABI; "${@}" } _systemd_get_dir () { [[ ${#} -eq 2 ]] || die "Usage: ${FUNCNAME} "; local variable=${1} fallback=${2} d; if $(tc-getPKG_CONFIG) --exists systemd; then d=$($(tc-getPKG_CONFIG) --variable="${variable}" systemd) || die; d=${d#${EPREFIX}}; else d=${fallback}; fi; echo "${d}" } _systemd_get_systemgeneratordir () { _systemd_get_dir systemdsystemgeneratordir /lib/systemd/system-generators } _systemd_get_systemunitdir () { _systemd_get_dir systemdsystemunitdir /lib/systemd/system } _systemd_get_userunitdir () { _systemd_get_dir systemduserunitdir /usr/lib/systemd/user } _systemd_get_utildir () { _systemd_get_dir systemdutildir /lib/systemd } _tc-getPROG () { local tuple=$1; local v var vars=$2; local prog=($3); var=${vars%% *}; for v in ${vars}; do if [[ -n ${!v} ]]; then export ${var}="${!v}"; echo "${!v}"; return 0; fi; done; local search=; [[ -n $4 ]] && search=$(type -p $4-${prog[0]}); [[ -z ${search} && -n ${!tuple} ]] && search=$(type -p ${!tuple}-${prog[0]}); [[ -n ${search} ]] && prog[0]=${search##*/}; export ${var}="${prog[*]}"; echo "${!var}" } _ver_compare () { local va=${1} vb=${2} a an al as ar b bn bl bs br re LC_ALL=C; re="^([0-9]+(\.[0-9]+)*)([a-z]?)((_(alpha|beta|pre|rc|p)[0-9]*)*)(-r[0-9]+)?$"; [[ ${va} =~ ${re} ]] || die "${FUNCNAME}: invalid version: ${va}"; an=${BASH_REMATCH[1]}; al=${BASH_REMATCH[3]}; as=${BASH_REMATCH[4]}; ar=${BASH_REMATCH[7]}; [[ ${vb} =~ ${re} ]] || die "${FUNCNAME}: invalid version: ${vb}"; bn=${BASH_REMATCH[1]}; bl=${BASH_REMATCH[3]}; bs=${BASH_REMATCH[4]}; br=${BASH_REMATCH[7]}; _ver_compare_int "${an%%.*}" "${bn%%.*}" || return; while [[ ${an} == *.* && ${bn} == *.* ]]; do an=${an#*.}; bn=${bn#*.}; a=${an%%.*}; b=${bn%%.*}; if [[ ${a} == 0* || ${b} == 0* ]]; then [[ ${a} =~ 0+$ ]] && a=${a%"${BASH_REMATCH[0]}"}; [[ ${b} =~ 0+$ ]] && b=${b%"${BASH_REMATCH[0]}"}; [[ ${a} > ${b} ]] && return 3; [[ ${a} < ${b} ]] && return 1; else _ver_compare_int "${a}" "${b}" || return; fi; done; [[ ${an} == *.* ]] && return 3; [[ ${bn} == *.* ]] && return 1; [[ ${al} > ${bl} ]] && return 3; [[ ${al} < ${bl} ]] && return 1; as=${as#_}${as:+_}; bs=${bs#_}${bs:+_}; while [[ -n ${as} && -n ${bs} ]]; do a=${as%%_*}; b=${bs%%_*}; if [[ ${a%%[0-9]*} == "${b%%[0-9]*}" ]]; then _ver_compare_int "${a##*[a-z]}" "${b##*[a-z]}" || return; else [[ ${a%%[0-9]*} == p ]] && return 3; [[ ${b%%[0-9]*} == p ]] && return 1; [[ ${a} > ${b} ]] && return 3 || return 1; fi; as=${as#*_}; bs=${bs#*_}; done; if [[ -n ${as} ]]; then [[ ${as} == p[_0-9]* ]] && return 3 || return 1; else if [[ -n ${bs} ]]; then [[ ${bs} == p[_0-9]* ]] && return 1 || return 3; fi; fi; _ver_compare_int "${ar#-r}" "${br#-r}" || return; return 2 } _ver_compare_int () { local a=$1 b=$2 d=$(( ${#1}-${#2} )); if [[ ${d} -gt 0 ]]; then printf -v b "%0${d}d%s" 0 "${b}"; else if [[ ${d} -lt 0 ]]; then printf -v a "%0$(( -d ))d%s" 0 "${a}"; fi; fi; [[ ${a} > ${b} ]] && return 3; [[ ${a} == "${b}" ]] } _ver_parse_range () { local range=${1}; local max=${2}; [[ ${range} == [0-9]* ]] || die "${FUNCNAME}: range must start with a number"; start=${range%-*}; [[ ${range} == *-* ]] && end=${range#*-} || end=${start}; if [[ -n ${end} ]]; then [[ ${start} -le ${end} ]] || die "${FUNCNAME}: end of range must be >= start"; [[ ${end} -le ${max} ]] || end=${max}; else end=${max}; fi } _ver_split () { local v=${1} LC_ALL=C; comp=(); local s c; while [[ -n ${v} ]]; do s=${v%%[a-zA-Z0-9]*}; v=${v:${#s}}; [[ ${v} == [0-9]* ]] && c=${v%%[^0-9]*} || c=${v%%[^a-zA-Z]*}; v=${v:${#c}}; comp+=("${s}" "${c}"); done } all-flag-vars () { echo {ADA,C,CPP,CXX,CCAS,F,FC,LD}FLAGS } append-cflags () { [[ $# -eq 0 ]] && return 0; export CFLAGS+=" $*"; return 0 } append-cppflags () { [[ $# -eq 0 ]] && return 0; export CPPFLAGS+=" $*"; return 0 } append-cxxflags () { [[ $# -eq 0 ]] && return 0; export CXXFLAGS+=" $*"; return 0 } append-fflags () { [[ $# -eq 0 ]] && return 0; export FFLAGS+=" $*"; export FCFLAGS+=" $*"; return 0 } append-flags () { [[ $# -eq 0 ]] && return 0; case " $* " in *' '-[DIU]*) eqawarn 'please use append-cppflags for preprocessor flags' ;; *' '-L* | *' '-Wl,*) eqawarn 'please use append-ldflags for linker flags' ;; esac; append-cflags "$@"; append-cxxflags "$@"; append-fflags "$@"; return 0 } append-ldflags () { [[ $# -eq 0 ]] && return 0; local flag; for flag in "$@"; do [[ ${flag} == -l* ]] && eqawarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS"; done; export LDFLAGS="${LDFLAGS} $*"; return 0 } append-lfs-flags () { [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments"; append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE } append-libs () { [[ $# -eq 0 ]] && return 0; local flag; for flag in "$@"; do if [[ -z "${flag// }" ]]; then eqawarn "Appending an empty argument to LIBS is invalid! Skipping."; continue; fi; case $flag in -[lL]*) export LIBS="${LIBS} ${flag}" ;; -*) eqawarn "Appending non-library to LIBS (${flag}); Other linker flags should be passed via LDFLAGS"; export LIBS="${LIBS} ${flag}" ;; *) export LIBS="${LIBS} -l${flag}" ;; esac; done; return 0 } autotools_check_macro () { [[ -f configure.ac || -f configure.in ]] || return 0; local trace_file=".__autoconf_trace_data"; if [[ ! -e ${trace_file} ]] || [[ ! aclocal.m4 -ot ${trace_file} ]]; then WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) ${ALL_AUTOTOOLS_MACROS[@]/#/--trace=} > ${trace_file} 2> /dev/null; fi; local macro args=(); for macro in "$@"; do has ${macro} ${ALL_AUTOTOOLS_MACROS[@]} || die "internal error: add ${macro} to ALL_AUTOTOOLS_MACROS"; args+=(-e ":${macro}:"); done; grep "${args[@]}" ${trace_file} } autotools_check_macro_val () { local macro scan_out; for macro in "$@"; do autotools_check_macro "${macro}" | gawk -v macro="${macro}" '($0 !~ /^[[:space:]]*(#|dnl)/) { if (match($0, macro ":(.*)$", res)) print res[1] }' | uniq; done; return 0 } autotools_env_setup () { if [[ ${WANT_AUTOMAKE} == "latest" ]]; then local pv; for pv in ${_LATEST_AUTOMAKE[@]/#*:}; do local hv_args=""; case ${EAPI:-0} in 5 | 6) hv_args="--host-root" ;; 7) hv_args="-b" ;; esac; ROOT=/ has_version ${hv_args} "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}" && break; done; [[ ${WANT_AUTOMAKE} == "latest" ]] && die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[*]}"; fi; [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 } autotools_m4dir_include () { _autotools_m4dir_include ${AT_M4DIR} } autotools_m4sysdir_include () { local paths=($(eval echo ${AT_SYS_M4DIR})); if [[ ${#paths[@]} -eq 0 && -n ${SYSROOT} ]]; then local path="${SYSROOT}/usr/share/aclocal"; [[ -d ${path} ]] && paths+=("${path}"); fi; _autotools_m4dir_include "${paths[@]}" } autotools_run_tool () { local autofail=true m4flags=false missing_ok=false return_output=false; while [[ -n $1 ]]; do case $1 in --at-no-fail) autofail=false ;; --at-m4flags) m4flags=true ;; --at-missing) missing_ok=true ;; --at-output) return_output=true ;; *) break ;; esac; shift; done; if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase"; fi; if ${missing_ok} && ! type -P ${1} > /dev/null; then einfo "Skipping '$*' due $1 not installed"; return 0; fi; autotools_env_setup; local STDERR_TARGET="${T}/${1##*/}.out"; if [[ -e ${STDERR_TARGET} ]]; then local i=1; while :; do STDERR_TARGET="${T}/${1##*/}-${i}.out"; [[ -e ${STDERR_TARGET} ]] || break; : $(( i++ )); done; fi; if ${m4flags}; then set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include); fi; if ${return_output}; then "$@"; return; fi; printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}"; ebegin "Running $@"; "$@" >> "${STDERR_TARGET}" 2>&1; if ! eend $? && ${autofail}; then echo; eerror "Failed Running $1 !"; eerror; eerror "Include in your bugreport the contents of:"; eerror; eerror " ${STDERR_TARGET}"; echo; die "Failed Running $1 !"; fi } build_contrib_module () { cd "${S}/contrib/slapd-modules/$1" || die; einfo "Compiling contrib-module: $3"; local define_name="$(echo "SLAPD_OVER_${1}" | LC_ALL=C tr '[:lower:]' '[:upper:]')"; "${lt}" --mode=compile --tag=CC "${CC}" -D${define_name}=SLAPD_MOD_DYNAMIC -I"${BUILD_DIR}"/include -I../../../include -I../../../servers/slapd ${CFLAGS} -o ${2%.c}.lo -c $2 || die "compiling $3 failed"; einfo "Linking contrib-module: $3"; "${lt}" --mode=link --tag=CC "${CC}" -module ${CFLAGS} ${LDFLAGS} -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap -o $3.la ${2%.c}.lo || die "linking $3 failed" } clang-fullversion () { _clang_fullversion '$1.$2.$3' "$@" } clang-major-version () { _clang_fullversion '$1' "$@" } clang-micro-version () { _clang_fullversion '$3' "$@" } clang-minor-version () { _clang_fullversion '$2' "$@" } clang-version () { _clang_fullversion '$1.$2' "$@" } config_rpath_update () { local dst src=$(type -P gettext | sed 's:bin/gettext:share/gettext/config.rpath:'); [[ $# -eq 0 ]] && set -- $(find -name config.rpath); [[ $# -eq 0 ]] && return 0; einfo "Updating all config.rpath files"; for dst in "$@"; do einfo " ${dst}"; cp "${src}" "${dst}" || die; done } darwintoolize () { die "Use elibtoolize" } db_findver () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; if [ $# -ne 1 ]; then eerror "Function db_findver needs one argument" 1>&2; eerror "args given:" 1>&2; for f in $@; do eerror " - \"$@\"" 1>&2; done; return 1; fi; PKG="$(best_version $1)"; VER="$(ver_cut 1-2 "${PKG/*db-/}")"; if [ -d "${EPREFIX}"/usr/include/db$(db_ver_to_slot "$VER") ]; then echo -n "$VER"; return 0; else return 1; fi } db_includedir () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; if [ $# -eq 0 ]; then VER="$(db_findver sys-libs/db)" || return 1; VER="$(db_ver_to_slot "$VER")"; echo "include version ${VER}" 1>&2; if [ -d "${EPREFIX}/usr/include/db${VER}" ]; then echo -n "${EPREFIX}/usr/include/db${VER}"; return 0; else eerror "sys-libs/db package requested, but headers not found" 1>&2; return 1; fi; else for x in $@; do if VER=$(db_findver "=sys-libs/db-${x}*") && [ -d "${EPREFIX}/usr/include/db$(db_ver_to_slot $VER)" ]; then echo -n "${EPREFIX}/usr/include/db$(db_ver_to_slot $VER)"; return 0; fi; done; eerror "No suitable db version found"; return 1; fi } db_libname () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; if [ $# -eq 0 ]; then VER="$(db_findver sys-libs/db)" || return 1; if [ -e "${EPREFIX}/usr/$(get_libdir)/libdb-${VER}$(get_libname)" ]; then echo -n "db-${VER}"; return 0; else eerror "sys-libs/db package requested, but library not found" 1>&2; return 1; fi; else for x in $@; do if VER=$(db_findver "=sys-libs/db-${x}*"); then if [ -e "${EPREFIX}/usr/$(get_libdir)/libdb-${VER}$(get_libname)" ]; then echo -n "db-${VER}"; return 0; fi; fi; done; eerror "No suitable db version found" 1>&2; return 1; fi } db_ver_to_slot () { if [ $# -ne 1 ]; then eerror "Function db_ver_to_slot needs one argument" 1>&2; eerror "args given:" 1>&2; for f in $@; do eerror " - \"$@\"" 1>&2; done; return 1; fi; echo -n "$1" } delete_all_version_separators () { replace_all_version_separators "" "${1}" } delete_version_separator () { replace_version_separator "${1}" "" "${2}" } doicon () { _iconins ${FUNCNAME} "$@" } domenu () { ( local i ret=0; insopts -m 0644; insinto /usr/share/applications; for i in "$@"; do if [[ -d ${i} ]]; then doins "${i}"/*.desktop; ((ret|=$?)); else doins "${i}"; ((ret|=$?)); fi; done; exit ${ret} ) } eaclocal () { [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && autotools_run_tool --at-m4flags aclocal "$@" $(eaclocal_amflags) } eaclocal_amflags () { local aclocal_opts amflags_file; for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in; do [[ -e ${amflags_file} ]] || continue; autotools_env_setup; aclocal_opts=$(sed -n "/^ACLOCAL_AMFLAGS[[:space:]]*=/{ # match the first line s:[^=]*=::p; # then gobble up all escaped lines : nextline /\\\\$/{ n; p; b nextline; } }" ${amflags_file}); eval aclocal_opts=\""${aclocal_opts}"\"; break; done; echo ${aclocal_opts} } eautoconf () { if [[ ! -f configure.ac && ! -f configure.in ]]; then echo; eerror "No configure.{ac,in} present in '${PWD}'!"; echo; die "No configure.{ac,in} present!"; fi; if [[ ${WANT_AUTOCONF} != "2.1" && -e configure.in ]]; then eqawarn "This package has a configure.in file which has long been deprecated. Please"; eqawarn "update it to use configure.ac instead as newer versions of autotools will die"; eqawarn "when it finds this file. See https://bugs.gentoo.org/426262 for details."; fi; autotools_run_tool --at-m4flags autoconf "$@" } eautoheader () { _at_uses_autoheader || return 0; autotools_run_tool --at-no-fail --at-m4flags autoheader "$@" } eautomake () { local extra_opts=(); local makefile_name; for makefile_name in {GNUmakefile,{M,m}akefile}.am ""; do [[ -f ${makefile_name} ]] && break; done; function _automake_version () { autotools_run_tool --at-output automake --version 2> /dev/null | sed -n -e '1{s:.*(GNU automake) ::p;q}' }; if [[ -z ${makefile_name} ]]; then _at_uses_automake || return 0; else if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then local used_automake; local installed_automake; installed_automake=$(WANT_AUTOMAKE= _automake_version); used_automake=$(head -n 1 < ${makefile_name%.am}.in | sed -e 's:.*by automake \(.*\) from .*:\1:'); if [[ ${installed_automake} != ${used_automake} ]]; then ewarn "Automake used for the package (${used_automake}) differs from" "the installed version (${installed_automake})."; ewarn "Forcing a full rebuild of the autotools to workaround."; eautoreconf; return 0; fi; fi; fi; [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] || extra_opts+=(--foreign); case $(_automake_version) in 1.4 | 1.4[.-]*) ;; *) extra_opts+=(--force-missing) ;; esac; autotools_run_tool automake --add-missing --copy "${extra_opts[@]}" "$@" } eautopoint () { autotools_run_tool autopoint "$@" } eautoreconf () { local x g; if [[ -z ${AT_NO_RECURSIVE} ]]; then for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do if [[ -d ${x} ]]; then pushd "${x}" > /dev/null; AT_NOELIBTOOLIZE="yes" eautoreconf || die; popd > /dev/null; fi; done; fi; einfo "Running eautoreconf in '${PWD}' ..."; local m4dirs=$(autotools_check_macro_val AC_CONFIG_{AUX,MACRO}_DIR); [[ -n ${m4dirs} ]] && mkdir -p ${m4dirs}; local i tools=(glibgettext false "autotools_run_tool glib-gettextize --copy --force" gettext false "autotools_run_tool --at-missing autopoint --force" intltool false "autotools_run_tool intltoolize --automake --copy --force" gtkdoc false "autotools_run_tool --at-missing gtkdocize --copy" gnomedoc false "autotools_run_tool --at-missing gnome-doc-prepare --copy --force" libtool false "_elibtoolize --auto-ltdl --install --copy --force"); for ((i = 0; i < ${#tools[@]}; i += 3 )) do if _at_uses_${tools[i]}; then tools[i+1]=true; ${tools[i+2]}; fi; done; local rerun_aclocal=false; eaclocal; for ((i = 0; i < ${#tools[@]}; i += 3 )) do if ! ${tools[i+1]} && _at_uses_${tools[i]}; then ${tools[i+2]}; rerun_aclocal=true; fi; done; ${rerun_aclocal} && eaclocal; if [[ ${WANT_AUTOCONF} = 2.1 ]]; then eautoconf; else eautoconf --force; fi; eautoheader; [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS}; if [[ ${AT_NOELIBTOOLIZE} != "yes" ]]; then elibtoolize --force "${PWD}"; fi; return 0 } ebeep () { ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org" } econf_build () { local CBUILD=${CBUILD:-${CHOST}}; tc-env_build econf --build=${CBUILD} --host=${CBUILD} "$@" } ecvs_clean () { [[ $# -eq 0 ]] && set -- .; find "$@" '(' -type d -name 'CVS' -prune -o -type f -name '.cvs*' ')' -exec rm -rf '{}' + } edos2unix () { [[ $# -eq 0 ]] && return 0; sed -i 's/\r$//' -- "$@" || die } egetent () { local db=$1 key=$2; [[ $# -ge 3 ]] && die "usage: egetent "; case ${db} in passwd | group) ;; *) die "sorry, database '${db}' not yet supported; file a bug" ;; esac; case ${CHOST} in *-darwin[678]) case ${key} in *[!0-9]*) nidump ${db} . | awk -F: "(\$1 ~ /^${key}\$/) {print;exit;}" ;; *) nidump ${db} . | awk -F: "(\$3 == ${key}) {print;exit;}" ;; esac ;; *-darwin*) local mykey; case ${db} in passwd) db="Users" mykey="UniqueID" ;; group) db="Groups" mykey="PrimaryGroupID" ;; esac; case ${key} in *[!0-9]*) dscl . -read /${db}/${key} 2> /dev/null | grep RecordName ;; *) dscl . -search /${db} ${mykey} ${key} 2> /dev/null ;; esac ;; *-freebsd* | *-dragonfly*) case ${db} in passwd) db="user" ;; *) ;; esac; local opts; if [[ ${key} == [[:digit:]]* ]]; then [[ ${db} == "user" ]] && opts="-u" || opts="-g"; fi; pw show ${db} ${opts} "${key}" -q ;; *-netbsd* | *-openbsd*) grep "${key}:\*:" /etc/${db} ;; *) nscd -i "${db}" 2> /dev/null; getent "${db}" "${key}" ;; esac } egethome () { local pos; [[ $# -eq 1 ]] || die "usage: egethome "; case ${CHOST} in *-darwin* | *-freebsd* | *-dragonfly*) pos=9 ;; *) pos=6 ;; esac; egetent passwd "$1" | cut -d: -f${pos} } egetshell () { local pos; [[ $# -eq 1 ]] || die "usage: egetshell "; case ${CHOST} in *-darwin* | *-freebsd* | *-dragonfly*) pos=10 ;; *) pos=7 ;; esac; egetent passwd "$1" | cut -d: -f${pos} } egit_clean () { [[ $# -eq 0 ]] && set -- .; find "$@" -type d -name '.git*' -prune -exec rm -rf '{}' + } einstalldocs () { debug-print-function ${FUNCNAME} "${@}"; local dodoc_opts=-r; has ${EAPI} 0 1 2 3 && dodoc_opts=; if ! declare -p DOCS &> /dev/null; then local d; for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS FAQ CREDITS CHANGELOG; do if [[ -s ${d} ]]; then dodoc "${d}" || die; fi; done; else if [[ $(declare -p DOCS) == "declare -a"* ]]; then if [[ -n ${DOCS[@]} ]]; then dodoc ${dodoc_opts} "${DOCS[@]}" || die; fi; else if [[ -n ${DOCS} ]]; then dodoc ${dodoc_opts} ${DOCS} || die; fi; fi; fi; if [[ $(declare -p HTML_DOCS 2>/dev/null) == "declare -a"* ]]; then if [[ -n ${HTML_DOCS[@]} ]]; then dohtml -r "${HTML_DOCS[@]}" || die; fi; else if [[ -n ${HTML_DOCS} ]]; then dohtml -r ${HTML_DOCS} || die; fi; fi; return 0 } elibtoolize () { type -P eltpatch &> /dev/null || die "eltpatch not found; is app-portage/elt-patches installed?"; ELT_LOGDIR=${T} LD=$(tc-getLD) eltpatch "${@}" || die "eltpatch failed" } emktemp () { local exe="touch"; [[ $1 == -d ]] && exe="mkdir" && shift; local topdir=$1; if [[ -z ${topdir} ]]; then [[ -z ${T} ]] && topdir="/tmp" || topdir=${T}; fi; if ! type -P mktemp > /dev/null; then local tmp=/; while [[ -e ${tmp} ]]; do tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}; done; ${exe} "${tmp}" || ${exe} -p "${tmp}"; echo "${tmp}"; else if [[ ${exe} == "touch" ]]; then TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX; else TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX; fi; fi } enewgroup () { if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}"; return 0; fi; _assert_pkg_ebuild_phase ${FUNCNAME}; local egroup=$1; shift; if [[ -z ${egroup} ]]; then eerror "No group specified !"; die "Cannot call enewgroup without a group"; fi; if [[ -n $(egetent group "${egroup}") ]]; then return 0; fi; einfo "Adding group '${egroup}' to your system ..."; local egid=$1; shift; if [[ ! -z ${egid} ]]; then if [[ ${egid} -gt 0 ]]; then if [[ -n $(egetent group ${egid}) ]]; then egid="next available; requested gid taken"; fi; else eerror "Groupid given but is not greater than 0 !"; die "${egid} is not a valid GID"; fi; else egid="next available"; fi; einfo " - Groupid: ${egid}"; if [[ $# -gt 0 ]]; then die "extra arguments no longer supported; please file a bug"; fi; function _enewgroup_next_gid () { if [[ ${egid} == *[!0-9]* ]]; then for ((egid = 101; egid <= 999; egid++)) do [[ -z $(egetent group ${egid}) ]] && break; done; fi }; case ${CHOST} in *-darwin*) _enewgroup_next_gid; dscl . create "/groups/${egroup}" gid ${egid}; dscl . create "/groups/${egroup}" passwd '*' ;; *-freebsd* | *-dragonfly*) _enewgroup_next_gid; pw groupadd "${egroup}" -g ${egid} || die ;; *-netbsd*) _enewgroup_next_gid; groupadd -g ${egid} "${egroup}" || die ;; *) local opts; if [[ ${egid} == *[!0-9]* ]]; then opts=""; else opts="-g ${egid}"; fi; groupadd -r ${opts} "${egroup}" || die ;; esac } enewuser () { if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}"; return 0; fi; _assert_pkg_ebuild_phase ${FUNCNAME}; local euser=$1; shift; if [[ -z ${euser} ]]; then eerror "No username specified !"; die "Cannot call enewuser without a username"; fi; if [[ -n $(egetent passwd "${euser}") ]]; then return 0; fi; einfo "Adding user '${euser}' to your system ..."; local opts=(); local euid=$1; shift; if [[ -n ${euid} && ${euid} != -1 ]]; then if [[ ${euid} -gt 0 ]]; then if [[ -n $(egetent passwd ${euid}) ]]; then euid="next"; fi; else eerror "Userid given but is not greater than 0 !"; die "${euid} is not a valid UID"; fi; else euid="next"; fi; if [[ ${euid} == "next" ]]; then for ((euid = 101; euid <= 999; euid++)) do [[ -z $(egetent passwd ${euid}) ]] && break; done; fi; opts+=(-u ${euid}); einfo " - Userid: ${euid}"; local eshell=$1; shift; if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]]; then if [[ ! -e ${ROOT}${eshell} ]]; then eerror "A shell was specified but it does not exist !"; die "${eshell} does not exist in ${ROOT}"; fi; if [[ ${eshell} == */false || ${eshell} == */nologin ]]; then eerror "Do not specify ${eshell} yourself, use -1"; die "Pass '-1' as the shell parameter"; fi; else for eshell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null; do [[ -x ${ROOT}${eshell} ]] && break; done; if [[ ${eshell} == "/dev/null" ]]; then eerror "Unable to identify the shell to use, proceeding with userland default."; case ${USERLAND} in GNU) eshell="/bin/false" ;; BSD) eshell="/sbin/nologin" ;; Darwin) eshell="/usr/sbin/nologin" ;; *) die "Unable to identify the default shell for userland ${USERLAND}" ;; esac; fi; fi; einfo " - Shell: ${eshell}"; opts+=(-s "${eshell}"); local ehome=$1; shift; if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]]; then ehome="/dev/null"; fi; einfo " - Home: ${ehome}"; opts+=(-d "${ehome}"); local egroups=$1; shift; local g egroups_arr; IFS="," read -r -a egroups_arr <<< "${egroups}"; if [[ ${#egroups_arr[@]} -gt 0 ]]; then local defgroup exgroups; for g in "${egroups_arr[@]}"; do if [[ -z $(egetent group "${g}") ]]; then eerror "You must add group ${g} to the system first"; die "${g} is not a valid GID"; fi; if [[ -z ${defgroup} ]]; then defgroup=${g}; else exgroups+=",${g}"; fi; done; opts+=(-g "${defgroup}"); if [[ ! -z ${exgroups} ]]; then opts+=(-G "${exgroups:1}"); fi; fi; einfo " - Groups: ${egroups:-(none)}"; if [[ $# -gt 0 ]]; then die "extra arguments no longer supported; please file a bug"; else local comment="added by portage for ${PN}"; opts+=(-c "${comment}"); einfo " - GECOS: ${comment}"; fi; case ${CHOST} in *-darwin*) dscl . create "/users/${euser}" uid ${euid}; dscl . create "/users/${euser}" shell "${eshell}"; dscl . create "/users/${euser}" home "${ehome}"; dscl . create "/users/${euser}" realname "added by portage for ${PN}"; for g in "${egroups_arr[@]}"; do dscl . merge "/groups/${g}" users "${euser}"; done ;; *-freebsd* | *-dragonfly*) pw useradd "${euser}" "${opts[@]}" || die ;; *-netbsd*) useradd "${opts[@]}" "${euser}" || die ;; *-openbsd*) useradd -u ${euid} -s "${eshell}" -d "${ehome}" -g "${egroups}" "${euser}" || die ;; *) useradd -r "${opts[@]}" "${euser}" || die ;; esac; if [[ ! -e ${ROOT}/${ehome} ]]; then einfo " - Creating ${ehome} in ${ROOT}"; mkdir -p "${ROOT}/${ehome}"; chown "${euser}" "${ROOT}/${ehome}"; chmod 755 "${ROOT}/${ehome}"; fi } epatch () { function _epatch_draw_line () { [[ -z $1 ]] && set "$(printf "%65s" '')"; echo "${1//?/=}" }; unset P4CONFIG P4PORT P4USER; local EPATCH_OPTS=(${EPATCH_OPTS[*]}); while [[ $# -gt 0 ]]; do case $1 in -*) EPATCH_OPTS+=("$1") ;; *) break ;; esac; shift; done; if [[ $# -gt 1 ]]; then local m; for m in "$@"; do epatch "${m}"; done; return 0; fi; local SINGLE_PATCH="no"; [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}"; if [[ -f $1 ]]; then SINGLE_PATCH="yes"; set -- "$1"; local EPATCH_SUFFIX=$1; else if [[ -d $1 ]]; then evar_push_set LC_COLLATE C; set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"}; evar_pop; else if [[ -f ${EPATCH_SOURCE}/$1 ]]; then epatch "${EPATCH_SOURCE}/$1"; return $?; else [[ $# -ne 0 ]] && EPATCH_SOURCE=$1; echo; eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:"; eerror; eerror " ${EPATCH_SOURCE}"; eerror " ( ${EPATCH_SOURCE##*/} )"; echo; die "Cannot find \$EPATCH_SOURCE!"; fi; fi; fi; EPATCH_OPTS="${EPATCH_COMMON_OPTS} ${EPATCH_OPTS[*]}"; local PIPE_CMD; case ${EPATCH_SUFFIX##*\.} in xz) PIPE_CMD="xz -dc" ;; lzma) PIPE_CMD="lzma -dc" ;; bz2) PIPE_CMD="bzip2 -dc" ;; gz | Z | z) PIPE_CMD="gzip -dc" ;; ZIP | zip) PIPE_CMD="unzip -p" ;; *) ;; esac; [[ ${SINGLE_PATCH} == "no" ]] && einfo "${EPATCH_MULTI_MSG}"; local x; for x in "$@"; do [[ ! -f ${x} ]] && continue; local patchname=${x##*/}; local a=${patchname#*_}; a=${a%%_*}; if ! [[ ${SINGLE_PATCH} == "yes" || ${EPATCH_FORCE} == "yes" || ${a} == all || ${a} == ${ARCH} ]]; then continue; fi; if [[ -n ${EPATCH_EXCLUDE}${EPATCH_USER_EXCLUDE} ]]; then local prev_noglob=$(shopt -p -o noglob); set -o noglob; local ex; for ex in ${EPATCH_EXCLUDE}; do if [[ ${patchname} == ${ex} ]]; then einfo " Skipping ${patchname} due to EPATCH_EXCLUDE ..."; ${prev_noglob}; continue 2; fi; done; for ex in ${EPATCH_USER_EXCLUDE}; do if [[ ${patchname} == ${ex} ]]; then einfo " Skipping ${patchname} due to EPATCH_USER_EXCLUDE ..."; ${prev_noglob}; continue 2; fi; done; ${prev_noglob}; fi; if [[ ${SINGLE_PATCH} == "yes" ]]; then if [[ -n ${EPATCH_SINGLE_MSG} ]]; then einfo "${EPATCH_SINGLE_MSG}"; else einfo "Applying ${patchname} ..."; fi; else einfo " ${patchname} ..."; fi; local patch="patch"; eval $(alias patch 2>/dev/null | sed 's:^alias ::'); local STDERR_TARGET="${T}/${patchname}.out"; if [[ -e ${STDERR_TARGET} ]]; then STDERR_TARGET="${T}/${patchname}-$$.out"; fi; printf "***** %s *****\nPWD: %s\nPATCH TOOL: %s -> %s\nVERSION INFO:\n%s\n\n" "${patchname}" "${PWD}" "${patch}" "$(type -P "${patch}")" "$(${patch} --version)" > "${STDERR_TARGET}"; local count=0; local PATCH_TARGET; if [[ -n ${PIPE_CMD} ]]; then PATCH_TARGET="${T}/$$.patch"; echo "PIPE_COMMAND: ${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> "${STDERR_TARGET}"; if ! ( ${PIPE_CMD} "${x}" > "${PATCH_TARGET}" ) >> "${STDERR_TARGET}" 2>&1; then echo; eerror "Could not extract patch!"; count=5; break; fi; else PATCH_TARGET=${x}; fi; local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }'); if [[ -n ${abs_paths} ]]; then count=1; printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}"; fi; local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}"); if [[ -n ${rel_paths} ]]; then echo; eerror "Rejected Patch: ${patchname} !"; eerror " ( ${PATCH_TARGET} )"; eerror; eerror "Your patch uses relative paths '../':"; eerror "${rel_paths}"; echo; die "you need to fix the relative paths in patch"; fi; local patch_cmd; while [[ ${count} -lt 5 ]]; do patch_cmd="${patch} -p${count} ${EPATCH_OPTS}"; ( _epatch_draw_line "***** ${patchname} *****"; echo; echo "PATCH COMMAND: ${patch_cmd} --dry-run -f < '${PATCH_TARGET}'"; echo; _epatch_draw_line "***** ${patchname} *****"; ${patch_cmd} --dry-run -f < "${PATCH_TARGET}" 2>&1; ret=$?; echo; echo "patch program exited with status ${ret}"; exit ${ret} ) >> "${STDERR_TARGET}"; if [ $? -eq 0 ]; then ( _epatch_draw_line "***** ${patchname} *****"; echo; echo "ACTUALLY APPLYING ${patchname} ..."; echo "PATCH COMMAND: ${patch_cmd} < '${PATCH_TARGET}'"; echo; _epatch_draw_line "***** ${patchname} *****"; ${patch_cmd} < "${PATCH_TARGET}" 2>&1; ret=$?; echo; echo "patch program exited with status ${ret}"; exit ${ret} ) >> "${STDERR_TARGET}"; if [ $? -ne 0 ]; then echo; eerror "A dry-run of patch command succeeded, but actually"; eerror "applying the patch failed!"; count=5; fi; break; fi; : $(( count++ )); done; (( EPATCH_N_APPLIED_PATCHES++ )); if [[ -n ${PIPE_CMD} ]]; then rm -f "${PATCH_TARGET}"; fi; if [[ ${count} -ge 5 ]]; then echo; eerror "Failed Patch: ${patchname} !"; eerror " ( ${PATCH_TARGET} )"; eerror; eerror "Include in your bugreport the contents of:"; eerror; eerror " ${STDERR_TARGET}"; echo; die "Failed Patch: ${patchname}!"; fi; rm -f "${STDERR_TARGET}"; cat <<-EOF >> "${T}/epatch.log" PATCH: ${x} CMD: ${patch_cmd} PWD: ${PWD} EOF eend 0; done; [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching"; : } epatch_user () { [[ $# -ne 0 ]] && die "epatch_user takes no options"; local applied="${T}/epatch_user.log"; [[ -e ${applied} ]] && return 2; local EPATCH_SOURCE check; for check in ${CATEGORY}/{${P}-${PR},${P},${PN}}{,:${SLOT%/*}}; do EPATCH_SOURCE=${EPATCH_USER_SOURCE}/${CTARGET}/${check}; [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${EPATCH_USER_SOURCE}/${CHOST}/${check}; [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${EPATCH_USER_SOURCE}/${check}; if [[ -d ${EPATCH_SOURCE} ]]; then local old_n_applied_patches=${EPATCH_N_APPLIED_PATCHES:-0}; EPATCH_SOURCE=${EPATCH_SOURCE} EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." epatch; echo "${EPATCH_SOURCE}" > "${applied}"; if [[ ${old_n_applied_patches} -lt ${EPATCH_N_APPLIED_PATCHES} ]]; then has epatch_user_death_notice ${EBUILD_DEATH_HOOKS} || EBUILD_DEATH_HOOKS+=" epatch_user_death_notice"; fi; return 0; fi; done; echo "none" > "${applied}"; return 1 } epatch_user_death_notice () { ewarn "!!! User patches were applied to this build!" } epause () { ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org" } esethome () { _assert_pkg_ebuild_phase ${FUNCNAME}; local euser=$1; shift; if [[ -z ${euser} ]]; then eerror "No username specified !"; die "Cannot call esethome without a username"; fi; if [[ -z $(egetent passwd "${euser}") ]]; then ewarn "User does not exist, cannot set home dir -- skipping."; return 1; fi; local ehome=$1; shift; if [[ -z ${ehome} ]]; then eerror "No home directory specified !"; die "Cannot call esethome without a home directory or '-1'"; fi; if [[ ${ehome} == "-1" ]]; then ehome="/dev/null"; fi; if [[ $(egethome "${euser}") == ${ehome} ]]; then return 0; fi; einfo "Updating home for user '${euser}' ..."; einfo " - Home: ${ehome}"; if [[ ! -e ${ROOT}/${ehome} ]]; then einfo " - Creating ${ehome} in ${ROOT}"; mkdir -p "${ROOT}/${ehome}"; chown "${euser}" "${ROOT}/${ehome}"; chmod 755 "${ROOT}/${ehome}"; fi; case ${CHOST} in *-darwin*) dscl . change "/users/${euser}" home "${ehome}" ;; *-freebsd* | *-dragonfly*) pw usermod "${euser}" -d "${ehome}" && return 0; [[ $? == 8 ]] && eerror "${euser} is in use, cannot update home"; eerror "There was an error when attempting to update the home directory for ${euser}"; eerror "Please update it manually on your system:"; eerror "\t pw usermod \"${euser}\" -d \"${ehome}\"" ;; *) usermod -d "${ehome}" "${euser}" && return 0; [[ $? == 8 ]] && eerror "${euser} is in use, cannot update home"; eerror "There was an error when attempting to update the home directory for ${euser}"; eerror "Please update it manually on your system (as root):"; eerror "\t usermod -d \"${ehome}\" \"${euser}\"" ;; esac } eshopts_pop () { local s; estack_pop eshopts s || die "${FUNCNAME}: unbalanced push"; eval "${s}" || die "${FUNCNAME}: sanity: invalid shopt options: ${s}" } eshopts_push () { if [[ $1 == -[su] ]]; then estack_push eshopts "$(shopt -p)"; [[ $# -eq 0 ]] && return 0; shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*"; else estack_push eshopts "$(shopt -p -o)"; [[ $# -eq 0 ]] && return 0; set "$@" || die "${FUNCNAME}: bad options to set: $*"; fi } estack_pop () { [[ $# -eq 0 || $# -gt 2 ]] && die "estack_pop: incorrect # of arguments"; local _estack_name="_ESTACK_$1_"; shift; local _estack_retvar=$1; shift; eval local _estack_i=\${#${_estack_name}\[@\]}; [[ $(( --_estack_i )) -eq -1 ]] && return 1; if [[ -n ${_estack_retvar} ]]; then eval ${_estack_retvar}=\"\${${_estack_name}\[${_estack_i}\]}\"; fi; eval unset \"${_estack_name}\[${_estack_i}\]\" } estack_push () { [[ $# -eq 0 ]] && die "estack_push: incorrect # of arguments"; local stack_name="_ESTACK_$1_"; shift; eval ${stack_name}+=\( \"\$@\" \) } esvn_clean () { [[ $# -eq 0 ]] && set -- .; find "$@" -type d -name '.svn' -prune -exec rm -rf '{}' + } eumask_pop () { [[ $# -eq 0 ]] || die "${FUNCNAME}: we take no options"; local s; estack_pop eumask s || die "${FUNCNAME}: unbalanced push"; umask ${s} || die "${FUNCNAME}: sanity: could not restore umask: ${s}" } eumask_push () { estack_push eumask "$(umask)"; umask "$@" || die "${FUNCNAME}: bad options to umask: $*" } evar_pop () { local cnt=${1:-bad}; case $# in 0) cnt=1 ;; 1) isdigit "${cnt}" || die "${FUNCNAME}: first arg must be a number: $*" ;; *) die "${FUNCNAME}: only accepts one arg: $*" ;; esac; local var val; while (( cnt-- )); do estack_pop evar val || die "${FUNCNAME}: unbalanced push"; estack_pop evar var || die "${FUNCNAME}: unbalanced push"; [[ ${val} == "unset_76fc3c462065bb4ca959f939e6793f94" ]] && unset ${var} || printf -v "${var}" '%s' "${val}"; done } evar_push () { local var val; for var in "$@"; do [[ ${!var+set} == "set" ]] && val=${!var} || val="unset_76fc3c462065bb4ca959f939e6793f94"; estack_push evar "${var}" "${val}"; done } evar_push_set () { local var=$1; evar_push ${var}; case $# in 1) unset ${var} ;; 2) printf -v "${var}" '%s' "$2" ;; *) die "${FUNCNAME}: incorrect # of args: $*" ;; esac } filter-flags () { _filter-hardened "$@"; local v; for v in $(all-flag-vars); do _filter-var ${v} "$@"; done; return 0 } filter-ldflags () { _filter-var LDFLAGS "$@"; return 0 } filter-lfs-flags () { [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments"; filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE } filter-mfpmath () { local orig_mfpmath new_math prune_math; orig_mfpmath=$(get-flag -mfpmath); new_math=$(get-flag mfpmath); new_math=${new_math/both/387,sse}; new_math=" ${new_math//[,+]/ } "; prune_math=""; for prune_math in "$@"; do new_math=${new_math/ ${prune_math} / }; done; new_math=$(echo ${new_math}); new_math=${new_math// /,}; if [[ -z ${new_math} ]]; then filter-flags ${orig_mfpmath}; else replace-flags ${orig_mfpmath} -mfpmath=${new_math}; fi; return 0 } gcc-fullversion () { _gcc_fullversion '$1.$2.$3' "$@" } gcc-major-version () { _gcc_fullversion '$1' "$@" } gcc-micro-version () { _gcc_fullversion '$3' "$@" } gcc-minor-version () { _gcc_fullversion '$2' "$@" } gcc-specs-directive () { local directive subdname subdirective; directive="$(_gcc-specs-directive_raw $1)"; while [[ ${directive} == *%\(*\)* ]]; do subdname=${directive/*%\(}; subdname=${subdname/\)*}; subdirective="$(_gcc-specs-directive_raw ${subdname})"; directive="${directive//\%(${subdname})/${subdirective}}"; done; echo "${directive}"; return 0 } gcc-specs-nostrict () { local directive; directive=$(gcc-specs-directive cc1); [[ "${directive/\{!fstrict-overflow:}" != "${directive}" ]] } gcc-specs-now () { local directive; directive=$(gcc-specs-directive link_command); [[ "${directive/\{!nonow:}" != "${directive}" ]] } gcc-specs-pie () { local directive; directive=$(gcc-specs-directive cc1); [[ "${directive/\{!nopie:}" != "${directive}" ]] } gcc-specs-relro () { local directive; directive=$(gcc-specs-directive link_command); [[ "${directive/\{!norelro:}" != "${directive}" ]] } gcc-specs-ssp () { local directive; directive=$(gcc-specs-directive cc1); [[ "${directive/\{!fno-stack-protector:}" != "${directive}" ]] } gcc-specs-ssp-to-all () { local directive; directive=$(gcc-specs-directive cc1); [[ "${directive/\{!fno-stack-protector-all:}" != "${directive}" ]] } gcc-specs-stack-check () { local directive; directive=$(gcc-specs-directive cc1); [[ "${directive/\{!fno-stack-check:}" != "${directive}" ]] } gcc-version () { _gcc_fullversion '$1.$2' "$@" } gen_cnf () { SSL_CONF="${T}/${$}ssl.cnf"; SSL_SERIAL="${T}/${$}ca.ser"; SSL_RANDOM="${T}/environment:${T}/eclass-debug.log:/etc/resolv.conf"; SSL_DAYS="${SSL_DAYS:-730}"; SSL_BITS="${SSL_BITS:-4096}"; SSL_MD="${SSL_MD:-sha256}"; SSL_COUNTRY="${SSL_COUNTRY:-US}"; SSL_STATE="${SSL_STATE:-California}"; SSL_LOCALITY="${SSL_LOCALITY:-Santa Barbara}"; SSL_ORGANIZATION="${SSL_ORGANIZATION:-SSL Server}"; SSL_UNIT="${SSL_UNIT:-For Testing Purposes Only}"; SSL_COMMONNAME="${SSL_COMMONNAME:-localhost}"; SSL_EMAIL="${SSL_EMAIL:-root@localhost}"; echo "01" > "${SSL_SERIAL}"; ebegin "Generating OpenSSL configuration${1:+ for CA}"; cat <<-EOF > "${SSL_CONF}" [ req ] prompt = no default_bits = ${SSL_BITS} distinguished_name = req_dn [ req_dn ] C = ${SSL_COUNTRY} ST = ${SSL_STATE} L = ${SSL_LOCALITY} O = ${SSL_ORGANIZATION} OU = ${SSL_UNIT} CN = ${SSL_COMMONNAME}${1:+ CA} emailAddress = ${SSL_EMAIL} EOF eend $?; return $? } gen_crt () { local base=$(get_base "$1"); if [ "${1}" ]; then ebegin "Generating self-signed X.509 Certificate for CA"; openssl x509 -extfile "${SSL_CONF}" -${SSL_MD} -days ${SSL_DAYS} -req -signkey "${base}.key" -in "${base}.csr" -out "${base}.crt" &> /dev/null; else local ca=$(get_base 1); ebegin "Generating authority-signed X.509 Certificate"; openssl x509 -extfile "${SSL_CONF}" -days ${SSL_DAYS} -req -CAserial "${SSL_SERIAL}" -CAkey "${ca}.key" -CA "${ca}.crt" -${SSL_MD} -in "${base}.csr" -out "${base}.crt" &> /dev/null; fi; eend $?; return $? } gen_csr () { local base=$(get_base "$1"); ebegin "Generating Certificate Signing Request${1:+ for CA}"; openssl req -config "${SSL_CONF}" -new -key "${base}.key" -out "${base}.csr" &> /dev/null; eend $?; return $? } gen_key () { local base=$(get_base "$1"); ebegin "Generating ${SSL_BITS} bit RSA key${1:+ for CA}"; if openssl version | grep -i libressl > /dev/null; then openssl genrsa -out "${base}.key" "${SSL_BITS}" &> /dev/null; else openssl genrsa -rand "${SSL_RANDOM}" -out "${base}.key" "${SSL_BITS}" &> /dev/null; fi; eend $?; return $? } gen_pem () { local base=$(get_base "$1"); ebegin "Generating PEM Certificate"; ( cat "${base}.key"; echo; cat "${base}.crt" ) > "${base}.pem"; eend $?; return $? } gen_usr_ldscript () { local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname); [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/; tc-is-static-only && return; if [[ $(type -t multilib_is_native_abi) == "function" ]]; then multilib_is_native_abi || return 0; fi; case ${CTARGET:-${CHOST}} in *-darwin*) ;; *-android*) return 0 ;; *linux* | *-freebsd* | *-openbsd* | *-netbsd*) use prefix && return 0 ;; *) return 0 ;; esac; dodir /usr/${libdir}; if [[ $1 == "-a" ]]; then auto=true; shift; dodir /${libdir}; fi; local flags=(${CFLAGS} ${LDFLAGS} -Wl,--verbose); if $(tc-getLD) --version | grep -q 'GNU gold'; then local d="${T}/bfd-linker"; mkdir -p "${d}"; ln -sf $(which ${CHOST}-ld.bfd) "${d}"/ld; flags+=(-B"${d}"); fi; output_format=$($(tc-getCC) "${flags[@]}" 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p'); [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )"; for lib in "$@"; do local tlib; if ${auto}; then lib="lib${lib}${suffix}"; else [[ -r ${ED}/${libdir}/${lib} ]] || continue; fi; case ${CTARGET:-${CHOST}} in *-darwin*) if ${auto}; then tlib=$(scanmacho -qF'%S#F' "${ED}"/usr/${libdir}/${lib}); else tlib=$(scanmacho -qF'%S#F' "${ED}"/${libdir}/${lib}); fi; [[ -z ${tlib} ]] && die "unable to read install_name from ${lib}"; tlib=${tlib##*/}; if ${auto}; then mv "${ED}"/usr/${libdir}/${lib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die; if [[ ${tlib} != ${lib%${suffix}}.*${suffix#.} ]]; then mv "${ED}"/usr/${libdir}/${tlib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die; fi; rm -f "${ED}"/${libdir}/${lib}; fi; if [[ ! -w "${ED}/${libdir}/${tlib}" ]]; then chmod u+w "${ED}${libdir}/${tlib}"; local nowrite=yes; fi; install_name_tool -id "${EPREFIX}"/${libdir}/${tlib} "${ED}"/${libdir}/${tlib} || die "install_name_tool failed"; [[ -n ${nowrite} ]] && chmod u-w "${ED}${libdir}/${tlib}"; pushd "${ED}/usr/${libdir}" > /dev/null; ln -snf "../../${libdir}/${tlib}" "${lib}"; popd > /dev/null ;; *) if ${auto}; then tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}); [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}"; mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die; if [[ ${tlib} != ${lib}* ]]; then mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die; fi; rm -f "${ED}"/${libdir}/${lib}; else tlib=${lib}; fi; cat > "${ED}/usr/${libdir}/${lib}" <<-END_LDSCRIPT /* GNU ld script Since Gentoo has critical dynamic libraries in /lib, and the static versions in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we run into linking problems. This "fake" dynamic lib is a linker script that redirects the linker to the real lib. And yes, this works in the cross- compiling scenario as the sysroot-ed linker will prepend the real path. See bug https://bugs.gentoo.org/4411 for more info. */ ${output_format} GROUP ( ${EPREFIX}/${libdir}/${tlib} ) END_LDSCRIPT ;; esac fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}"; done } get-flag () { local f var findflag="$1"; for var in $(all-flag-vars); do for f in ${!var}; do if [ "${f/${findflag}}" != "${f}" ]; then printf "%s\n" "${f/-${findflag}=}"; return 0; fi; done; done; return 1 } get_abi_CFLAGS () { get_abi_var CFLAGS "$@" } get_abi_CHOST () { get_abi_var CHOST "$@" } get_abi_CTARGET () { get_abi_var CTARGET "$@" } get_abi_FAKE_TARGETS () { get_abi_var FAKE_TARGETS "$@" } get_abi_LDFLAGS () { get_abi_var LDFLAGS "$@" } get_abi_LIBDIR () { get_abi_var LIBDIR "$@" } get_abi_var () { local flag=$1; local abi=${2:-${ABI:-${DEFAULT_ABI:-default}}}; local var="${flag}_${abi}"; echo ${!var} } get_after_major_version () { echo $(get_version_component_range 2- "${1:-${PV}}") } get_all_abis () { local x order="" mvar dvar; mvar="MULTILIB_ABIS"; dvar="DEFAULT_ABI"; if [[ -n $1 ]]; then mvar="$1_${mvar}"; dvar="$1_${dvar}"; fi; if [[ -z ${!mvar} ]]; then echo "default"; return 0; fi; for x in ${!mvar}; do if [[ ${x} != ${!dvar} ]]; then order="${order:+${order} }${x}"; fi; done; order="${order:+${order} }${!dvar}"; echo ${order}; return 0 } get_all_libdirs () { local libdirs abi; for abi in ${MULTILIB_ABIS}; do libdirs+=" $(get_abi_LIBDIR ${abi})"; done; [[ " ${libdirs} " != *" lib "* ]] && libdirs+=" lib"; echo "${libdirs}" } get_all_version_components () { eshopts_push -s extglob; local ver_str=${1:-${PV}} result; result=(); if [[ ${VERSIONATOR_CACHE_VER_STR} == ${ver_str} ]]; then echo ${VERSIONATOR_CACHE_RESULT}; eshopts_pop; return; fi; export VERSIONATOR_CACHE_VER_STR=${ver_str}; while [[ -n $ver_str ]]; do case "${ver_str::1}" in [[:digit:]]) result+=("${ver_str%%[^[:digit:]]*}"); ver_str=${ver_str##+([[:digit:]])} ;; [-_.]) result+=("${ver_str::1}"); ver_str=${ver_str:1} ;; [[:alpha:]]) local not_match=${ver_str##+([[:alpha:]])*([[:digit:]])}; result+=("${ver_str::${#ver_str} - ${#not_match}}"); ver_str=${not_match} ;; *) result+=("${ver_str::1}"); ver_str=${ver_str:1} ;; esac; done; export VERSIONATOR_CACHE_RESULT=${result[*]}; echo ${result[@]}; eshopts_pop } get_base () { if [ "${1}" ]; then echo "${T}/${$}ca"; else echo "${T}/${$}server"; fi } get_exeext () { case ${CHOST} in *-cygwin* | mingw* | *-mingw*) echo ".exe" ;; esac } get_install_abis () { local x order=""; if [[ -z ${MULTILIB_ABIS} ]]; then echo "default"; return 0; fi; if [[ ${EMULTILIB_PKG} == "true" ]]; then for x in ${MULTILIB_ABIS}; do if [[ ${x} != "${DEFAULT_ABI}" ]]; then has ${x} ${ABI_DENY} || order="${order} ${x}"; fi; done; has ${DEFAULT_ABI} ${ABI_DENY} || order="${order} ${DEFAULT_ABI}"; if [[ -n ${ABI_ALLOW} ]]; then local ordera=""; for x in ${order}; do if has ${x} ${ABI_ALLOW}; then ordera="${ordera} ${x}"; fi; done; order=${ordera}; fi; else order=${DEFAULT_ABI}; fi; if [[ -z ${order} ]]; then die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package."; fi; echo ${order}; return 0 } get_last_version_component_index () { echo $(($(get_version_component_count "${1:-${PV}}" ) - 1)) } get_libdir () { local CONF_LIBDIR; if [ -n "${CONF_LIBDIR_OVERRIDE}" ]; then echo ${CONF_LIBDIR_OVERRIDE}; else get_abi_LIBDIR; fi } get_libname () { local libname; local ver=$1; case ${CHOST} in *-cygwin*) libname="dll.a" ;; mingw* | *-mingw*) libname="dll" ;; *-darwin*) libname="dylib" ;; *-mint*) libname="irrelevant" ;; hppa*-hpux*) libname="sl" ;; *) libname="so" ;; esac; if [[ -z $* ]]; then echo ".${libname}"; else for ver in "$@"; do case ${CHOST} in *-cygwin*) echo ".${ver}.${libname}" ;; *-darwin*) echo ".${ver}.${libname}" ;; *-mint*) echo ".${libname}" ;; *) echo ".${libname}.${ver}" ;; esac; done; fi } get_major_version () { local c=($(get_all_version_components "${1:-${PV}}")); echo ${c[0]} } get_modname () { local modname; local ver=$1; case ${CHOST} in *-darwin*) modname="bundle" ;; *) modname="so" ;; esac; echo ".${modname}" } get_version_component_count () { local a=($(get_version_components "${1:-${PV}}")); echo ${#a[@]} } get_version_component_range () { eshopts_push -s extglob; local c v="${2:-${PV}}" range="${1}" range_start range_end; local -i i=-1 j=0; c=($(get_all_version_components "${v}")); range_start=${range%-*}; range_start=${range_start:-1}; range_end=${range#*-}; range_end=${range_end:-${#c[@]}}; while ((j < range_start)); do i+=1; ((i > ${#c[@]})) && eshopts_pop && return; [[ -n "${c[i]//[-._]}" ]] && j+=1; done; while ((j <= range_end)); do echo -n ${c[i]}; ((i > ${#c[@]})) && eshopts_pop && return; [[ -n "${c[i]//[-._]}" ]] && j+=1; i+=1; done; eshopts_pop } get_version_components () { local c=$(get_all_version_components "${1:-${PV}}"); echo ${c//[-._]/ } } has_m32 () { die "${FUNCNAME}: don't use this anymore" } has_m64 () { die "${FUNCNAME}: don't use this anymore" } has_multilib_profile () { [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] } in_iuse () { debug-print-function ${FUNCNAME} "${@}"; [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()"; local flag=${1}; local liuse=(${IUSE}); has "${flag}" "${liuse[@]#[+-]}" } install_cert () { if [ $# -lt 1 ]; then eerror "At least one argument needed"; return 1; fi; case ${EBUILD_PHASE} in unpack | prepare | configure | compile | test | install) die "install_cert cannot be called in ${EBUILD_PHASE}" ;; esac; gen_cnf 1 || return 1; gen_key 1 || return 1; gen_csr 1 || return 1; gen_crt 1 || return 1; echo; gen_cnf || return 1; echo; local count=0; for cert in "$@"; do if [ -z "${cert##*/}" ]; then ewarn "Invalid certification requested, skipping"; continue; fi; for type in key csr crt pem; do if [ -e "${ROOT}${cert}.${type}" ]; then ewarn "${ROOT}${cert}.${type}: exists, skipping"; continue 2; fi; done; gen_key || continue; gen_csr || continue; gen_crt || continue; gen_pem || continue; echo; local base=$(get_base); install -d "${ROOT}${cert%/*}"; install -m0400 "${base}.key" "${ROOT}${cert}.key"; install -m0444 "${base}.csr" "${ROOT}${cert}.csr"; install -m0444 "${base}.crt" "${ROOT}${cert}.crt"; install -m0400 "${base}.pem" "${ROOT}${cert}.pem"; : $(( ++count )); done; if [ ${count} = 0 ]; then eerror "No certificates were generated"; return 1; else if [ ${count} != ${#} ]; then ewarn "Some requested certificates were not generated"; fi; fi } is-flag () { is-flagq "$@" && echo true } is-flagq () { [[ -n $2 ]] && die "Usage: is-flag "; local var; for var in $(all-flag-vars); do _is_flagq ${var} "$1" && return 0; done; return 1 } is-ldflag () { is-ldflagq "$@" && echo true } is-ldflagq () { [[ -n $2 ]] && die "Usage: is-ldflag "; _is_flagq LDFLAGS $1 } is_final_abi () { has_multilib_profile || return 0; set -- $(get_install_abis); local LAST_ABI=$#; [[ ${!LAST_ABI} == ${ABI} ]] } isdigit () { local d; for d in "$@"; do [[ ${d:-bad} == *[!0-9]* ]] && return 1; done; return 0 } make_desktop_entry () { [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable"; local exec=${1}; local name=${2:-${PN}}; local icon=${3:-${PN}}; local type=${4}; local fields=${5}; if [[ -z ${type} ]]; then local catmaj=${CATEGORY%%-*}; local catmin=${CATEGORY##*-}; case ${catmaj} in app) case ${catmin} in accessibility) type="Utility;Accessibility" ;; admin) type=System ;; antivirus) type=System ;; arch) type="Utility;Archiving" ;; backup) type="Utility;Archiving" ;; cdr) type="AudioVideo;DiscBurning" ;; dicts) type="Office;Dictionary" ;; doc) type=Documentation ;; editors) type="Utility;TextEditor" ;; emacs) type="Development;TextEditor" ;; emulation) type="System;Emulator" ;; laptop) type="Settings;HardwareSettings" ;; office) type=Office ;; pda) type="Office;PDA" ;; vim) type="Development;TextEditor" ;; xemacs) type="Development;TextEditor" ;; esac ;; dev) type="Development" ;; games) case ${catmin} in action | fps) type=ActionGame ;; arcade) type=ArcadeGame ;; board) type=BoardGame ;; emulation) type=Emulator ;; kids) type=KidsGame ;; puzzle) type=LogicGame ;; roguelike) type=RolePlaying ;; rpg) type=RolePlaying ;; simulation) type=Simulation ;; sports) type=SportsGame ;; strategy) type=StrategyGame ;; esac; type="Game;${type}" ;; gnome) type="Gnome;GTK" ;; kde) type="KDE;Qt" ;; mail) type="Network;Email" ;; media) case ${catmin} in gfx) type=Graphics ;; *) case ${catmin} in radio) type=Tuner ;; sound) type=Audio ;; tv) type=TV ;; video) type=Video ;; esac; type="AudioVideo;${type}" ;; esac ;; net) case ${catmin} in dialup) type=Dialup ;; ftp) type=FileTransfer ;; im) type=InstantMessaging ;; irc) type=IRCClient ;; mail) type=Email ;; news) type=News ;; nntp) type=News ;; p2p) type=FileTransfer ;; voip) type=Telephony ;; esac; type="Network;${type}" ;; sci) case ${catmin} in astro*) type=Astronomy ;; bio*) type=Biology ;; calc*) type=Calculator ;; chem*) type=Chemistry ;; elec*) type=Electronics ;; geo*) type=Geology ;; math*) type=Math ;; physics) type=Physics ;; visual*) type=DataVisualization ;; esac; type="Education;Science;${type}" ;; sys) type="System" ;; www) case ${catmin} in client) type=WebBrowser ;; esac; type="Network;${type}" ;; *) type= ;; esac; fi; local slot=${SLOT%/*}; if [[ ${slot} == "0" ]]; then local desktop_name="${PN}"; else local desktop_name="${PN}-${slot}"; fi; local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop"; type=${type%;}${type:+;}; if [[ -n ${icon} && ${icon} != /* ]] && [[ ${icon} == *.xpm || ${icon} == *.png || ${icon} == *.svg ]]; then ewarn "As described in the Icon Theme Specification, icon file extensions are not"; ewarn "allowed in .desktop files if the value is not an absolute path."; icon=${icon%.*}; fi; cat <<-EOF > "${desktop}" || [Desktop Entry] Name=${name} Type=Application Comment=${DESCRIPTION} Exec=${exec} TryExec=${exec%% *} Icon=${icon} Categories=${type} EOF die if [[ ${fields:-=} != *=* ]]; then ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}"; fields="Path=${fields}"; fi; if [[ -n ${fields} ]]; then printf '%b\n' "${fields}" >> "${desktop}" || die; fi; ( insopts -m 0644; insinto /usr/share/applications; doins "${desktop}" ) || die "installing desktop file failed" } make_session_desktop () { [[ -z $1 ]] && eerror "$0: You must specify the title" && return 1; [[ -z $2 ]] && eerror "$0: You must specify the command" && return 1; local title=$1; local command=$2; local desktop=${T}/${wm:-${PN}}.desktop; shift 2; cat <<-EOF > "${desktop}" || [Desktop Entry] Name=${title} Comment=This session logs you into ${title} Exec=${command} $* TryExec=${command} Type=XSession EOF die ( insopts -m 0644; insinto /usr/share/xsessions; doins "${desktop}" ) } make_wrapper () { local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5; local tmpwrapper=$(emktemp); has "${EAPI:-0}" 0 1 2 && local EPREFIX=""; ( echo '#!/bin/sh'; if [[ -n ${libdir} ]]; then local var; if [[ ${CHOST} == *-darwin* ]]; then var=DYLD_LIBRARY_PATH; else var=LD_LIBRARY_PATH; fi; cat <<-EOF if [ "\${${var}+set}" = "set" ] ; then export ${var}="\${${var}}:${EPREFIX}${libdir}" else export ${var}="${EPREFIX}${libdir}" fi EOF fi [[ -n ${chdir} ]] && printf 'cd "%s" &&\n' "${EPREFIX}${chdir}"; printf 'exec %s "$@"\n' "${bin/#\//${EPREFIX}/}" ) > "${tmpwrapper}"; chmod go+rx "${tmpwrapper}"; if [[ -n ${path} ]]; then ( exeopts -m 0755; exeinto "${path}"; newexe "${tmpwrapper}" "${wrapper}" ) || die; else newbin "${tmpwrapper}" "${wrapper}" || die; fi } multibuild_copy_sources () { debug-print-function ${FUNCNAME} "${@}"; local _MULTIBUILD_INITIAL_BUILD_DIR=${BUILD_DIR:-${S}}; einfo "Will copy sources from ${_MULTIBUILD_INITIAL_BUILD_DIR}"; local cp_args=(); if cp --reflink=auto --version &> /dev/null; then cp_args+=(--reflink=auto); fi; function _multibuild_create_source_copy () { einfo "${MULTIBUILD_VARIANT}: copying to ${BUILD_DIR}"; cp -p -R "${cp_args[@]}" "${_MULTIBUILD_INITIAL_BUILD_DIR}" "${BUILD_DIR}" || die }; multibuild_foreach_variant _multibuild_create_source_copy } multibuild_for_best_variant () { debug-print-function ${FUNCNAME} "${@}"; [[ -n ${MULTIBUILD_VARIANTS} ]] || die "MULTIBUILD_VARIANTS need to be set"; local MULTIBUILD_VARIANTS=("${MULTIBUILD_VARIANTS[$(( ${#MULTIBUILD_VARIANTS[@]} - 1 ))]}"); multibuild_foreach_variant "${@}" } multibuild_foreach_variant () { debug-print-function ${FUNCNAME} "${@}"; [[ -n ${MULTIBUILD_VARIANTS} ]] || die "MULTIBUILD_VARIANTS need to be set"; local bdir=${BUILD_DIR:-${S}}; [[ ${bdir%%/} == ${WORKDIR%%/} ]] && bdir=${WORKDIR}/build; local prev_id=${MULTIBUILD_ID:+${MULTIBUILD_ID}-}; local ret=0 lret=0 v; debug-print "${FUNCNAME}: initial build_dir = ${bdir}"; for v in "${MULTIBUILD_VARIANTS[@]}"; do local MULTIBUILD_VARIANT=${v}; local MULTIBUILD_ID=${prev_id}${v}; local BUILD_DIR=${bdir%%/}-${v}; function _multibuild_run () { local i=1; while [[ ${!i} == _* ]]; do (( i += 1 )); done; [[ ${i} -le ${#} ]] && einfo "${v}: running ${@:${i}}"; "${@}" }; _multibuild_run "${@}" > >(exec tee -a "${T}/build-${MULTIBUILD_ID}.log") 2>&1; lret=${?}; done; [[ ${ret} -eq 0 && ${lret} -ne 0 ]] && ret=${lret}; return ${ret} } multibuild_merge_root () { local src=${1}; local dest=${2}; local ret; if use userland_BSD; then tar -C "${src}" -f - -c . | tar -x -f - -C "${dest}"; [[ ${PIPESTATUS[*]} == '0 0' ]]; ret=${?}; else local cp_args=(); if cp -a --version &> /dev/null; then cp_args+=(-a); else cp_args+=(-P -R -p); fi; if cp --reflink=auto --version &> /dev/null; then cp_args+=(--reflink=auto); fi; cp "${cp_args[@]}" "${src}"/. "${dest}"/; ret=${?}; fi; if [[ ${ret} -ne 0 ]]; then die "${MULTIBUILD_VARIANT:-(unknown)}: merging image failed."; fi; rm -rf "${src}" } multibuild_parallel_foreach_variant () { debug-print-function ${FUNCNAME} "${@}"; [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI ${EAPI}"; multibuild_foreach_variant "${@}" } multilib-minimal_abi_src_compile () { debug-print-function ${FUNCNAME} "$@"; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_compile > /dev/null; then multilib_src_compile; else default_src_compile; fi; popd > /dev/null || die } multilib-minimal_abi_src_configure () { debug-print-function ${FUNCNAME} "$@"; mkdir -p "${BUILD_DIR}" || die; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_configure > /dev/null; then multilib_src_configure; else default_src_configure; fi; popd > /dev/null || die } multilib-minimal_src_compile () { debug-print-function ${FUNCNAME} "$@"; function multilib-minimal_abi_src_compile () { debug-print-function ${FUNCNAME} "$@"; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_compile > /dev/null; then multilib_src_compile; else default_src_compile; fi; popd > /dev/null || die }; multilib_foreach_abi multilib-minimal_abi_src_compile } multilib-minimal_src_configure () { debug-print-function ${FUNCNAME} "$@"; function multilib-minimal_abi_src_configure () { debug-print-function ${FUNCNAME} "$@"; mkdir -p "${BUILD_DIR}" || die; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_configure > /dev/null; then multilib_src_configure; else default_src_configure; fi; popd > /dev/null || die }; multilib_foreach_abi multilib-minimal_abi_src_configure } multilib-minimal_src_install () { debug-print-function ${FUNCNAME} "$@"; function multilib-minimal_abi_src_install () { debug-print-function ${FUNCNAME} "$@"; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_install > /dev/null; then multilib_src_install; else if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then emake DESTDIR="${D}" install; fi; fi; multilib_prepare_wrappers; multilib_check_headers; popd > /dev/null || die }; multilib_foreach_abi multilib-minimal_abi_src_install; multilib_install_wrappers; if declare -f multilib_src_install_all > /dev/null; then multilib_src_install_all; else einstalldocs; fi } multilib-minimal_src_test () { debug-print-function ${FUNCNAME} "$@"; function multilib-minimal_abi_src_test () { debug-print-function ${FUNCNAME} "$@"; pushd "${BUILD_DIR}" > /dev/null || die; if declare -f multilib_src_test > /dev/null; then multilib_src_test; else default_src_test; fi; popd > /dev/null || die }; multilib_foreach_abi multilib-minimal_abi_src_test } multilib_build_binaries () { debug-print-function ${FUNCNAME} "${@}"; [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI ${EAPI}, use multilib_is_native_abi() instead"; eqawarn "QA warning: multilib_build_binaries is deprecated. Please use the equivalent"; eqawarn "multilib_is_native_abi function instead."; multilib_is_native_abi "${@}" } multilib_check_headers () { function _multilib_header_cksum () { set -o pipefail; if [[ -d ${ED%/}/usr/include ]]; then find "${ED%/}"/usr/include -type f -exec cksum {} + | sort -k2; fi }; local cksum cksum_prev; local cksum_file=${T}/.multilib_header_cksum; cksum=$(_multilib_header_cksum) || die; unset -f _multilib_header_cksum; if [[ -f ${cksum_file} ]]; then cksum_prev=$(< "${cksum_file}") || die; if [[ ${cksum} != ${cksum_prev} ]]; then echo "${cksum}" > "${cksum_file}.new" || die; eerror "Header files have changed between ABIs."; if type -p diff &> /dev/null; then eerror "$(diff -du "${cksum_file}" "${cksum_file}.new")"; else eerror "Old checksums in: ${cksum_file}"; eerror "New checksums in: ${cksum_file}.new"; fi; die "Header checksum mismatch, aborting."; fi; else echo "${cksum}" > "${cksum_file}" || die; fi } multilib_copy_sources () { debug-print-function ${FUNCNAME} "${@}"; local MULTIBUILD_VARIANTS=($(multilib_get_enabled_abi_pairs)); multibuild_copy_sources } multilib_env () { local CTARGET=${1:-${CTARGET}}; local cpu=${CTARGET%%*-}; case ${cpu} in aarch64*) export CFLAGS_arm=${CFLAGS_arm-}; case ${cpu} in aarch64*be) export CHOST_arm="armv8b-${CTARGET#*-}" ;; *) export CHOST_arm="armv8l-${CTARGET#*-}" ;; esac; CHOST_arm=${CHOST_arm/%-gnu/-gnueabi}; export CTARGET_arm=${CHOST_arm}; export LIBDIR_arm="lib"; export CFLAGS_arm64=${CFLAGS_arm64-}; export CHOST_arm64=${CTARGET}; export CTARGET_arm64=${CHOST_arm64}; export LIBDIR_arm64="lib64"; : ${MULTILIB_ABIS=arm64}; : ${DEFAULT_ABI=arm64} ;; x86_64*) export CFLAGS_x86=${CFLAGS_x86--m32}; export CHOST_x86=${CTARGET/x86_64/i686}; CHOST_x86=${CHOST_x86/%-gnux32/-gnu}; export CTARGET_x86=${CHOST_x86}; if [[ ${SYMLINK_LIB} == "yes" ]]; then export LIBDIR_x86="lib32"; else export LIBDIR_x86="lib"; fi; export CFLAGS_amd64=${CFLAGS_amd64--m64}; export CHOST_amd64=${CTARGET/%-gnux32/-gnu}; export CTARGET_amd64=${CHOST_amd64}; export LIBDIR_amd64="lib64"; export CFLAGS_x32=${CFLAGS_x32--mx32}; export CHOST_x32=${CTARGET/%-gnu/-gnux32}; export CTARGET_x32=${CHOST_x32}; export LIBDIR_x32="libx32"; case ${CTARGET} in *-gnux32) : ${MULTILIB_ABIS=x32 amd64 x86}; : ${DEFAULT_ABI=x32} ;; *) : ${MULTILIB_ABIS=amd64 x86}; : ${DEFAULT_ABI=amd64} ;; esac ;; mips64* | mipsisa64*) export CFLAGS_o32=${CFLAGS_o32--mabi=32}; export CHOST_o32=${CTARGET/mips64/mips}; export CHOST_o32=${CHOST_o32/mipsisa64/mipsisa32}; export CTARGET_o32=${CHOST_o32}; export LIBDIR_o32="lib"; export CFLAGS_n32=${CFLAGS_n32--mabi=n32}; export CHOST_n32=${CTARGET}; export CTARGET_n32=${CHOST_n32}; export LIBDIR_n32="lib32"; export CFLAGS_n64=${CFLAGS_n64--mabi=64}; export CHOST_n64=${CTARGET}; export CTARGET_n64=${CHOST_n64}; export LIBDIR_n64="lib64"; : ${MULTILIB_ABIS=n64 n32 o32}; : ${DEFAULT_ABI=n32} ;; powerpc64*) export CFLAGS_ppc=${CFLAGS_ppc--m32}; export CHOST_ppc=${CTARGET/powerpc64/powerpc}; export CTARGET_ppc=${CHOST_ppc}; export LIBDIR_ppc="lib"; export CFLAGS_ppc64=${CFLAGS_ppc64--m64}; export CHOST_ppc64=${CTARGET}; export CTARGET_ppc64=${CHOST_ppc64}; export LIBDIR_ppc64="lib64"; : ${MULTILIB_ABIS=ppc64 ppc}; : ${DEFAULT_ABI=ppc64} ;; s390x*) export CFLAGS_s390=${CFLAGS_s390--m31}; export CHOST_s390=${CTARGET/s390x/s390}; export CTARGET_s390=${CHOST_s390}; export LIBDIR_s390="lib"; export CFLAGS_s390x=${CFLAGS_s390x--m64}; export CHOST_s390x=${CTARGET}; export CTARGET_s390x=${CHOST_s390x}; export LIBDIR_s390x="lib64"; : ${MULTILIB_ABIS=s390x s390}; : ${DEFAULT_ABI=s390x} ;; sparc64*) export CFLAGS_sparc32=${CFLAGS_sparc32--m32}; export CHOST_sparc32=${CTARGET/sparc64/sparc}; export CTARGET_sparc32=${CHOST_sparc32}; export LIBDIR_sparc32="lib"; export CFLAGS_sparc64=${CFLAGS_sparc64--m64}; export CHOST_sparc64=${CTARGET}; export CTARGET_sparc64=${CHOST_sparc64}; export LIBDIR_sparc64="lib64"; : ${MULTILIB_ABIS=sparc64 sparc32}; : ${DEFAULT_ABI=sparc64} ;; *) : ${MULTILIB_ABIS=default}; : ${DEFAULT_ABI=default} ;; esac; export MULTILIB_ABIS DEFAULT_ABI } multilib_for_best_abi () { debug-print-function ${FUNCNAME} "${@}"; [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI ${EAPI}, use multilib_is_native_abi() instead"; eqawarn "QA warning: multilib_for_best_abi() function is deprecated and should"; eqawarn "not be used. The multilib_is_native_abi() check may be used instead."; local MULTIBUILD_VARIANTS=($(multilib_get_enabled_abi_pairs)); multibuild_for_best_variant _multilib_multibuild_wrapper "${@}" } multilib_foreach_abi () { debug-print-function ${FUNCNAME} "${@}"; local MULTIBUILD_VARIANTS=($(multilib_get_enabled_abi_pairs)); multibuild_foreach_variant _multilib_multibuild_wrapper "${@}" } multilib_get_enabled_abi_pairs () { debug-print-function ${FUNCNAME} "${@}"; local abis=($(get_all_abis)); local abi i found; for abi in "${abis[@]}"; do for i in "${_MULTILIB_FLAGS[@]}"; do local m_abis=${i#*:} m_abi; local m_flag=${i%:*}; for m_abi in ${m_abis//,/ }; do if [[ ${m_abi} == ${abi} ]] && { [[ ! -n "${MULTILIB_COMPAT[@]}" ]] || has "${m_flag}" "${MULTILIB_COMPAT[@]}" } && use "${m_flag}"; then echo "${m_flag}.${abi}"; found=1; break 2; fi; done; done; done; if [[ ! -n ${found} ]]; then local abi=${ABI:-${DEFAULT_ABI}}; debug-print "${FUNCNAME}: no ABIs enabled, fallback to ${abi}"; debug-print "${FUNCNAME}: ABI=${ABI}, DEFAULT_ABI=${DEFAULT_ABI}"; echo ".${abi}"; fi } multilib_get_enabled_abis () { debug-print-function ${FUNCNAME} "${@}"; local pairs=($(multilib_get_enabled_abi_pairs)); echo "${pairs[@]#*.}" } multilib_install_wrappers () { debug-print-function ${FUNCNAME} "${@}"; [[ ${#} -le 1 ]] || die "${FUNCNAME}: too many arguments"; [[ ${COMPLETE_MULTILIB} == yes ]] && return; local root=${1:-${ED}}; if [[ -d ${ED%/}/tmp/multilib-include ]]; then multibuild_merge_root "${ED%/}"/tmp/multilib-include "${root}"/usr/include; rmdir "${ED%/}"/tmp &> /dev/null; fi } multilib_is_native_abi () { debug-print-function ${FUNCNAME} "${@}"; [[ ${#} -eq 0 ]] || die "${FUNCNAME}: too many arguments"; [[ ${COMPLETE_MULTILIB} == yes || ${ABI} == ${DEFAULT_ABI} ]] } multilib_native_enable () { if multilib_is_native_abi; then echo "--enable-${1}${2+=${2}}"; else echo "--disable-${1}"; fi } multilib_native_use_enable () { if multilib_is_native_abi; then use_enable "${@}"; else echo "--disable-${2:-${1}}"; fi } multilib_native_use_with () { if multilib_is_native_abi; then use_with "${@}"; else echo "--without-${2:-${1}}"; fi } multilib_native_usex () { if multilib_is_native_abi; then usex "${@}"; else echo "${3-no}${5}"; fi } multilib_native_with () { if multilib_is_native_abi; then echo "--with-${1}${2+=${2}}"; else echo "--without-${1}"; fi } multilib_parallel_foreach_abi () { debug-print-function ${FUNCNAME} "${@}"; local MULTIBUILD_VARIANTS=($(multilib_get_enabled_abi_pairs)); multibuild_foreach_variant _multilib_multibuild_wrapper "${@}" } multilib_prepare_wrappers () { debug-print-function ${FUNCNAME} "${@}"; [[ ${#} -le 1 ]] || die "${FUNCNAME}: too many arguments"; local root=${1:-${ED%/}}; local f; if [[ ${COMPLETE_MULTILIB} == yes ]]; then for f in "${MULTILIB_CHOST_TOOLS[@]}"; do f=${f#/}; local dir=${f%/*}; local fn=${f##*/}; ln -s "${fn}" "${root}/${dir}/${CHOST}-${fn}" || die; done; return; fi; for f in "${MULTILIB_CHOST_TOOLS[@]}"; do f=${f#/}; local dir=${f%/*}; local fn=${f##*/}; if [[ -L ${root}/${f} ]]; then local target; target=$(readlink "${root}/${f}") || die; local target_dir target_fn=${target##*/}; [[ ${target} == */* ]] && target_dir=${target%/*}; ln -f -s "${target_dir+${target_dir}/}${CHOST}-${target_fn}" "${root}/${f}" || die; fi; mv "${root}/${f}" "${root}/${dir}/${CHOST}-${fn}" || die; if multilib_is_native_abi; then ln -s "${CHOST}-${fn}" "${root}/${f}" || die; fi; done; if [[ -n ${MULTILIB_WRAPPED_HEADERS[@]} ]]; then if [[ -n ${MULTILIB_ABI_FLAG} ]]; then for f in "${MULTILIB_WRAPPED_HEADERS[@]}"; do f=${f#/}; if [[ ${f} != usr/include/* ]]; then die "Wrapping headers outside of /usr/include is not supported at the moment."; fi; f=${f#usr/include}; local dir=${f%/*}; if [[ -f ${root}/usr/include${f} ]]; then local wrapper=${ED%/}/tmp/multilib-include${f}; if [[ ! -f ${ED%/}/tmp/multilib-include${f} ]]; then dodir "/tmp/multilib-include${dir}"; cat > "${wrapper}" <<_EOF_ || /* This file is auto-generated by multilib-build.eclass * as a multilib-friendly wrapper. For the original content, * please see the files that are #included below. */ #if defined(__x86_64__) /* amd64 */ # if defined(__ILP32__) /* x32 ABI */ # error "abi_x86_x32 not supported by the package." # else /* 64-bit ABI */ # error "abi_x86_64 not supported by the package." # endif #elif defined(__i386__) /* plain x86 */ # error "abi_x86_32 not supported by the package." #elif defined(__mips__) # if(_MIPS_SIM == _ABIN32) /* n32 */ # error "abi_mips_n32 not supported by the package." # elif(_MIPS_SIM == _ABI64) /* n64 */ # error "abi_mips_n64 not supported by the package." # elif(_MIPS_SIM == _ABIO32) /* o32 */ # error "abi_mips_o32 not supported by the package." # endif #elif defined(__sparc__) # if defined(__arch64__) # error "abi_sparc_64 not supported by the package." # else # error "abi_sparc_32 not supported by the package." # endif #elif defined(__s390__) # if defined(__s390x__) # error "abi_s390_64 not supported by the package." # else # error "abi_s390_32 not supported by the package." # endif #elif defined(__powerpc__) || defined(__ppc__) # if defined(__powerpc64__) || defined(__ppc64__) # error "abi_ppc_64 not supported by the package." # else # error "abi_ppc_32 not supported by the package." # endif #elif defined(SWIG) /* https://sourceforge.net/p/swig/bugs/799/ */ # error "Native ABI not supported by the package." #else # error "No ABI matched, please report a bug to bugs.gentoo.org" #endif _EOF_ die; fi if ! grep -q "${MULTILIB_ABI_FLAG} " "${wrapper}"; then die "Flag ${MULTILIB_ABI_FLAG} not listed in wrapper template. Please report a bug to https://bugs.gentoo.org."; fi; dodir "/tmp/multilib-include/${CHOST}${dir}"; mv "${root}/usr/include${f}" "${ED%/}/tmp/multilib-include/${CHOST}${dir}/" || die; sed -e "/${MULTILIB_ABI_FLAG} /s&error.*&include <${CHOST}${f}>&" -i "${wrapper}" || die; if multilib_is_native_abi; then sed -e "/Native ABI/s&error.*&include <${CHOST}${f}>&" -i "${wrapper}" || die; fi; fi; done; fi; fi } multilib_src_compile () { tc-export AR CC CXX; emake CC="${CC}" AR="${AR}" SHELL="${EPREFIX}"/bin/bash; local lt="${BUILD_DIR}/libtool"; export echo="echo"; if ! use minimal && multilib_is_native_abi; then if use cxx; then einfo "Building contrib library: ldapc++"; src_configure_cxx; cd "${BUILD_DIR}/contrib/ldapc++" || die; emake CC="${CC}" CXX="${CXX}"; fi; if use smbkrb5passwd; then einfo "Building contrib-module: smbk5pwd"; cd "${S}/contrib/slapd-modules/smbk5pwd" || die; MY_DEFS="-DDO_SHADOW"; if use samba; then MY_DEFS="${MY_DEFS} -DDO_SAMBA"; MY_KRB5_INC=""; fi; if use kerberos; then MY_DEFS="${MY_DEFS} -DDO_KRB5"; MY_KRB5_INC="$(krb5-config --cflags)"; fi; emake DEFS="${MY_DEFS}" KRB5_INC="${MY_KRB5_INC}" LDAP_BUILD="${BUILD_DIR}" CC="${CC}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap"; fi; if use overlays; then einfo "Building contrib-module: samba4"; cd "${S}/contrib/slapd-modules/samba4" || die; emake LDAP_BUILD="${BUILD_DIR}" CC="${CC}" libexecdir="/usr/$(get_libdir)/openldap"; fi; if use kerberos; then if use kinit; then build_contrib_module "kinit" "kinit.c" "kinit"; fi; cd "${S}/contrib/slapd-modules/passwd" || die; einfo "Compiling contrib-module: pw-kerberos"; "${lt}" --mode=compile --tag=CC "${CC}" -I"${BUILD_DIR}"/include -I../../../include ${CFLAGS} $(krb5-config --cflags) -DHAVE_KRB5 -o kerberos.lo -c kerberos.c || die "compiling pw-kerberos failed"; einfo "Linking contrib-module: pw-kerberos"; "${lt}" --mode=link --tag=CC "${CC}" -module ${CFLAGS} ${LDFLAGS} -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap -o pw-kerberos.la kerberos.lo || die "linking pw-kerberos failed"; fi; if use pbkdf2; then cd "${S}/contrib/slapd-modules/passwd/pbkdf2" || die; einfo "Compiling contrib-module: pw-pbkdf2"; "${lt}" --mode=compile --tag=CC "${CC}" -I"${BUILD_DIR}"/include -I../../../../include ${CFLAGS} -o pbkdf2.lo -c pw-pbkdf2.c || die "compiling pw-pbkdf2 failed"; einfo "Linking contrib-module: pw-pbkdf2"; "${lt}" --mode=link --tag=CC "${CC}" -module ${CFLAGS} ${LDFLAGS} -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap -o pw-pbkdf2.la pbkdf2.lo || die "linking pw-pbkdf2 failed"; fi; if use sha2; then cd "${S}/contrib/slapd-modules/passwd/sha2" || die; einfo "Compiling contrib-module: pw-sha2"; "${lt}" --mode=compile --tag=CC "${CC}" -I"${BUILD_DIR}"/include -I../../../../include ${CFLAGS} -o sha2.lo -c sha2.c || die "compiling pw-sha2 failed"; "${lt}" --mode=compile --tag=CC "${CC}" -I"${BUILD_DIR}"/include -I../../../../include ${CFLAGS} -o slapd-sha2.lo -c slapd-sha2.c || die "compiling pw-sha2 failed"; einfo "Linking contrib-module: pw-sha2"; "${lt}" --mode=link --tag=CC "${CC}" -module ${CFLAGS} ${LDFLAGS} -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap -o pw-sha2.la sha2.lo slapd-sha2.lo || die "linking pw-sha2 failed"; fi; cd "${S}/contrib/slapd-modules/passwd" || die; einfo "Compiling contrib-module: pw-netscape"; "${lt}" --mode=compile --tag=CC "${CC}" -I"${BUILD_DIR}"/include -I../../../include ${CFLAGS} -o netscape.lo -c netscape.c || die "compiling pw-netscape failed"; einfo "Linking contrib-module: pw-netscape"; "${lt}" --mode=link --tag=CC "${CC}" -module ${CFLAGS} ${LDFLAGS} -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap -o pw-netscape.la netscape.lo || die "linking pw-netscape failed"; build_contrib_module "addpartial" "addpartial-overlay.c" "addpartial-overlay"; build_contrib_module "allop" "allop.c" "overlay-allop"; build_contrib_module "allowed" "allowed.c" "allowed"; build_contrib_module "autogroup" "autogroup.c" "autogroup"; build_contrib_module "cloak" "cloak.c" "cloak"; build_contrib_module "denyop" "denyop.c" "denyop-overlay"; build_contrib_module "dsaschema" "dsaschema.c" "dsaschema-plugin"; build_contrib_module "dupent" "dupent.c" "dupent"; build_contrib_module "lastbind" "lastbind.c" "lastbind"; build_contrib_module "lastmod" "lastmod.c" "lastmod"; build_contrib_module "noopsrch" "noopsrch.c" "noopsrch"; build_contrib_module "nops" "nops.c" "nops-overlay"; build_contrib_module "trace" "trace.c" "trace"; cd "${S}/contrib/slapi-plugins/addrdnvalues" || die; einfo "Building contrib-module: addrdnvalues plugin"; "${CC}" -shared -I"${BUILD_DIR}"/include -I../../../include ${CFLAGS} -fPIC ${LDFLAGS} -o libaddrdnvalues-plugin.so addrdnvalues.c || die "Building libaddrdnvalues-plugin.so failed"; fi } multilib_src_configure () { local myconf=(); use debug && myconf+=($(use_enable debug)); export ac_cv_header_unicode_utypes_h=no ol_cv_lib_icu=no; if ! use minimal && multilib_is_native_abi; then local CPPFLAGS=${CPPFLAGS}; myconf+=(--enable-ldap); myconf+=(--enable-slapd); if use berkdb; then einfo "Using Berkeley DB for local backend"; myconf+=(--enable-bdb --enable-hdb); DBINCLUDE=$(db_includedir $BDB_SLOTS); einfo "Using $DBINCLUDE for sys-libs/db version"; append-cppflags -I${DBINCLUDE}; else myconf+=(--disable-bdb --disable-hdb); fi; for backend in dnssrv ldap mdb meta monitor null passwd relay shell sock; do myconf+=(--enable-${backend}=mod); done; myconf+=($(use_enable perl perl mod)); myconf+=($(use_enable odbc sql mod)); if use odbc; then local odbc_lib="unixodbc"; if use iodbc; then odbc_lib="iodbc"; append-cppflags -I"${EPREFIX}"/usr/include/iodbc; fi; myconf+=(--with-odbc=${odbc_lib}); fi; myconf+=($(use_enable crypt) $(use_enable slp) $(use_enable samba lmpasswd) $(use_enable syslog)); if use experimental; then myconf+=(--enable-dynacl --enable-aci=mod); fi; for option in aci cleartext modules rewrite rlookups slapi; do myconf+=(--enable-${option}); done; myconf+=(--enable-syncprov=yes); use overlays && myconf+=(--enable-overlays=mod); else myconf+=(--disable-backends --disable-slapd --disable-bdb --disable-hdb --disable-mdb --disable-overlays --disable-syslog); fi; myconf+=($(use_enable ipv6) $(multilib_native_use_with sasl cyrus-sasl) $(multilib_native_use_enable sasl spasswd) $(use_enable tcpd wrappers)); tc-is-cross-compiler && myconf+=(--with-yielding-select=yes); local ssl_lib="no"; if use ssl || ( ! use minimal && use samba ); then ssl_lib="openssl"; use gnutls && ssl_lib="gnutls"; fi; myconf+=(--with-tls=${ssl_lib}); for basicflag in dynamic local proctitle shared; do myconf+=(--enable-${basicflag}); done; tc-export AR CC CXX; ECONF_SOURCE=${S} STRIP=/bin/true econf --libexecdir="${EPREFIX}"/usr/$(get_libdir)/openldap $(use_enable static-libs static) "${myconf[@]}"; emake depend } multilib_src_install () { local lt="${BUILD_DIR}/libtool"; emake DESTDIR="${D}" SHELL="${EPREFIX}"/bin/bash install; if ! use minimal && multilib_is_native_abi; then keepdir /usr/$(get_libdir)/openldap/openldap/; keepdir /var/lib/openldap-data; use prefix || fowners ldap:ldap /var/lib/openldap-data; fperms 0700 /var/lib/openldap-data; echo "OLDPF='${PF}'" > "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"; echo "# do NOT delete this. it is used" >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"; echo "# to track versions for upgrading." >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}"; rm "${ED}"etc/openldap/slapd.conf; insinto /etc/openldap; newins "${FILESDIR}"/${PN}-2.4.40-slapd-conf slapd.conf; configfile="${ED}"etc/openldap/slapd.conf; ebegin "populate config with built backends"; for x in "${ED}"usr/$(get_libdir)/openldap/openldap/back_*.so; do einfo "Adding $(basename ${x})"; sed -e "/###INSERTDYNAMICMODULESHERE###$/a# moduleload\t$(basename ${x})" -i "${configfile}"; done; sed -e "s:###INSERTDYNAMICMODULESHERE###$:# modulepath\t${EPREFIX}/usr/$(get_libdir)/openldap/openldap:" -i "${configfile}"; use prefix || fowners root:ldap /etc/openldap/slapd.conf; fperms 0640 /etc/openldap/slapd.conf; cp "${configfile}" "${configfile}".default; eend; einfo "Install init scripts"; sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd-initd-2.4.40-r2 > "${T}"/slapd || die; doinitd "${T}"/slapd; newconfd "${FILESDIR}"/slapd-confd-2.4.28-r1 slapd; einfo "Install systemd service"; sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd.service > "${T}"/slapd.service || die; systemd_dounit "${T}"/slapd.service; systemd_install_serviced "${FILESDIR}"/slapd.service.conf; systemd_newtmpfilesd "${FILESDIR}"/slapd.tmpfilesd slapd.conf; use slp || sed -i -e '/before/{s/avahi-daemon//g}' "${ED}"etc/init.d/slapd; if use cxx; then einfo "Install the ldapc++ library"; cd "${BUILD_DIR}/contrib/ldapc++" || die; emake DESTDIR="${D}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install; cd "${S}"/contrib/ldapc++ || die; newdoc README ldapc++-README; fi; if use smbkrb5passwd; then einfo "Install the smbk5pwd module"; cd "${S}/contrib/slapd-modules/smbk5pwd" || die; emake DESTDIR="${D}" LDAP_BUILD="${BUILD_DIR}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install; newdoc README smbk5pwd-README; fi; if use overlays; then einfo "Install the samba4 module"; cd "${S}/contrib/slapd-modules/samba4" || die; emake DESTDIR="${D}" LDAP_BUILD="${BUILD_DIR}" libexecdir="/usr/$(get_libdir)/openldap" install; newdoc README samba4-README; fi; einfo "Installing contrib modules"; cd "${S}/contrib/slapd-modules" || die; for l in */*.la */*/*.la; do [[ -e ${l} ]] || continue; "${lt}" --mode=install cp ${l} "${ED}"usr/$(get_libdir)/openldap/openldap || die "installing ${l} failed"; done; dodoc "${FILESDIR}"/DB_CONFIG.fast.example; docinto contrib; doman */*.5; newdoc addpartial/README addpartial-README; newdoc allop/README allop-README; newdoc allowed/README allowed-README; newdoc autogroup/README autogroup-README; newdoc dsaschema/README dsaschema-README; newdoc passwd/README passwd-README; cd "${S}/contrib/slapi-plugins" || die; insinto /usr/$(get_libdir)/openldap/openldap; doins */*.so; docinto contrib; newdoc addrdnvalues/README addrdnvalues-README; insinto /etc/openldap/schema; newins "${DISTDIR}"/${BIS_P} ${BIS_PN}; docinto back-sock; dodoc "${S}"/servers/slapd/back-sock/searchexample*; docinto back-shell; dodoc "${S}"/servers/slapd/back-shell/searchexample*; docinto back-perl; dodoc "${S}"/servers/slapd/back-perl/SampleLDAP.pm; dosbin "${S}"/contrib/slapd-tools/statslog; newdoc "${S}"/contrib/slapd-tools/README README.statslog; fi; use static-libs || prune_libtool_files --all } multilib_src_install_all () { dodoc ANNOUNCEMENT CHANGES COPYRIGHT README; docinto rfc; dodoc doc/rfc/*.txt } multilib_src_test () { if multilib_is_native_abi; then cd tests || die; emake tests || die "make tests failed"; fi } multilib_toolchain_setup () { local v vv; export ABI=$1; if [[ ${_DEFAULT_ABI_SAVED} == "true" ]]; then for v in CHOST CBUILD AS CC CXX F77 FC LD PKG_CONFIG_{LIBDIR,PATH}; do vv="_abi_saved_${v}"; [[ ${!vv+set} == "set" ]] && export ${v}="${!vv}" || unset ${v}; unset ${vv}; done; unset _DEFAULT_ABI_SAVED; fi; if [[ ${ABI} != ${DEFAULT_ABI} ]]; then for v in CHOST CBUILD AS CC CXX F77 FC LD PKG_CONFIG_{LIBDIR,PATH}; do vv="_abi_saved_${v}"; [[ ${!v+set} == "set" ]] && export ${vv}="${!v}" || unset ${vv}; done; export _DEFAULT_ABI_SAVED="true"; if [[ ${CBUILD} == "${CHOST}" ]]; then export CBUILD=$(get_abi_CHOST $1); fi; export CHOST=$(get_abi_CHOST ${DEFAULT_ABI}); export CC="$(tc-getCC) $(get_abi_CFLAGS)"; export CXX="$(tc-getCXX) $(get_abi_CFLAGS)"; export F77="$(tc-getF77) $(get_abi_CFLAGS)"; export FC="$(tc-getFC) $(get_abi_CFLAGS)"; export LD="$(tc-getLD) $(get_abi_LDFLAGS)"; export CHOST=$(get_abi_CHOST $1); export PKG_CONFIG_LIBDIR=${EPREFIX}/usr/$(get_libdir)/pkgconfig; export PKG_CONFIG_PATH=${EPREFIX}/usr/share/pkgconfig; fi } newicon () { _iconins ${FUNCNAME} "$@" } newmenu () { ( insopts -m 0644; insinto /usr/share/applications; newins "$@" ) } no-as-needed () { case $($(tc-getLD) -v 2>&1 ${l}"; eerror " 4. mv /var/lib/openldap-data/ /var/lib/openldap-data-backup/"; eerror " 5. emerge --update \=net-nds/${PF}"; eerror " 6. etc-update, and ensure that you apply the changes"; eerror " 7. slapadd -l ${l}"; eerror " 8. chown ldap:ldap /var/lib/openldap-data/*"; eerror " 9. /etc/init.d/slapd start"; eerror "10. check that your data is intact."; eerror "11. set up the new replication system."; eerror; if [ "${FORCE_UPGRADE}" != "1" ]; then die "You need to upgrade your database first"; else eerror "You have the magical FORCE_UPGRADE=1 in place."; eerror "Don't say you weren't warned about data loss."; fi } optfeature () { debug-print-function ${FUNCNAME} "$@"; local i j msg; local desc=$1; local flag=0; shift; for i in "$@"; do for j in ${i}; do if has_version "${j}"; then flag=1; else flag=0; break; fi; done; if [[ ${flag} -eq 1 ]]; then break; fi; done; if [[ ${flag} -eq 0 ]]; then for i in "$@"; do msg=" "; for j in ${i}; do msg+=" ${j} and"; done; msg="${msg:0: -4} for ${desc}"; elog "${msg}"; done; fi } path_exists () { eerror "path_exists has been removed. Please see the following post"; eerror "for a replacement snippet:"; eerror "https://blogs.gentoo.org/mgorny/2018/08/09/inlining-path_exists/"; die "path_exists is banned" } pkg_nofetch () { default } pkg_postinst () { if ! use minimal; then if use ssl; then install_cert /etc/openldap/ssl/ldap; use prefix || chown ldap:ldap "${EROOT}"etc/openldap/ssl/ldap.*; ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]"; ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]"; ewarn "add 'TLS_REQCERT allow' if you want to use them."; fi; if use prefix; then eerror "slapd might NOT be usable on Prefix systems as it requires root privileges"; eerror "to start up, and requires that certain files directories be owned by"; eerror "ldap:ldap. As Prefix does not support changing ownership of files and"; eerror "directories, you will have to manually fix this yourself."; fi; use prefix || chown ldap:ldap "${EROOT}"var/run/openldap; chmod 0755 "${EROOT}"var/run/openldap; use prefix || chown root:ldap "${EROOT}"etc/openldap/slapd.conf{,.default}; chmod 0640 "${EROOT}"etc/openldap/slapd.conf{,.default}; use prefix || chown ldap:ldap "${EROOT}"var/lib/openldap-data; fi; if has_version 'net-nds/openldap[-minimal]' && ((${OPENLDAP_PRINT_MESSAGES})); then elog "Getting started using OpenLDAP? There is some documentation available:"; elog "Gentoo Guide to OpenLDAP Authentication"; elog "(https://wiki.gentoo.org/wiki/Centralized_authentication_using_OpenLDAP)"; elog "---"; elog "An example file for tuning BDB backends with openldap is"; elog "DB_CONFIG.fast.example in /usr/share/doc/${PF}/"; fi; preserve_old_lib_notify /usr/$(get_libdir)/{liblber,libldap,libldap_r}-2.3$(get_libname 0) } pkg_preinst () { preserve_old_lib /usr/$(get_libdir)/{liblber,libldap_r,liblber}-2.3$(get_libname 0); ! has_version net-nds/openldap || has_version 'net-nds/openldap[minimal]'; OPENLDAP_PRINT_MESSAGES=$((! $?)) } pkg_setup () { if ! use sasl && use cxx; then die "To build the ldapc++ library you must emerge openldap with sasl support"; fi; if use minimal && ! has_version "net-nds/openldap"; then einfo "No datadir scan needed, openldap not installed"; else if use minimal && has_version 'net-nds/openldap[minimal]'; then einfo "Skipping scan for previous datadirs as requested by minimal useflag"; else openldap_find_versiontags; fi; fi; if ! use minimal; then enewgroup ldap 439; enewuser ldap 439 -1 /usr/$(get_libdir)/openldap ldap; fi } preserve_old_lib () { if [[ ${EBUILD_PHASE} != "preinst" ]]; then eerror "preserve_old_lib() must be called from pkg_preinst() only"; die "Invalid preserve_old_lib() usage"; fi; [[ -z $1 ]] && die "Usage: preserve_old_lib [more libraries to preserve]"; has preserve-libs ${FEATURES} && return 0; has "${EAPI:-0}" 0 1 2 && local ED=${D} EROOT=${ROOT}; local lib dir; for lib in "$@"; do [[ -e ${EROOT}/${lib} ]] || continue; dir=${lib%/*}; dodir ${dir} || die "dodir ${dir} failed"; cp "${EROOT}"/${lib} "${ED}"/${lib} || die "cp ${lib} failed"; touch "${ED}"/${lib}; done } preserve_old_lib_notify () { if [[ ${EBUILD_PHASE} != "postinst" ]]; then eerror "preserve_old_lib_notify() must be called from pkg_postinst() only"; die "Invalid preserve_old_lib_notify() usage"; fi; has preserve-libs ${FEATURES} && return 0; has "${EAPI:-0}" 0 1 2 && local EROOT=${ROOT}; local lib notice=0; for lib in "$@"; do [[ -e ${EROOT}/${lib} ]] || continue; if [[ ${notice} -eq 0 ]]; then notice=1; ewarn "Old versions of installed libraries were detected on your system."; ewarn "In order to avoid breaking packages that depend on these old libs,"; ewarn "the libraries are not being removed. You need to run revdep-rebuild"; ewarn "in order to remove these old dependencies. If you do not have this"; ewarn "helper program, simply emerge the 'gentoolkit' package."; ewarn; fi; ewarn " # revdep-rebuild --library '${lib}' && rm '${lib}'"; done } prune_libtool_files () { debug-print-function ${FUNCNAME} "$@"; local removing_all removing_modules opt; for opt in "$@"; do case "${opt}" in --all) removing_all=1; removing_modules=1 ;; --modules) removing_modules=1 ;; *) die "Invalid argument to ${FUNCNAME}(): ${opt}" ;; esac; done; local f; local queue=(); while IFS= read -r -d '' f; do local archivefile=${f/%.la/.a}; if ! sed -n -e '/^# Generated by .*libtool/q0;4q1' "${f}"; then continue; fi; [[ ${f} != ${archivefile} ]] || die 'regex sanity check failed'; local reason= pkgconfig_scanned=; local snotlink=$(sed -n -e 's:^shouldnotlink=::p' "${f}"); if [[ ${snotlink} == yes ]]; then if [[ -f ${archivefile} ]]; then einfo "Removing unnecessary ${archivefile#${D%/}} (static plugin)"; queue+=("${archivefile}"); fi; if [[ -n ${removing_modules} ]]; then reason='module'; fi; else if [[ -n ${removing_all} ]]; then reason='requested'; else if [[ ! -f ${archivefile} ]]; then reason='no static archive'; else if [[ ! -n $(sed -nre "s/^(dependency_libs|inherited_linker_flags)='(.*)'$/\2/p" "${f}") ]]; then reason='no libs & flags'; else if [[ ! -n ${pkgconfig_scanned} ]]; then local pc_libs=(); if [[ ! -n ${removing_all} ]]; then local pc; local tf=${T}/prune-lt-files.pc; local pkgconf=$(tc-getPKG_CONFIG); while IFS= read -r -d '' pc; do local arg libs; if ${pkgconf} --exists "${pc}" &> /dev/null; then sed -e '/^Requires:/d' "${pc}" > "${tf}"; libs=$(${pkgconf} --libs "${tf}"); else libs=$(sed -ne 's/^Libs://p' "${pc}"); fi; for arg in ${libs}; do if [[ ${arg} == -l* ]]; then if [[ ${arg} == '*$*' ]]; then eerror "${FUNCNAME}: variable substitution likely failed in ${pc}"; eerror "(arg: ${arg})"; eerror "Most likely, you need to add virtual/pkgconfig to DEPEND."; die "${FUNCNAME}: unsubstituted variable found in .pc"; fi; pc_libs+=(lib${arg#-l}.la); fi; done; done < <(find "${D}" -type f -name '*.pc' -print0); rm -f "${tf}"; fi; pkgconfig_scanned=1; fi; has "${f##*/}" "${pc_libs[@]}" && reason='covered by .pc'; fi; fi; fi; fi; if [[ -n ${reason} ]]; then einfo "Removing unnecessary ${f#${D%/}} (${reason})"; queue+=("${f}"); fi; done < <(find "${D}" -xtype f -name '*.la' -print0); if [[ -n ${queue[@]} ]]; then rm -f "${queue[@]}"; fi } raw-ldflags () { local x input="$@"; [[ -z ${input} ]] && input=${LDFLAGS}; set --; for x in ${input}; do case ${x} in -Wl,*) x=${x#-Wl,}; set -- "$@" ${x//,/ } ;; *) ;; esac; done; echo "$@" } replace-cpu-flags () { local newcpu="$#"; newcpu="${!newcpu}"; while [ $# -gt 1 ]; do replace-flags "-march=${1}" "-march=${newcpu}"; replace-flags "-mcpu=${1}" "-mcpu=${newcpu}"; replace-flags "-mtune=${1}" "-mtune=${newcpu}"; shift; done; return 0 } replace-flags () { [[ $# != 2 ]] && die "Usage: replace-flags "; local f var new; for var in $(all-flag-vars); do new=(); for f in ${!var}; do [[ ${f} == ${1} ]] && f=${2}; new+=("${f}"); done; export ${var}="${new[*]}"; done; return 0 } replace-sparc64-flags () { local SPARC64_CPUS="ultrasparc3 ultrasparc v9"; if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then for x in ${SPARC64_CPUS}; do CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}"; done; else for x in ${SPARC64_CPUS}; do CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"; done; fi; if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then for x in ${SPARC64_CPUS}; do CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}"; done; else for x in ${SPARC64_CPUS}; do CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"; done; fi; export CFLAGS CXXFLAGS } replace_all_version_separators () { local c=($(get_all_version_components "${2:-${PV}}")); c=${c[@]//[-._]/$1}; echo ${c// } } replace_version_separator () { eshopts_push -s extglob; local w c v="${3:-${PV}}"; declare -i i found=0; w=${1:-1}; c=($(get_all_version_components ${v})); if [[ ${w} != *[[:digit:]]* ]]; then for ((i = 0; i < ${#c[@]}; i++)) do if [[ ${c[i]} == ${w} ]]; then c[i]=${2}; break; fi; done; else for ((i = 0; i < ${#c[@]}; i++)) do if [[ -n "${c[i]//[^-._]}" ]]; then found+=1; if ((found == w)); then c[i]=${2}; break; fi; fi; done; fi; c=${c[*]}; echo ${c// }; eshopts_pop } run_in_build_dir () { debug-print-function ${FUNCNAME} "${@}"; local ret; [[ ${#} -ne 0 ]] || die "${FUNCNAME}: no command specified."; [[ -n ${BUILD_DIR} ]] || die "${FUNCNAME}: BUILD_DIR not set."; mkdir -p "${BUILD_DIR}" || die; pushd "${BUILD_DIR}" > /dev/null || die; "${@}"; ret=${?}; popd > /dev/null || die; return ${ret} } setup-allowed-flags () { ALLOWED_FLAGS=(-pipe -O '-O[12sg]' -mcpu -march -mtune '-fstack-protector*' '-fsanitize*' '-fstack-check*' -fno-stack-check -fbounds-check -fbounds-checking -fno-strict-overflow -fno-PIE -fno-pie -nopie -no-pie -fno-unit-at-a-time -g '-g[0-9]' -ggdb '-ggdb[0-9]' '-gdwarf-*' gstabs -gstabs+ -gz -fno-ident -fpermissive -frecord-gcc-switches '-fdiagnostics*' '-fplugin*' '-W*' -w '-[DUILR]*' '-Wl,*' '-fuse-ld'); ALLOWED_FLAGS+=('-fno-stack-protector*' '-fabi-version=*' -fno-strict-aliasing -fno-bounds-check -fno-bounds-checking -fstrict-overflow -fno-omit-frame-pointer '-fno-builtin*'); ALLOWED_FLAGS+=(-mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias -msecure-plt '-m*-toc' -mfloat-abi -mfix-r10000 -mno-fix-r10000 -mthumb -marm -mno-fma4 -mno-movbe -mno-xop -mno-lwp -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm -mno-avx2 -mno-bmi2 -mno-fma -mno-lzcnt -mno-fxsr -mno-hle -mno-rtm -mno-xsave -mno-xsaveopt -mno-avx512cd -mno-avx512er -mno-avx512f -mno-avx512pf -mno-sha) } src_compile () { multilib-minimal_src_compile "$@" } src_configure () { use elibc_FreeBSD && append-cppflags -DMDB_DSYNC=O_SYNC -DMDB_FDATASYNC=fsync; append-cppflags -DLDAP_CONNECTIONLESS; multilib-minimal_src_configure } src_configure_cxx () { local myconf_ldapcpp=(--with-ldap-includes="${S}"/include); mkdir -p "${BUILD_DIR}"/contrib/ldapc++ || die; cd "${BUILD_DIR}/contrib/ldapc++" || die; local LDFLAGS=${LDFLAGS} CPPFLAGS=${CPPFLAGS}; append-ldflags -L"${BUILD_DIR}"/libraries/liblber/.libs -L"${BUILD_DIR}"/libraries/libldap/.libs; append-cppflags -I"${BUILD_DIR}"/include; ECONF_SOURCE=${S}/contrib/ldapc++ econf "${myconf_ldapcpp[@]}" CC="${CC}" CXX="${CXX}" } src_install () { multilib-minimal_src_install "$@" } src_prepare () { sed -i -e 's,\(#define LDAPI_SOCK\).*,\1 "'"${EPREFIX}"'/var/run/openldap/slapd.sock",' "${S}"/include/ldap_defaults.h; epatch "${FILESDIR}"/${PN}-2.4.17-gcc44.patch; epatch "${FILESDIR}"/${PN}-2.2.14-perlthreadsfix.patch "${FILESDIR}"/${PN}-2.4.15-ppolicy.patch; epatch "${FILESDIR}"/${PN}-2.4.35-contrib-smbk5pwd.patch; epatch "${FILESDIR}"/${PN}-2.4.35-contrib-samba4.patch; epatch "${FILESDIR}"/${PN}-2.4.11-libldap_r.patch; epatch "${FILESDIR}"/${PN}-2.4.45-fix-lmpasswd-gnutls-symbols.patch; epatch "${FILESDIR}"/${PN}-2.4.28-gnutls-gcrypt.patch; epatch "${FILESDIR}"/${PN}-2.4.6-evolution-ntlm.patch; epatch "${FILESDIR}"/${PN}-2.4.28-fix-dash.patch; epatch "${FILESDIR}"/${PN}-2.4.31-gcc47.patch; epatch "${FILESDIR}"/${PN}-2.4.45-libressl.patch; epatch "${FILESDIR}"/${PN}-2.4.42-mdb-unbundle.patch; rm -rf "${S}"/libraries/liblmdb; epatch_user; cd "${S}"/build || die; einfo "Making sure upstream build strip does not do stripping too early"; sed -i.orig -e '/^STRIP/s,-s,,g' top.mk || die "Failed to block stripping"; sed -i -e 's|/bin/sh|/bin/bash|g' "${S}"/tests/scripts/* || die "sed failed"; cd "${S}" || die; AT_NOEAUTOMAKE=yes eautoreconf } src_test () { multilib-minimal_src_test "$@" } src_unpack () { default } strip-flags () { local x y var; local ALLOWED_FLAGS; setup-allowed-flags; set -f; for var in $(all-flag-vars); do local new=(); for x in ${!var}; do local flag=${x%%=*}; for y in "${ALLOWED_FLAGS[@]}"; do if [[ -z ${flag%%${y}} ]]; then new+=("${x}"); break; fi; done; done; if _is_flagq ${var} "-O*" && ! _is_flagq new "-O*"; then new+=(-O2); fi; if [[ ${!var} != "${new[*]}" ]]; then einfo "strip-flags: ${var}: changed '${!var}' to '${new[*]}'"; fi; export ${var}="${new[*]}"; done; set +f; return 0 } strip-linguas () { local ls newls nols; if [[ $1 == "-i" ]] || [[ $1 == "-u" ]]; then local op=$1; shift; ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift; local d f; for d in "$@"; do if [[ ${op} == "-u" ]]; then newls=${ls}; else newls=""; fi; for f in $(find "$d" -name '*.po' -exec basename {} .po ';'); do if [[ ${op} == "-i" ]]; then has ${f} ${ls} && newls="${newls} ${f}"; else has ${f} ${ls} || newls="${newls} ${f}"; fi; done; ls=${newls}; done; else ls="$@"; fi; nols=""; newls=""; for f in ${LINGUAS}; do if has ${f} ${ls}; then newls="${newls} ${f}"; else nols="${nols} ${f}"; fi; done; [[ -n ${nols} ]] && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols}; export LINGUAS=${newls:1} } strip-unsupported-flags () { export CFLAGS=$(test-flags-CC ${CFLAGS}); export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}); export FFLAGS=$(test-flags-F77 ${FFLAGS}); export FCFLAGS=$(test-flags-FC ${FCFLAGS}); export LDFLAGS=$(test-flags-CC ${LDFLAGS}) } systemd_dotmpfilesd () { debug-print-function ${FUNCNAME} "${@}"; for f in "$@"; do [[ ${f} == *.conf ]] || die 'tmpfiles.d files need to have .conf suffix.'; done; ( insopts -m 0644; insinto /usr/lib/tmpfiles.d/; doins "${@}" ) } systemd_dounit () { debug-print-function ${FUNCNAME} "${@}"; ( insopts -m 0644; insinto "$(_systemd_get_systemunitdir)"; doins "${@}" ) } systemd_douserunit () { debug-print-function ${FUNCNAME} "${@}"; ( insopts -m 0644; insinto "$(_systemd_get_userunitdir)"; doins "${@}" ) } systemd_enable_ntpunit () { debug-print-function ${FUNCNAME} "${@}"; if [[ ${#} -lt 2 ]]; then die "Usage: systemd_enable_ntpunit ..."; fi; local ntpunit_name=${1}; local services=("${@:2}"); if [[ ${ntpunit_name} != [0-9][0-9]-* ]]; then die "ntpunit.d file must be named NN-name where NN are digits."; else if [[ ${ntpunit_name} == *.list ]]; then die "The .list suffix is appended implicitly to ntpunit.d name."; fi; fi; local unitdir=$(systemd_get_systemunitdir); local s; for s in "${services[@]}"; do if [[ ! -f "${D}${unitdir}/${s}" ]]; then die "ntp-units.d provider ${s} not installed (yet?) in \${D}."; fi; echo "${s}" >> "${T}"/${ntpunit_name}.list || die; done; ( insopts -m 0644; insinto "$(_systemd_get_utildir)"/ntp-units.d; doins "${T}"/${ntpunit_name}.list ); local ret=${?}; rm "${T}"/${ntpunit_name}.list || die; return ${ret} } systemd_enable_service () { debug-print-function ${FUNCNAME} "${@}"; [[ ${#} -eq 2 ]] || die "Synopsis: systemd_enable_service target service"; local target=${1}; local service=${2}; local ud=$(_systemd_get_systemunitdir); local destname=${service##*/}; dodir "${ud}"/"${target}".wants && dosym ../"${service}" "${ud}"/"${target}".wants/"${destname}" } systemd_get_systemgeneratordir () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; debug-print-function ${FUNCNAME} "${@}"; echo "${EPREFIX}$(_systemd_get_systemgeneratordir)" } systemd_get_systemunitdir () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; debug-print-function ${FUNCNAME} "${@}"; echo "${EPREFIX}$(_systemd_get_systemunitdir)" } systemd_get_unitdir () { [[ ${EAPI} == [012345] ]] || die "${FUNCNAME} is banned in EAPI 6, use systemd_get_systemunitdir instead"; systemd_get_systemunitdir } systemd_get_userunitdir () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; debug-print-function ${FUNCNAME} "${@}"; echo "${EPREFIX}$(_systemd_get_userunitdir)" } systemd_get_utildir () { has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=; debug-print-function ${FUNCNAME} "${@}"; echo "${EPREFIX}$(_systemd_get_utildir)" } systemd_install_serviced () { debug-print-function ${FUNCNAME} "${@}"; local src=${1}; local service=${2}; [[ -n ${src} ]] || die "No file specified"; if [[ ! -n ${service} ]]; then [[ ${src} == *.conf ]] || die "Source file needs .conf suffix"; service=${src##*/}; service=${service%.conf}; fi; [[ ${service} == *.d ]] && die "Service must not have .d suffix"; ( insopts -m 0644; insinto /etc/systemd/system/"${service}".d; newins "${src}" 00gentoo.conf ) } systemd_is_booted () { debug-print-function ${FUNCNAME} "${@}"; [[ -d /run/systemd/system ]]; local ret=${?}; debug-print "${FUNCNAME}: [[ -d /run/systemd/system ]] -> ${ret}"; return ${ret} } systemd_newtmpfilesd () { debug-print-function ${FUNCNAME} "${@}"; [[ ${2} == *.conf ]] || die 'tmpfiles.d files need to have .conf suffix.'; ( insopts -m 0644; insinto /usr/lib/tmpfiles.d/; newins "${@}" ) } systemd_newunit () { debug-print-function ${FUNCNAME} "${@}"; ( insopts -m 0644; insinto "$(_systemd_get_systemunitdir)"; newins "${@}" ) } systemd_newuserunit () { debug-print-function ${FUNCNAME} "${@}"; ( insopts -m 0644; insinto "$(_systemd_get_userunitdir)"; newins "${@}" ) } systemd_reenable () { type systemctl &> /dev/null || return 0; local x; for x in "$@"; do if systemctl --quiet --root="${ROOT:-/}" is-enabled "${x}"; then systemctl --root="${ROOT:-/}" reenable "${x}"; fi; done } systemd_tmpfiles_create () { debug-print-function ${FUNCNAME} "${@}"; [[ ${EBUILD_PHASE} == postinst ]] || die "${FUNCNAME}: Only valid in pkg_postinst"; [[ ${#} -gt 0 ]] || die "${FUNCNAME}: Must specify at least one filename"; [[ ${ROOT} == / ]] || return 0; type systemd-tmpfiles &> /dev/null || return 0; systemd-tmpfiles --create "${@}" } systemd_update_catalog () { debug-print-function ${FUNCNAME} "${@}"; [[ ${EBUILD_PHASE} == post* ]] || die "${FUNCNAME} disallowed during ${EBUILD_PHASE_FUNC:-${EBUILD_PHASE}}"; local journalctl=${EPREFIX}/usr/bin/journalctl; if [[ -x ${journalctl} ]]; then ebegin "Updating systemd journal catalogs"; journalctl --update-catalog; eend $?; else debug-print "${FUNCNAME}: journalctl not found."; fi } systemd_with_unitdir () { [[ ${EAPI:-0} != [012345] ]] && die "${FUNCNAME} is banned in EAPI ${EAPI}, use --with-${1:-systemdsystemunitdir}=\"\$(systemd_get_systemunitdir)\" instead"; debug-print-function ${FUNCNAME} "${@}"; local optname=${1:-systemdsystemunitdir}; echo --with-${optname}="$(systemd_get_systemunitdir)" } systemd_with_utildir () { [[ ${EAPI:-0} != [012345] ]] && die "${FUNCNAME} is banned in EAPI ${EAPI}, use --with-systemdutildir=\"\$(systemd_get_utildir)\" instead"; debug-print-function ${FUNCNAME} "${@}"; echo --with-systemdutildir="$(systemd_get_utildir)" } tc-arch () { tc-ninja_magic_to_arch portage "$@" } tc-arch-kernel () { tc-ninja_magic_to_arch kern "$@" } tc-check-openmp () { if ! tc-has-openmp; then eerror "Your current compiler does not support OpenMP!"; if tc-is-gcc; then eerror "Enable OpenMP support by building sys-devel/gcc with USE=\"openmp\"."; else if tc-is-clang; then eerror "OpenMP support in sys-devel/clang is provided by sys-libs/libomp."; fi; fi; die "Active compiler does not have required support for OpenMP"; fi } tc-cpp-is-true () { local CONDITION=${1}; shift; local RESULT=$($(tc-getTARGET_CPP) "${@}" -P - <<-EOF 2>/dev/null #if ${CONDITION} true #endif EOF ); [[ ${RESULT} == true ]] } tc-detect-is-softfloat () { [[ $(tc-getTARGET_CPP) == "gcc -E" ]] && return 1; case ${CTARGET:-${CHOST}} in *-newlib | *-elf | *-eabi) return 1 ;; arm*) if tc-cpp-is-true "defined(__ARM_PCS_VFP)"; then echo "no"; else if tc-cpp-is-true "defined(__SOFTFP__)"; then echo "yes"; else echo "softfp"; fi; fi; return 0 ;; *) return 1 ;; esac } tc-enables-pie () { tc-cpp-is-true "defined(__PIE__)" ${CPPFLAGS} ${CFLAGS} } tc-enables-ssp () { tc-cpp-is-true "defined(__SSP__) || defined(__SSP_STRONG__) || defined(__SSP_ALL__)" ${CPPFLAGS} ${CFLAGS} } tc-enables-ssp-all () { tc-cpp-is-true "defined(__SSP_ALL__)" ${CPPFLAGS} ${CFLAGS} } tc-enables-ssp-strong () { tc-cpp-is-true "defined(__SSP_STRONG__) || defined(__SSP_ALL__)" ${CPPFLAGS} ${CFLAGS} } tc-endian () { local host=$1; [[ -z ${host} ]] && host=${CTARGET:-${CHOST}}; host=${host%%-*}; case ${host} in aarch64*be) echo big ;; aarch64) echo little ;; alpha*) echo little ;; arm*b*) echo big ;; arm*) echo little ;; cris*) echo little ;; hppa*) echo big ;; i?86*) echo little ;; ia64*) echo little ;; m68*) echo big ;; mips*l*) echo little ;; mips*) echo big ;; powerpc*le) echo little ;; powerpc*) echo big ;; s390*) echo big ;; sh*b*) echo big ;; sh*) echo little ;; sparc*) echo big ;; x86_64*) echo little ;; *) echo wtf ;; esac } tc-env_build () { tc-export_build_env; CFLAGS=${BUILD_CFLAGS} CXXFLAGS=${BUILD_CXXFLAGS} CPPFLAGS=${BUILD_CPPFLAGS} LDFLAGS=${BUILD_LDFLAGS} AR=$(tc-getBUILD_AR) AS=$(tc-getBUILD_AS) CC=$(tc-getBUILD_CC) CPP=$(tc-getBUILD_CPP) CXX=$(tc-getBUILD_CXX) LD=$(tc-getBUILD_LD) NM=$(tc-getBUILD_NM) PKG_CONFIG=$(tc-getBUILD_PKG_CONFIG) RANLIB=$(tc-getBUILD_RANLIB) "$@" } tc-export () { local var; for var in "$@"; do [[ $(type -t "tc-get${var}") != "function" ]] && die "tc-export: invalid export variable '${var}'"; "tc-get${var}" > /dev/null; done } tc-export_build_env () { tc-export "$@"; if tc-is-cross-compiler; then : ${BUILD_CFLAGS:=-O1 -pipe}; : ${BUILD_CXXFLAGS:=-O1 -pipe}; : ${BUILD_CPPFLAGS:= }; : ${BUILD_LDFLAGS:= }; else : ${BUILD_CFLAGS:=${CFLAGS}}; : ${BUILD_CXXFLAGS:=${CXXFLAGS}}; : ${BUILD_CPPFLAGS:=${CPPFLAGS}}; : ${BUILD_LDFLAGS:=${LDFLAGS}}; fi; export BUILD_{C,CXX,CPP,LD}FLAGS; local v; for v in BUILD_{C,CXX,CPP,LD}FLAGS; do export ${v#BUILD_}_FOR_BUILD="${!v}"; done } tc-get-compiler-type () { local code=' #if defined(__PATHSCALE__) HAVE_PATHCC #elif defined(__clang__) HAVE_CLANG #elif defined(__GNUC__) HAVE_GCC #endif '; local res=$($(tc-getCPP "$@") -E -P - <<<"${code}"); case ${res} in *HAVE_PATHCC*) echo pathcc ;; *HAVE_CLANG*) echo clang ;; *HAVE_GCC*) echo gcc ;; *) echo unknown ;; esac } tc-getAR () { tc-getPROG AR ar "$@" } tc-getAS () { tc-getPROG AS as "$@" } tc-getBUILD_AR () { tc-getBUILD_PROG AR ar "$@" } tc-getBUILD_AS () { tc-getBUILD_PROG AS as "$@" } tc-getBUILD_CC () { tc-getBUILD_PROG CC gcc "$@" } tc-getBUILD_CPP () { tc-getBUILD_PROG CPP "$(tc-getBUILD_CC) -E" "$@" } tc-getBUILD_CXX () { tc-getBUILD_PROG CXX g++ "$@" } tc-getBUILD_LD () { tc-getBUILD_PROG LD ld "$@" } tc-getBUILD_NM () { tc-getBUILD_PROG NM nm "$@" } tc-getBUILD_OBJCOPY () { tc-getBUILD_PROG OBJCOPY objcopy "$@" } tc-getBUILD_PKG_CONFIG () { tc-getBUILD_PROG PKG_CONFIG pkg-config "$@" } tc-getBUILD_PROG () { local vars="BUILD_$1 $1_FOR_BUILD HOST$1"; tc-is-cross-compiler || vars+=" $1"; _tc-getPROG CBUILD "${vars}" "${@:2}" } tc-getBUILD_RANLIB () { tc-getBUILD_PROG RANLIB ranlib "$@" } tc-getBUILD_STRIP () { tc-getBUILD_PROG STRIP strip "$@" } tc-getCC () { tc-getPROG CC gcc "$@" } tc-getCPP () { tc-getPROG CPP "${CC:-gcc} -E" "$@" } tc-getCXX () { tc-getPROG CXX g++ "$@" } tc-getDLLWRAP () { tc-getPROG DLLWRAP dllwrap "$@" } tc-getF77 () { tc-getPROG F77 gfortran "$@" } tc-getFC () { tc-getPROG FC gfortran "$@" } tc-getGCJ () { tc-getPROG GCJ gcj "$@" } tc-getGO () { tc-getPROG GO gccgo "$@" } tc-getLD () { tc-getPROG LD ld "$@" } tc-getNM () { tc-getPROG NM nm "$@" } tc-getOBJCOPY () { tc-getPROG OBJCOPY objcopy "$@" } tc-getOBJDUMP () { tc-getPROG OBJDUMP objdump "$@" } tc-getPKG_CONFIG () { tc-getPROG PKG_CONFIG pkg-config "$@" } tc-getPROG () { _tc-getPROG CHOST "$@" } tc-getRANLIB () { tc-getPROG RANLIB ranlib "$@" } tc-getRC () { tc-getPROG RC windres "$@" } tc-getSTRIP () { tc-getPROG STRIP strip "$@" } tc-getTARGET_CPP () { if [[ -n ${CTARGET} ]]; then _tc-getPROG CTARGET TARGET_CPP "gcc -E" "$@"; else tc-getCPP "$@"; fi } tc-has-openmp () { local base="${T}/test-tc-openmp"; cat <<-EOF > "${base}.c" #include int main() { int nthreads, tid, ret = 0; #pragma omp parallel private(nthreads, tid) { tid = omp_get_thread_num(); nthreads = omp_get_num_threads(); ret += tid + nthreads; } return ret; } EOF $(tc-getCC "$@") -fopenmp "${base}.c" -o "${base}" &> /dev/null; local ret=$?; rm -f "${base}"*; return ${ret} } tc-has-tls () { local base="${T}/test-tc-tls"; cat <<-EOF > "${base}.c" int foo(int *i) { static __thread int j = 0; return *i ? j : *i; } EOF local flags; case $1 in -s) flags="-S" ;; -c) flags="-c" ;; -l) ;; -*) die "Usage: tc-has-tls [-c|-l] [toolchain prefix]" ;; esac; : ${flags:=-fPIC -shared -Wl,-z,defs}; [[ $1 == -* ]] && shift; $(tc-getCC "$@") ${flags} "${base}.c" -o "${base}" &> /dev/null; local ret=$?; rm -f "${base}"*; return ${ret} } tc-is-clang () { [[ $(tc-get-compiler-type) == clang ]] } tc-is-cross-compiler () { [[ ${CBUILD:-${CHOST}} != ${CHOST} ]] } tc-is-gcc () { [[ $(tc-get-compiler-type) == gcc ]] } tc-is-softfloat () { tc-detect-is-softfloat || tc-tuple-is-softfloat } tc-is-static-only () { local host=${CTARGET:-${CHOST}}; [[ ${host} == *-mint* ]] } tc-ld-disable-gold () { if ! tc-ld-is-gold "$@"; then return; fi; ewarn "Forcing usage of the BFD linker instead of GOLD"; local ld=$(tc-getLD "$@"); local bfd_ld="${ld%% *}.bfd"; local path_ld=$(which "${bfd_ld}" 2>/dev/null); [[ -e ${path_ld} ]] && export LD=${bfd_ld}; local fallback="true"; if tc-is-gcc; then local major=$(gcc-major-version "$@"); local minor=$(gcc-minor-version "$@"); if [[ ${major} -gt 4 ]] || [[ ${major} -eq 4 && ${minor} -ge 8 ]]; then export LDFLAGS="${LDFLAGS} -fuse-ld=bfd"; fallback="false"; fi; else if tc-is-clang; then local major=$(clang-major-version "$@"); local minor=$(clang-minor-version "$@"); if [[ ${major} -gt 3 ]] || [[ ${major} -eq 3 && ${minor} -ge 5 ]]; then export LDFLAGS="${LDFLAGS} -fuse-ld=bfd"; fallback="false"; fi; fi; fi; if [[ ${fallback} == "true" ]]; then if [[ -e ${path_ld} ]]; then local d="${T}/bfd-linker"; mkdir -p "${d}"; ln -sf "${path_ld}" "${d}"/ld; export LDFLAGS="${LDFLAGS} -B${d}"; else die "unable to locate a BFD linker to bypass gold"; fi; fi } tc-ld-is-gold () { local out; out=$($(tc-getLD "$@") --version 2>&1); if [[ ${out} == *"GNU gold"* ]]; then return 0; fi; local base="${T}/test-tc-gold"; cat <<-EOF > "${base}.c" int main() { return 0; } EOF out=$($(tc-getCC "$@") ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -Wl,--version "${base}.c" -o "${base}" 2>&1); rm -f "${base}"*; if [[ ${out} == *"GNU gold"* ]]; then return 0; fi; return 1 } tc-ninja_magic_to_arch () { function ninj () { [[ ${type} == "kern" ]] && echo $1 || echo $2 }; local type=$1; local host=$2; [[ -z ${host} ]] && host=${CTARGET:-${CHOST}}; case ${host} in aarch64*) echo arm64 ;; alpha*) echo alpha ;; arm*) echo arm ;; avr*) ninj avr32 avr ;; bfin*) ninj blackfin bfin ;; c6x*) echo c6x ;; cris*) echo cris ;; frv*) echo frv ;; hexagon*) echo hexagon ;; hppa*) ninj parisc hppa ;; i?86*) if [[ ${type} == "kern" && ${host} == *freebsd* ]]; then echo i386; else echo x86; fi ;; ia64*) echo ia64 ;; m68*) echo m68k ;; metag*) echo metag ;; microblaze*) echo microblaze ;; mips*) echo mips ;; nios2*) echo nios2 ;; nios*) echo nios ;; or1k | or32*) echo openrisc ;; powerpc*) if [[ ${type} == "kern" ]]; then echo powerpc; else if [[ ${host} == powerpc64* ]]; then echo ppc64; else echo ppc; fi; fi ;; riscv*) echo riscv ;; s390*) echo s390 ;; score*) echo score ;; sh64*) ninj sh64 sh ;; sh*) echo sh ;; sparc64*) ninj sparc64 sparc ;; sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] && ninj sparc64 sparc || echo sparc ;; tile*) echo tile ;; vax*) echo vax ;; x86_64*freebsd*) echo amd64 ;; x86_64*) if [[ ${type} == "kern" ]]; then echo x86; else echo amd64; fi ;; xtensa*) echo xtensa ;; *) echo unknown ;; esac } tc-stack-grows-down () { case ${ARCH} in hppa | metag) return 1 ;; esac; return 0 } tc-tuple-is-softfloat () { local CTARGET=${CTARGET:-${CHOST}}; case ${CTARGET//_/-} in bfin* | h8300*) echo "only" ;; *-softfloat-*) echo "yes" ;; *-softfp-*) echo "softfp" ;; arm*-hardfloat-* | arm*eabihf) echo "no" ;; *-newlib | *-elf | *-eabi) echo "no" ;; arm*) echo "yes" ;; *) echo "no" ;; esac } test-flag-CC () { test-flag-PROG "CC" c "$@" } test-flag-CXX () { test-flag-PROG "CXX" c++ "$@" } test-flag-F77 () { test-flag-PROG "F77" f77 "$@" } test-flag-FC () { test-flag-PROG "FC" f95 "$@" } test-flag-PROG () { local comp=$1; local lang=$2; shift 2; [[ -z ${comp} || -z $1 ]] && return 1; local cmdline=($(tc-get${comp}) -Werror -c -o /dev/null); if "${cmdline[@]}" -x${lang} - < /dev/null &> /dev/null; then cmdline+=("$@" -x${lang} -); else cmdline+=("$@" -c -o /dev/null /dev/null); fi; if ! "${cmdline[@]}" < /dev/null &> /dev/null; then cmdline+=(-Qunused-arguments); "${cmdline[@]}" < /dev/null &> /dev/null; fi } test-flags () { test-flags-CC "$@" } test-flags-CC () { test-flags-PROG "CC" "$@" } test-flags-CXX () { test-flags-PROG "CXX" "$@" } test-flags-F77 () { test-flags-PROG "F77" "$@" } test-flags-FC () { test-flags-PROG "FC" "$@" } test-flags-PROG () { local comp=$1; local flags=(); local x; shift; [[ -z ${comp} ]] && return 1; while (( $# )); do case "$1" in --param) if test-flag-${comp} "$1" "$2"; then flags+=("$1" "$2"); fi; shift 2 ;; *) if test-flag-${comp} "$1"; then flags+=("$1"); fi; shift 1 ;; esac; done; echo "${flags[*]}"; [[ ${#flags[@]} -gt 0 ]] } test_version_info () { if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then return 0; else return 1; fi } uclibctoolize () { die "Use elibtoolize" } use_if_iuse () { in_iuse $1 || return 1; use $1 } ver_cut () { local range=${1}; local v=${2:-${PV}}; local start end; local -a comp; _ver_split "${v}"; local max=$((${#comp[@]}/2)); _ver_parse_range "${range}" "${max}"; if [[ ${start} -gt 0 ]]; then start=$(( start*2 - 1 )); fi; printf "%s" "${comp[@]:start:end*2-start}" ' ' } ver_rs () { local v; (( ${#} & 1 )) && v=${@: -1} || v=${PV}; local start end i; local -a comp; _ver_split "${v}"; local max=$((${#comp[@]}/2 - 1)); while [[ ${#} -ge 2 ]]; do _ver_parse_range "${1}" "${max}"; for ((i = start*2; i <= end*2; i+=2 )) do [[ ${i} -eq 0 && -z ${comp[i]} ]] && continue; comp[i]=${2}; done; shift 2; done; local IFS=; echo "${comp[*]}" } ver_test () { local va op vb; if [[ $# -eq 3 ]]; then va=${1}; shift; else va=${PVR}; fi; [[ $# -eq 2 ]] || die "${FUNCNAME}: bad number of arguments"; op=${1}; vb=${2}; case ${op} in -eq | -ne | -lt | -le | -gt | -ge) ;; *) die "${FUNCNAME}: invalid operator: ${op}" ;; esac; _ver_compare "${va}" "${vb}"; test $? "${op}" 2 } version_compare () { eshopts_push -s extglob; local ver_a=${1} ver_b=${2} parts_a parts_b; local cur_tok_a cur_tok_b num_part_a num_part_b; local -i cur_idx_a=0 cur_idx_b=0 prev_idx_a prev_idx_b; parts_a=($(get_all_version_components "${ver_a}" )); parts_b=($(get_all_version_components "${ver_b}" )); local -i inf_loop=0; while true; do inf_loop+=1; ((inf_loop > 20)) && die "versionator compare bug [numbers, ${ver_a}, ${ver_b}]"; prev_idx_a=cur_idx_a; prev_idx_b=cur_idx_b; cur_tok_a=${parts_a[cur_idx_a]}; cur_tok_b=${parts_b[cur_idx_b]}; if [[ -n ${cur_tok_a} ]] && [[ -z ${cur_tok_a//[[:digit:]]} ]]; then cur_idx_a+=1; [[ ${parts_a[cur_idx_a]} == . ]] && cur_idx_a+=1; else cur_tok_a=; fi; if [[ -n ${cur_tok_b} ]] && [[ -z ${cur_tok_b//[[:digit:]]} ]]; then cur_idx_b+=1; [[ ${parts_b[cur_idx_b]} == . ]] && cur_idx_b+=1; else cur_tok_b=; fi; [[ -z ${cur_tok_a} && -z ${cur_tok_b} ]] && break; [[ -z ${cur_tok_a} ]] && eshopts_pop && return 1; [[ -z ${cur_tok_b} ]] && eshopts_pop && return 3; if (( prev_idx_a != 0 && prev_idx_b != 0 )) && [[ ${cur_tok_a} == 0* || ${cur_tok_b} == 0* ]]; then cur_tok_a=${cur_tok_a%%+(0)}; cur_tok_b=${cur_tok_b%%+(0)}; [[ ${cur_tok_a} < ${cur_tok_b} ]] && eshopts_pop && return 1; [[ ${cur_tok_a} > ${cur_tok_b} ]] && eshopts_pop && return 3; else cur_tok_a=${cur_tok_a##+(0)}; cur_tok_b=${cur_tok_b##+(0)}; : ${cur_tok_a:=0}; : ${cur_tok_b:=0}; ((cur_tok_a < cur_tok_b)) && eshopts_pop && return 1; ((cur_tok_a > cur_tok_b)) && eshopts_pop && return 3; fi; done; local letter_a=; letter_a=${parts_a[cur_idx_a]}; if [[ ${#letter_a} -eq 1 && -z ${letter_a/[a-z]} ]]; then cur_idx_a+=1; else letter_a=@; fi; local letter_b=; letter_b=${parts_b[cur_idx_b]}; if [[ ${#letter_b} -eq 1 && -z ${letter_b/[a-z]} ]]; then cur_idx_b+=1; else letter_b=@; fi; [[ ${letter_a} < ${letter_b} ]] && eshopts_pop && return 1; [[ ${letter_a} > ${letter_b} ]] && eshopts_pop && return 3; inf_loop=0; while true; do inf_loop+=1; ((inf_loop > 20)) && die "versionator compare bug [numbers, ${ver_a}, ${ver_b}]"; [[ ${parts_a[cur_idx_a]} == _ ]] && ((cur_idx_a++)); [[ ${parts_b[cur_idx_b]} == _ ]] && ((cur_idx_b++)); cur_tok_a=${parts_a[cur_idx_a]}; cur_tok_b=${parts_b[cur_idx_b]}; num_part_a=0; num_part_b=0; if has ${cur_tok_a%%+([0-9])} "alpha" "beta" "pre" "rc" "p"; then cur_idx_a+=1; num_part_a=${cur_tok_a##+([a-z])}; num_part_a=${num_part_a##+(0)}; : ${num_part_a:=0}; cur_tok_a=${cur_tok_a%%+([0-9])}; else cur_tok_a=; fi; if has ${cur_tok_b%%+([0-9])} alpha beta pre rc p; then cur_idx_b+=1; num_part_b=${cur_tok_b##+([a-z])}; num_part_b=${num_part_b##+(0)}; : ${num_part_b:=0}; cur_tok_b=${cur_tok_b%%+([0-9])}; else cur_tok_b=; fi; if [[ ${cur_tok_a} != ${cur_tok_b} ]]; then local suffix; for suffix in alpha beta pre rc "" p; do [[ ${cur_tok_a} == ${suffix} ]] && eshopts_pop && return 1; [[ ${cur_tok_b} == ${suffix} ]] && eshopts_pop && return 3; done; else if [[ -z ${cur_tok_a} && -z ${cur_tok_b} ]]; then break; else ((num_part_a < num_part_b)) && eshopts_pop && return 1; ((num_part_a > num_part_b)) && eshopts_pop && return 3; fi; fi; done; [[ ${parts_a[cur_idx_a]} == - ]] && ((cur_idx_a++)); [[ ${parts_b[cur_idx_b]} == - ]] && ((cur_idx_b++)); if [[ -n ${parts_a[cur_idx_a]/r+([0-9])} || -n ${parts_b[cur_idx_b]/r+([0-9])} ]]; then die "versionator compare bug [revisions, ${ver_a}, ${ver_b}]"; fi; num_part_a=${parts_a[cur_idx_a]#r}; num_part_a=${num_part_a##+(0)}; : ${num_part_a:=0}; num_part_b=${parts_b[cur_idx_b]#r}; num_part_b=${num_part_b##+(0)}; : ${num_part_b:=0}; ((num_part_a < num_part_b)) && eshopts_pop && return 1; ((num_part_a > num_part_b)) && eshopts_pop && return 3; eshopts_pop; return 2 } version_format_string () { local fstr=$1; shift; set -- $(get_version_components "$@"); eval echo "${fstr}" } version_is_at_least () { local want_s="$1" have_s="${2:-${PVR}}" r; version_compare "${want_s}" "${have_s}"; r=$?; case $r in 1 | 2) return 0 ;; 3) return 1 ;; *) die "versionator compare bug [atleast, ${want_s}, ${have_s}, ${r}]" ;; esac } version_sort () { eshopts_push -s extglob; local items=; local -i left=0; items=("$@"); while ((left < ${#items[@]})); do local -i lowest_idx=left; local -i idx=lowest_idx+1; while ((idx < ${#items[@]})); do version_compare "${items[lowest_idx]}" "${items[idx]}"; [[ $? -eq 3 ]] && lowest_idx=idx; idx+=1; done; local tmp=${items[lowest_idx]}; items[lowest_idx]=${items[left]}; items[left]=${tmp}; left+=1; done; echo ${items[@]}; eshopts_pop }