diff options
-rwxr-xr-x | bin/ebuild.sh | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index dac55a211..d1ff26aba 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1159,6 +1159,7 @@ inherit() { local location local olocation local PECLASS + local export_funcs_var x local B_IUSE local B_DEPEND @@ -1171,6 +1172,8 @@ inherit() { # PECLASS is used to restore the ECLASS var after recursion. PECLASS="$ECLASS" export ECLASS="$1" + export_funcs_var=__export_functions_${ECLASS/-/___} + unset $export_funcs_var if [ "${EBUILD_PHASE}" != "depend" ] && \ [[ ${EBUILD_PHASE} != *rm ]] && \ @@ -1245,6 +1248,14 @@ inherit() { #turn on glob expansion set +f + if [[ -n ${!export_funcs_var} ]] ; then + for x in ${!export_funcs_var} ; do + debug-print "EXPORT_FUNCTIONS: $x -> ${ECLASS}_$x" + eval "$x() { ${ECLASS}_$x \"\$@\" ; }" > /dev/null + done + fi + unset $export_funcs_var + hasq $1 $INHERITED || export INHERITED="$INHERITED $1" export ECLASS="$PECLASS" @@ -1261,14 +1272,9 @@ inherit() { # src_unpack() { base_src_unpack; } EXPORT_FUNCTIONS() { if [ -z "$ECLASS" ]; then - echo "EXPORT_FUNCTIONS without a defined ECLASS" >&2 - exit 1 + die "EXPORT_FUNCTIONS without a defined ECLASS" fi - while [ "$1" ]; do - debug-print "EXPORT_FUNCTIONS: ${1} -> ${ECLASS}_${1}" - eval "$1() { ${ECLASS}_$1 \"\$@\" ; }" > /dev/null - shift - done + eval __export_functions_${ECLASS/-/___}+=\" $*\" } # adds all parameters to E_DEPEND and E_RDEPEND, which get added to DEPEND |