-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
After doing some tests we will probably apply this patch from bug 483304.
That means two things:
* DOCS variable/array is now handled by "einstalldocs"
* einstalldocs is _only_ carried out automatically if
multilib_src_install_all is not overwritten (previously it was carried
out unconditionally through multilib-minimal_src_install)
Existing ebuilds have been or will be fixed by us.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJSY96XAAoJEFpvPKfnPDWzLmQH/AsPksBpYgMhxbxxFErV+82H
wMiuTT37Eg2/hE6TqnxR7ThePpCPSNkdmtM0TJo8B7HTTGMB4dUrirpmjA4Tv7td
sYculHcw4XmY6hqSep4F4NEXhv+EuAl0SB+gZ6B8YrHCHOXjD3SE9O6jg0S3ezrk
7l6j3GmweeSCsyxcMRTBxCnWQQobH87/toIc/C35EsKX1Z/RS0qI2wfoOh9mbzPi
cvzCKxAU7RMzU0fhcG4kCW6kvMbqQ/QpFklY31LEueKQFXbPkCfBkA5lPC+ZNJoK
tijZWXqwIn4J5EqyZt4IffMAQHo0HaysCX2u8nG/b995/Tanzw6IOW2k3epBCdI=
=OVbB
-----END PGP SIGNATURE-----
--- multilib-minimal.eclass
+++ multilib-minimal.eclass
@@ -30,7 +30,7 @@
esac
-inherit multilib-build
+inherit eutils multilib-build
EXPORT_FUNCTIONS src_configure src_compile src_test src_install
@@ -104,18 +104,7 @@
if declare -f multilib_src_install_all >/dev/null ; then
multilib_src_install_all
- fi
-
- # this is synced with __eapi4_src_install
- if ! declare -p DOCS &>/dev/null ; then
- local d
- for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \
- THANKS BUGS FAQ CREDITS CHANGELOG ; do
- [[ -s "${d}" ]] && dodoc "${d}"
- done
- elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then
- dodoc "${DOCS[@]}"
else
- dodoc ${DOCS}
+ einstalldocs
fi
}